*{
    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;
    position: relative;

    padding: 70px 8% 0px;

    background:linear-gradient(135deg,#ffffff,#f7f3ec);
    overflow:hidden;
}

.hero-text{
    z-index: 2;
    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: 250px;
    height: 3px;
    border-radius: 999px;
    background: #C9973F;
    margin: 35px 0 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;
    background: #f7f3ec;

    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;

    z-index: 1;
}

.hero-image img{

    width:1200px;
    max-width:none;
    transform:translateX(160px);

    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:90px 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{
    background:white;
    border:none;
    border-radius:20px;
    padding:30px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.value-box:hover{
    transform:translateY(-5px);
}

.number{
    font-size:40px;
    font-weight:700;
    opacity:.15;
    margin-bottom:10px;
}

.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: 1440px) and (min-width: 769px) {

    .values-grid{
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

}

@media (max-width:768px){

    .logo h2{
        font-size: 35px;
    }

    header{

        padding:0 25px;

    }

    .menu-toggle{

        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 32px;
        line-height: 1;
        cursor: pointer;
        font-size: 34px;

    }

    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:100px 25px 30px;
        gap:30px;

    }

    .line{
        margin: 0 auto 35px;
    }

    .hero-image img{

        width:25px;
        display:none;
        margin:auto;
        transform:none;

    }

    .hero h1{

        font-size:60px;
        line-height:1;
        margin-bottom:20px;

    }


    .hero p{

        font-size:17px;

        line-height:30px;
        max-width: 330px;

        margin: 0 auto 35px;

    }

    .hero-buttons{

        display:flex;

        flex-direction:column;

        align-items:center;

        justify-content:center;

        gap:18px;

        width:100%;

    }

    .btn{
        width:100%;
        max-width:300px;
        margin:auto;
    }

    .btn2{
        width:100%;
        max-width:300px;
        margin:auto;
    }

    section{
        scroll-margin-top:90px;
    }

    .about{
        padding-top: 60px;
    }

    .about-left h2{
        font-size: 42px;
        line-height: 1.1;
    }
    .about,
    .story{

        grid-template-columns:1fr;
        gap: 40px;
    }

    .story-content{
        padding:50px 30px;
    }

    .story-content h2{
        font-size:42px;
        line-height: 1.1;
    }

    .about-left,
    .story-content{

        order:1;

    }

    .about-right,
    .story-image{

        order:2;

    }

    .about-right img{
        border-radius:20px;
    }

    .values-grid{

        grid-template-columns:1fr;

    }

    .section-heading h2{

        font-size:48px;

    }




    .footer-container{

        grid-template-columns:1fr;

        text-align:center;

        gap: 35px;
    }

    .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;

    }

}