*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Poppins',sans-serif;
    background:#f7f5f2;
    color:#222;
}

header{

    width:100%;
    height:90px;

    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:0 8%;

    position:fixed;
    top:0;

    background:white;

    box-shadow:0 3px 15px rgba(0,0,0,.05);

    z-index:1000;
}

.logo h2{

    font-family:'Cormorant Garamond',serif;

    font-size:42px;

    color:#b58840;
}

.menu-toggle{
    display:none;
    font-size:34px;
    cursor:pointer;
    color:#222;

}

nav ul{

    display:flex;

    list-style:none;

    gap:40px;
}

nav a{

    text-decoration:none;

    color:#333;

    font-weight:500;

    transition:.3s;
}

nav a:hover{

    color:#b58840;
}

.subtitle{

    display:block;

    color:#b58840;

    font-size:15px;

    letter-spacing:5px;

    text-transform:uppercase;

    margin-bottom:20px;

}

.hero{

    display:grid;

    grid-template-columns:48% 52%;

    align-items:center;


    padding: 70px 8% 0px;


    background:linear-gradient(135deg,#ffffff,#f7f3ec);

    overflow:hidden;

}

.hero-text{

    animation:fadeLeft 1s ease;

}


.hero h1{

    font-family:'Cormorant Garamond',serif;

    font-size:140px;

    line-height:.85;

    font-weight:600;

    color:#222;

    margin-bottom:25px;

}

.line{

    width:120px;

    height:2px;

    background:#b58840;

    margin-bottom:35px;

}

.hero p{

    font-size:19px;

    color:#666;

    line-height:34px;

    max-width:520px;

    margin-bottom:45px;

}

.hero-buttons{

    display:flex;

    gap:20px;

}

.btn{

    background:#b58840;

    color:white;

    padding:18px 45px;

    border-radius:50px;

    text-decoration:none;

    transition:.35s;

}

.btn:hover{

    background:#9d7337;

    transform:translateY(-5px);

}

.btn2{

    border:2px solid #b58840;

    color:#b58840;

    padding:18px 45px;

    border-radius:50px;

    text-decoration:none;

    transition:.35s;

}

.btn2:hover{

    background:#b58840;

    color:white;

}

.hero-image{

    display:flex;

    justify-content:flex-end;

    align-items:flex-end;

}

.hero-image img{

    width:1200px;

    max-width:none;

    transform:translateX(90px);

    filter:drop-shadow(0 30px 40px rgba(0,0,0,.18));

    animation:float 5s ease-in-out infinite;

}



@keyframes fadeLeft{

    from{

        opacity:0;

        transform:translateX(-60px);

    }

    to{

        opacity:1;

        transform:translateX(0);

    }

}



.about{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:90px;

    align-items:center;

    padding:140px 8%;

    background:#fff;

}

.about-left span{

    color:#b58840;

    letter-spacing:4px;

    font-size:14px;

}

.about-left h2{

    font-family:'Cormorant Garamond',serif;

    font-size:72px;

    line-height:.95;

    margin:20px 0;

}

.about-left h3{

    font-size:30px;

    color:#b58840;

    margin-bottom:35px;

    font-weight:400;

}

.about-left p{

    font-size:18px;

    line-height:34px;

    color:#666;

    margin-bottom:25px;

}

.about-right{

    display:flex;

    justify-content:center;

}

.about-right img{

    width:100%;

    border-radius:30px;

    box-shadow:0 25px 50px rgba(0,0,0,.12);

}


.story{

    display:grid;

    grid-template-columns:1fr 1fr;

    align-items:center;

    background:#1f1f1f;

    color:#fff;

    min-height:700px;

}

.story-image{

    height:100%;

}

.story-image img{

    width:100%;

    height:100%;

    object-fit:cover;

}

.story-content{

    padding:90px;

}

.story-content span{

    color:#b58840;

    letter-spacing:4px;

    font-size:14px;

}

.story-content h2{

    font-family:'Cormorant Garamond',serif;

    font-size:65px;

    line-height:1;

    margin:25px 0;

}

.story-content p{

    color:#d8d8d8;

    line-height:34px;

    margin-bottom:25px;

    font-size:18px;

}

.values{

    padding:160px 8%;

    background:#faf8f4;

}

.section-heading{

    text-align:center;

    margin-bottom:90px;

}

.section-heading span{

    color:#b58840;

    letter-spacing:5px;

    font-size:14px;

}

.section-heading h2{

    font-family:'Cormorant Garamond',serif;

    font-size:68px;

    margin:20px 0;

}

.section-heading p{

    max-width:700px;

    margin:auto;

    line-height:34px;

    color:#666;

}

.values-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:50px;

}

.value-box{

    padding-top:40px;

    border-top: 2px solid #d8c5a0;

    border-bottom: 2px solid #d8c5a0;

    transition:.4s;

}

.value-box:hover{

    transform:translateY(-10px);

}

.number{

    font-size:15px;

    color:#b58840;

    letter-spacing:3px;

    margin-bottom:25px;

}

.value-box h3{

    font-family:'Cormorant Garamond',serif;

    font-size:38px;

    margin-bottom:20px;

}

