/* =====================================
   GLOBAL RESET
===================================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}


html{
    scroll-behavior:smooth;
}


body{

    font-family:'Inter',sans-serif;

    background:#faf8f2;

    color:#222;

    overflow-x:hidden;

}


body.no-scroll{

    overflow:hidden;

}


a{

    text-decoration:none;

}


ul{

    list-style:none;

}


img{

    max-width:100%;

    display:block;

}



/* =====================================
   VARIABLES
===================================== */


:root{

    --primary:#1f3d2b;

    --gold:#c59d5f;

    --dark:#222;

    --white:#fff;

    --cream:#faf8f2;

}



/* =====================================
   HEADER
===================================== */


header{

    position:fixed;

    top:0;

    left:0;

    width:100%;

    background:#fff;

    z-index:999;

    box-shadow:
    0 2px 15px rgba(0,0,0,.05);

    transition:.3s;

}



header.scrolled{

    box-shadow:
    0 10px 35px rgba(0,0,0,.12);

}




.navbar{

    width:92%;

    max-width:1400px;

    height:90px;

    margin:auto;

    display:flex;

    justify-content:space-between;

    align-items:center;

}




/* =====================================
   LOGO
===================================== */


.logo h2{

    font-size:34px;

    font-weight:700;

    color:#222;

}



.logo p{

    margin-top:5px;

    font-size:13px;

    letter-spacing:2px;

    color:var(--gold);

}





/* =====================================
   DESKTOP MENU
===================================== */


.nav-links{

    display:flex;

    align-items:center;

    gap:45px;

}



.nav-links li{

    position:relative;

}



.nav-links a{

    color:#222;

    font-size:18px;

    font-weight:500;

    transition:.3s;

}



.nav-links a:hover,
.nav-links a.current{

    color:var(--gold);

}





/* =====================================
   DESKTOP DROPDOWN
===================================== */


.dropdown>a{

    display:flex;

    align-items:center;

    gap:8px;

}



.dropdown-menu{

    position:absolute;

    top:60px;

    left:0;

    width:280px;

    background:#fff;

    border-radius:12px;

    box-shadow:
    0 15px 40px rgba(0,0,0,.15);


    opacity:0;

    visibility:hidden;

    transform:translateY(15px);

    transition:.35s;

    overflow:hidden;

}



.dropdown:hover .dropdown-menu{

    opacity:1;

    visibility:visible;

    transform:translateY(0);

}




.dropdown-menu li{

    border-bottom:1px solid #eee;

}



.dropdown-menu li:last-child{

    border:none;

}



.dropdown-menu a{

    display:block;

    padding:16px 20px;

    font-size:15px;

}



.dropdown-menu a:hover{

    background:#faf6ef;

    padding-left:28px;

}





/* =====================================
   BUTTON
===================================== */


.quote-btn{

    display:flex;

    align-items:center;

    gap:12px;

    padding:15px 25px;

    background:#222;

    color:#fff;

    border-radius:8px;

    font-weight:600;

    transition:.3s;

}



.quote-btn:hover{

    background:#111;

}




.quote-btn i{

    width:38px;

    height:38px;

    display:flex;

    justify-content:center;

    align-items:center;

    border-radius:50%;

    background:#3a3227;

    color:#d4b06f;

}





/* =====================================
   HAMBURGER BUTTON
===================================== */


.menu-btn{

    display:none;

    font-size:30px;

    cursor:pointer;

    color:#222;

    z-index:1002;

}





/* =====================================
   MOBILE OVERLAY
===================================== */


.menu-overlay{

    position:fixed;

    inset:0;

    background:rgba(0,0,0,.55);

    opacity:0;

    visibility:hidden;

    transition:.4s;

    z-index:1000;

}



.menu-overlay.active{

    opacity:1;

    visibility:visible;

}





/* =====================================
   HERO SECTION
===================================== */


.hero{

    height:100vh;

    min-height:650px;

    margin-top:90px;

    background:

    url("https://images.unsplash.com/photo-1516426122078-c23e76319801?auto=format&fit=crop&w=1800&q=80")

    center/cover no-repeat;


    position:relative;

    transition:.6s;

}



.overlay{

    position:absolute;

    inset:0;

    background:rgba(0,0,0,.45);

}




.hero-content{

    position:absolute;

    top:50%;

    left:50%;

    transform:translate(-50%,-50%);

    width:90%;

    max-width:900px;

    text-align:center;

    color:white;

}




.hero-content h1{

    font-size:64px;

    line-height:1.1;

    margin-bottom:25px;

}



.hero-content p{

    font-size:21px;

    line-height:1.8;

    margin-bottom:45px;

}




.hero-btn{

    display:inline-block;

    padding:18px 45px;

    background:var(--gold);

    color:#fff;

    border-radius:50px;

    font-weight:600;

    transition:.3s;

}



.hero-btn:hover{

    background:#ae874d;

    transform:translateY(-3px);

}





/* =====================================
   TABLET
===================================== */


@media(max-width:1100px){


.nav-links{

    gap:25px;

}


.nav-links a{

    font-size:16px;

}


}






/* =====================================
   MOBILE MENU
===================================== */


@media(max-width:900px){



.menu-btn{

    display:flex;

}



.quote-btn{

    display:none;

}



.nav-links{


    position:fixed;

    top:0;

    right:-100%;

    width:320px;

    height:100vh;

    background:#fff;


    display:flex;

    flex-direction:column;

    align-items:flex-start;


    padding:100px 30px 40px;


    gap:0;


    box-shadow:
    -10px 0 35px rgba(0,0,0,.15);


    transition:.45s ease;


    overflow-y:auto;


}



.nav-links.active{

    right:0;

}



.nav-links li{

    width:100%;

}



.nav-links a{

    display:flex;

    justify-content:space-between;

    width:100%;

    padding:18px 0;

    border-bottom:1px solid #eee;

}





/* MOBILE DROPDOWN */


.dropdown-menu{

    position:static;

    width:100%;

    background:#faf8f2;

    box-shadow:none;

    border-radius:10px;


    max-height:0;

    overflow:hidden;


    opacity:0;

    visibility:hidden;


    transform:none;

}



.dropdown.open .dropdown-menu{

    max-height:600px;

    opacity:1;

    visibility:visible;

}



.dropdown-menu a{

    padding:14px 20px;

    font-size:15px;

}



.dropdown>a i{

    transition:.3s;

}



.dropdown.open>a i{

    transform:rotate(180deg);

}





.hero-content h1{

    font-size:48px;

}



.hero-content p{

    font-size:18px;

}



}





/* =====================================
   SMALL MOBILE
===================================== */


@media(max-width:600px){


.navbar{

    height:80px;

}



.logo h2{

    font-size:27px;

}



.logo p{

    font-size:10px;

}



.hero{

    margin-top:80px;

}



.hero-content h1{

    font-size:36px;

}



.hero-content p{

    font-size:16px;

}



.hero-btn{

    padding:15px 30px;

}



}



@media(max-width:400px){


.nav-links{

    width:100%;

}


}