@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600;700&family=Inter:wght@300;400;500;600;700&display=swap');

:root{
    --green:#14382F;
    --green-dark:#0C2722;
    --gold:#C6A15B;
    --beige:#F6F1E8;
    --cream:#FFFDF8;
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:"Inter",sans-serif;
}

.aw-header{
    position:sticky;
    top:0;
    z-index:9999;
    background:rgba(20,56,47,.95);
    backdrop-filter:blur(16px);
    border-bottom:1px solid rgba(198,161,91,.15);
}

.aw-container{
    max-width:1450px;
    margin:auto;
    padding:16px 40px;
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.aw-logo{
    display:flex;
    align-items:center;
    gap:15px;
    text-decoration:none;
}

.aw-logo img{
    width:58px;
}

.aw-logo h2{
    font-family:"Cormorant Garamond",serif;
    font-size:34px;
    letter-spacing:5px;
    margin:0;
    color:#fff;
}

.aw-logo span{
    color:var(--gold);
    letter-spacing:3px;
    font-size:12px;
    text-transform:uppercase;
}

nav{
    display:flex;
    gap:32px;
}

nav a{
    text-decoration:none;
    font-weight:600;
    color:#F6F1E8;
    transition:.3s;
    position:relative;
}

nav a:hover,
nav a.active{
    color:var(--gold);
}

nav a.active::after{
    content:"";
    position:absolute;
    bottom:-8px;
    left:0;
    width:100%;
    height:2px;
    background:var(--gold);
}

.aw-right{
    display:flex;
    align-items:center;
    gap:15px;
}

.book-btn{
    padding:13px 24px;
    background:#F6F1E8;
    color:#14382F;
    text-decoration:none;
    font-weight:700;
    border-radius:8px;
    transition:.3s;
}

.book-btn:hover{
    background:var(--gold);
}

.login-btn{
    padding:12px 22px;
    background:transparent;
    border:1px solid rgba(255,255,255,.25);
    color:white;
    border-radius:8px;
    cursor:pointer;
}

/* PROFILE CLICK DROPDOWN */

.profile-menu{
    position:relative;
}

.profile-btn{
    background:none;
    border:none;
    color:#fff;
    display:flex;
    align-items:center;
    gap:10px;
    cursor:pointer;
    font-weight:600;
    font-size:15px;
}

.profile-btn i:first-child{
    font-size:28px;
}

.profile-dropdown{
    position:absolute;
    top:54px;
    right:0;
    width:230px;
    background:#fff;
    border-radius:16px;
    overflow:hidden;
    box-shadow:0 20px 60px rgba(0,0,0,.18);
    opacity:0;
    visibility:hidden;
    transform:translateY(12px);
    transition:.25s ease;
    z-index:99999;
    display:block;
}

.profile-dropdown.show{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
}

.profile-dropdown a{
    display:flex;
    align-items:center;
    gap:12px;
    padding:15px 20px;
    color:#14382F;
    text-decoration:none;
    transition:.3s;
}

.profile-dropdown a:hover{
    background:#F6F1E8;
}

.profile-dropdown i{
    font-size:18px;
    color:#C6A15B;
}

/* ==========================
   MOBILE HEADER
========================== */

.mobile-menu-btn,
.mobile-nav{
    display:none;
}

@media(max-width:1100px){

    .aw-container{
        padding:18px 22px;
    }

    .aw-logo h2{
        font-size:28px;
    }

    /* Hide desktop navigation only */
    nav{
        display:none;
    }

    /* Hide desktop Book button */
    .book-btn{
        display:none;
    }

    /* Show hamburger */
    .mobile-menu-btn{
        display:flex;
        align-items:center;
        justify-content:center;

        width:46px;
        height:46px;

        border:none;
        border-radius:10px;

        background:transparent;
        color:#fff;

        cursor:pointer;
        font-size:28px;
    }

    .mobile-menu-btn:hover{
        background:rgba(255,255,255,.08);
    }

    /* Mobile dropdown */

.mobile-nav{
    position:fixed;

    top:110px;
    left:0;
    right:0;

    display:none;
    flex-direction:column;

    padding:15px 20px 20px;

    background:#14382F;
    box-shadow:0 18px 35px rgba(0,0,0,.22);

    z-index:9998;

    max-height:calc(100vh - 110px);
    overflow-y:auto;
}

    .mobile-nav.show{
        display:flex;
    }

 .mobile-nav a{
    color:#fff;
    text-decoration:none;
    padding:13px 18px;
    border-radius:8px;
    font-weight:600;
}

.mobile-nav a:hover{
    background:rgba(255,255,255,.08);
}

.mobile-book-btn{
    margin-top:8px;
    background:#F6F1E8;
    color:#14382F !important;
    text-align:center;
}

}