.value-box p{

    color:#666;

    line-height:30px;

    margin-bottom: 20px;

}

.value-box:hover{

    border-top:2px solid #b58840;

}

.value-box:hover h3{

    color:#b58840;

}

footer{

    background:#1f1f1f;

    color:#fff;

    padding:80px 8% 30px;

}

.footer-container{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:50px;

    margin-bottom:60px;

}

.footer-box h2{

    font-family:'Cormorant Garamond',serif;

    color:#b58840;

    font-size:55px;

    margin-bottom:20px;

}

.footer-box h3{

    color:#b58840;

    margin-bottom:25px;

    font-size:22px;

}

.footer-box p{

    color:#cfcfcf;

    line-height:30px;

}

.footer-box ul{

    list-style:none;

}

.footer-box li{

    margin-bottom:15px;

}

.footer-box a{

    color:#ddd;

    text-decoration:none;

    transition:.3s;

}

.footer-box a:hover{

    color:#b58840;

}

.social{

    display:flex;

    flex-direction:column;

    gap:15px;

}

.copyright{

    text-align:center;

    padding-top:25px;

    border-top:1px solid rgba(255,255,255,.1);

    color:#aaa;

}

.page-title{

    padding:180px 8% 80px;

    text-align:center;

    background:#faf8f4;

}

.page-title h1{

    font-family:'Cormorant Garamond',serif;

    font-size:80px;

    margin:20px 0;

}

.page-title p{

    max-width:600px;

    margin:auto;

    color:#666;

    line-height:32px;

}




.contact-page{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:35px;

    padding:0 8% 60px;

    background:#faf8f4;

}

.contact-card{

    background:white;

    padding:45px;

    border-radius:20px;

    box-shadow:0 10px 35px rgba(0,0,0,.06);

    transition:.3s;

}

.contact-card:hover{

    transform:translateY(-8px);

}

.contact-card h3{

    color:#b58840;

    margin-bottom:20px;

    font-size:28px;

}

.contact-card p{

    line-height:32px;

    color:#555;

}

.contact-card a{

    color:#222;

    text-decoration:none;

}

.contact-buttons{

    display:flex;

    justify-content:center;

    gap:20px;

    padding-bottom:80px;

    background:#faf8f4;

}

.map{

    padding:0 8% 120px;

    background:#faf8f4;

}

.map iframe{

    width:100%;

    height:450px;

    border:0;

    border-radius:25px;

}

body.progress{

    min-height:100vh;

    background:url(slike/inprogress.png) center center/cover no-repeat;

}

.progressTekst{
    min-height: 100vh;

    margin-top:90px;

    display:flex;

    justify-content:center;

    align-items:center;

    text-align:center;

    background:rgba(20,20,20,.45);

    backdrop-filter:blur(3px);

    color:white;

    padding:40px;
}

.progressTekst{
    font-family:'Cormorant Garamond',serif;

    font-size:120px;

    font-weight:600;


}

@media (max-width:1024px){

.logo h2{
    font-size: 35px;
}

header{

    padding:0 25px;

}

.menu-toggle{

    display:block;

}

nav{

    position:fixed;

    top:90px;

    right:-100%;

    width:100%;

    height:calc(100vh - 90px);

    background:#faf8f4;

    transition:.4s;

}

nav.active{

    right:0;

}

nav ul{

    display:flex;

    flex-direction:column;

    justify-content:center;

    align-items:center;

    gap:40px;

    height:100%;

}

nav a{

    font-size:28px;

    font-family:'Cormorant Garamond',serif;

}


.hero{

    grid-template-columns:1fr;
    text-align:center;
    padding:120px 25px 20px;
    gap:50px;

}

.line{
    margin: 0 auto 35px;
}

.hero-image img{

    width:340px;
    display: none;

}

.hero h1{

    font-size:62px;

}

.hero p{

    font-size:17px;

    line-height:30px;

    margin: 0 auto 40px;

}

.hero-buttons{

    display:flex;

    flex-direction:column;

    align-items:center;

    justify-content:center;

    gap:18px;

    width:100%;

}

.about{
    padding-top: 40px;
}

.about,
.story{

    grid-template-columns:1fr;

}

.story-content{
    padding: 40px;
}

.about-left,
.story-content{

    order:1;

}

.about-right,
.story-image{

    order:2;

}



.values-grid{

    grid-template-columns:1fr;

}

.section-heading h2{

    font-size:48px;

}

.value-box{

    text-align:center;

}


.footer-container{

    grid-template-columns:1fr;

    text-align:center;

}

.social{

    align-items:center;

}

.page-title{

    padding:140px 25px 60px;

}

.page-title h1{

    font-size:55px;

}

.contact-page{

    grid-template-columns:1fr;

    padding:0 25px 40px;

}

.contact-buttons{

    flex-direction:column;

    align-items:center;

    padding:0 25px 60px;

}

.map{

    padding:0 25px 80px;

}

.progressTekst{

    height:calc(100vh - 90px);

    margin-top:90px;

    padding:25px;

}

.progressTekst h1{

    font-size:58px;

    line-height:1.1;

    letter-spacing:2px;

}

}