/* =====================================
   ROOT
===================================== */

:root{
    --bg:#ece7e2;
    --olive:#97864a;
    --accent:#b26b1e;

    --text:#2d2d2d;
    --white:#ffffff;

    --header-bg:#f4f0ec;
    --border:#ddd;
    --dark:#333;
}


/* =====================================
   RESET
===================================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}


/* =====================================
   BODY
===================================== */

body{
    background:var(--bg);
    font-family:'Montserrat',sans-serif;
    color:var(--text);
    line-height:1.6;
}


/* =====================================
   CONTAINER
===================================== */

.container{
    width:100%;
    max-width:1400px;
    margin:auto;
    padding:0 15px;
}


/* =====================================
   HEADER
===================================== */

header{
    position:sticky;
    top:0;
    background:var(--header-bg);
    z-index:1000;
    border-bottom:1px solid var(--border);
}

header .container{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:15px 10px;
}

.logo img{
    height:40px;
}


/* =====================================
   NAVIGATION
===================================== */

.nav-links{
    display:flex;
    gap:25px;
    list-style:none;
    font-size:1.1rem;
}

.nav-links a{
    text-decoration:none;
    color:var(--text);
    font-weight:500;
    transition:.3s;
}

.nav-links a:hover{
    color:var(--accent);
}


/* =====================================
   HAMBURGER
===================================== */

.hamburger{
    display:none;
    flex-direction:column;
    gap:5px;
    cursor:pointer;
}

.hamburger span{
    width:30px;
    height:3px;
    background:var(--dark);
}


/* =====================================
   HERO
===================================== */

.hero{
    padding:50px 0 80px;
}

.hero-content{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:40px;
    margin-bottom:40px;
}

.hero-text h1{
    font-family:'Cormorant Garamond',serif;
    font-size:3.5rem;
    font-weight:500;
    line-height:1.1;
    margin-bottom:15px;
}

.hero-text p{
    font-size:1.4rem;
    max-width:600px;
}

.hero-logo img{
    width:100px;
    height:auto;
}

.hero-image{
    width:100%;
    height:500px;
    object-fit:cover;
    border-radius:30px;
}


/* =====================================
   FOOTER
===================================== */

footer{
    background:var(--olive);
    padding:40px 0;
    margin-top:100px;
}

.footer-content{
    text-align:center;
    color:var(--white);
}


/* =====================================
   MOBILE MENU
===================================== */

@media(max-width:900px){

    .nav-links{
        display:none;
        position:absolute;
        top:100%;
        left:0;
        width:100%;
        background:var(--bg);
        flex-direction:column;
        padding:20px;
        font-size:1rem;
    }

    .nav-links.active{
        display:flex;
    }

    .hamburger{
        display:flex;
    }

    .hamburger span{
        width:18px;
        height:2px;
    }

    .hero-content{
        flex-direction:column;
        text-align:center;
    }

    .hero-text h1{
        font-size:2.5rem;
    }

    .hero-text p{
        font-size:1.2rem;
    }
}


/* =====================================
   MOBILE 768
===================================== */

@media(max-width:768px){

    .logo img{
        height:25px;
    }

    .hero{
        padding:30px 0 40px;
    }

    .hero-logo img{
        width:80px;
    }

    .hero-text h1{
        font-size:2rem;
    }

    .hero-text p{
        font-size:1rem;
    }

    .hero-image{
        height:250px;
    }

    footer{
        padding:15px 0;
        margin-top:30px;
        font-size:0.75rem;
    }
}