*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body{
    font-family: "Josefin Sans", sans-serif;
}

header{
    background-color: RGB(22,44,58);
}

li{
    list-style: none;
}

a{
    color:white;
    text-decoration: none;
}

.navbar{
    min-height: 70px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 24px;
}

.nav-menu{
    display:flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
}

.nav-branding{
    font-family: "Yeseva One", serif;
    font-size: 30px;
    color:RGB(219,169,136)
}

.nav-link{
    transition: 0.7s ease;
    padding: 20px 20px;
    color:RGB(217,124,80);
}

.nav-link:hover{
    background-color:#F9D5E5;
    color:#944b7b;
}

.hamburger{
    display:none;
    cursor:pointer;
}

.bar{
    display:block;
    width:25px;
    height:3px;
    margin:5px auto;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    background-color:#F9D5E5;
}

.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    background-image: url("img/hero_slika.jpg");
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-bottom:200px;
}

.hero2 {
    position: relative;
    width: 100%;
    height: 100vh;
    background-image: url("img/hero_slika2.jpg");
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hero3 {
    position: relative;
    width: 100%;
    height: 100vh;
    background-image: url("img/hero_slika3.jpg");
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hero4 {
    position: relative;
    width: 100%;
    height: 100vh;
    background-image: url("img/hero_slika4.jpg");
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hero5 {
    position: relative;
    width: 100%;
    height: 100vh;
    background-image: url("img/hero_slika5.jpg");
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hero-text {
    color: white;
    z-index: 2;
    width:20vw;
}

.hero-text h1 {
    font-size: 60px;
    margin-bottom: 20px;
}

.hero-text p{
    margin-bottom: 50px;
}

.hero-text a {
    font-family: "Open Sans", sans-serif;
    background-color: RGB(22,44,58);
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 18px;
    border-radius: 50px;
    cursor: pointer;
}

.hero-text a:hover {
    background-color: white;
    color: #944b7b;
    transition: 0.7s ease;
}

.container1{
    display:flex;
    justify-content: space-between;
    gap:5px;
    margin-top:150px;
    margin-bottom:70px;
    padding-left:15vw;
    padding-right:15vw;
}

.container2{
    display:flex;
    justify-content: space-between;
    gap:5px;
    margin-top:70px;
    margin-bottom:200px;
    padding-left:15vw;
    padding-right:15vw;
}

.container{
    display:flex;
    text-align: center;
    padding-left:35vw;
    padding-right:35vw;
}

.container h2{
    font-size:50px;
    margin-bottom:10px;
    color: RGB(22,44,58);
}

.container p{
    font-size:20px;
    color:RGB(100,100,100);
}

.card{
    background-color:#ffffff;
    color:#944b7b;
    padding: 20px;
    border-radius:5px;
    flex: 1 1 50%;
    text-align: center;
}

.card h3{
    margin-top:10px;
    color: RGB(22,44,58);
}

.card img{
    width: 100%;
    height:auto;
    border-radius:30px;
}

.card p{
    margin-top: 10px;
    color:RGB(100,100,100);
}

.usluge{
    text-align: center;
    color:#944b7b;
    margin:20px 0px;
    font-size:20px;
}

footer{
    display: flex;
    justify-content: center;
    align-items:center ;
    background-color: RGB(22,44,58);
    color:white;
    margin-top:10px;
    padding: 30px;
    text-align:center;
    height:300px;
}

.ikone img{
    width:30px;
    height:30px;
    padding-right: 5px;
}

.ikone a:hover{
    opacity:0.5;
}

.ikone{
    margin-bottom:10px;
}

.container-gallery{
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 50px 8%;
}

.gallery{
    display:grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    grid-gap:30px;
}

.gallery img{
    width:100%;
}

#forma {
    display: flex;
    justify-content: center;
    align-items: center;
    height:60vh;
}

.form {
    padding: 30px 40px;
    background-color: #ffe5f1;
    border-radius: 10px;
    width: 100%;
    max-width: 600px;
}

.form label{
    color:#944b7b;
}

.form input[type="text"],
.form input[type="email"],
.form textarea[name="poruka"] {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    border: 1px solid #944b7b;
    border-radius: 6px;
    display: block;
}

.form input[type="submit"] {
    width: 100%;
    padding: 12px;
    background-color: #944b7b;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    margin-top: 10px;
    transition: background-color 0.3s ease;
    cursor:pointer;
}

.form input[type="submit"]:hover {
    background-color: #F9D5E5;
    color:#944b7b;
}

.tekst{
    display:flex;
    text-align: center;
    justify-content: center;
    color:gray;
    line-height: 1.8;
    margin-bottom:20px;
}

.potvrda{
    font-size:30px;
    color:#944b7b;
    display: flex;
    justify-content: center;
    margin: 30px 0px;
}

.cjenik {
    width: 60%;
    margin: 50px auto;
    font-size: 18px;
}

.cjenik th,
.cjenik td {
    padding: 15px;
    border: 1px solid #ccc;
    text-align: left;
}

.cjenik th {
    background-color: #F9D5E5;
    color: #944b7b;
}









@media(max-width:768px){
    .hamburger{
        display:block;
    }

    .hamburger.active .bar:nth-child(2){
        opacity:0;
    }

    .hamburger.active .bar:nth-child(1){
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3){
        transform: translateY(-8px) rotate(-45deg);
    }

    .nav-menu{
        position:fixed;
        left:-100%;
        top:70px;
        gap:0;
        flex-direction: column;
        background-color: #944b7b;
        width: 100%;
        text-align: center;
        transition: 0.3s;   
    }

    .nav-link:hover{
        padding: 10px 200px;
    }

    .nav-item{
        margin:16px 0;
    }

    .nav-menu.active{
        left:0;
    }

    .hero-text h1 {
        font-size: 40px;
    }
    
    .hero-text a {
        font-size: 14px;
    }

    .container1{
        flex-direction:column;
        gap:10px;
    }

    .container2{
        flex-direction:column;
        gap:10px;
    }

    .card{
        flex:1 1 100%;
    }

}

