/* ========================= */
/* TOP BAR */
/* ========================= */

.top-bar{
    background:#C86C87;
    color:#fff;
    height:36px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:14px;
    letter-spacing:.3px;
    text-align:center;
}

.top-bar strong{
    margin-left:6px;
}

.top-bar .container{
    display:flex;
    justify-content:center;
    align-items:center;
}

/* ========================= */
/* NAVBAR */
/* ========================= */

.navbar{
    position:sticky;
    top:0;
    z-index:1000;
    background:rgba(255,249,250,.96);
    backdrop-filter:blur(18px);
    border-bottom:1px solid var(--line);
}

.navbar-container{
    height:82px;
    display:flex;
    align-items:center;
    justify-content:space-between;
}

.logo{
    display:flex;
    align-items:baseline;
    gap:6px;
    font-family:"Cormorant Garamond",serif;
    font-size:30px;
    letter-spacing:2px;
}

.logo span{
    color:var(--accent);
}

.logo strong{
    letter-spacing:4px;
    font-weight:500;
}

.nav-menu{
    display:flex;
    gap:34px;
    align-items:center;
}

.nav-menu a{
    color:var(--text-primary);
    transition:.3s;
}

.nav-menu a:hover{
    color:var(--accent);
}

.desktop-book{
    display:flex;
}

.mobile-book{
    display:none;
}

.btn-book{
    background:var(--accent);
    color:#fff;
    padding:18px 34px;
    border-radius:999px;
    transition:.3s;
}

.btn-book:hover{
    background:var(--accent-hover);
}

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

.hamburger{
    display:none;
    width:42px;
    height:42px;
    position:relative;
    background:none;
    border:none;
    cursor:pointer;
    z-index:1100;
}

.hamburger span{
    position:absolute;
    left:8px;
    width:26px;
    height:3px;
    background:var(--text-primary);
    border-radius:20px;
    transition:.35s;
}

.hamburger span:nth-child(1){
    top:11px;
}

.hamburger span:nth-child(2){
    top:19px;
}

.hamburger span:nth-child(3){
    top:27px;
}

.hamburger.active span:nth-child(1){
    transform:rotate(45deg);
    top:19px;
}

.hamburger.active span:nth-child(2){
    opacity:0;
}

.hamburger.active span:nth-child(3){
    transform:rotate(-45deg);
    top:19px;
}

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

@media (max-width:992px){

    .desktop-book{
        display:none;
    }

    .mobile-book{
        display:block;
        margin-top:25px;
    }

    .hamburger{
        display:block;
    }

    .nav-menu{

        position:fixed;

        top:118px;

        right:-100%;

        width:300px;

        height:calc(100vh - 118px);

        background:#fff;

        display:flex;

        flex-direction:column;

        justify-content:flex-start;

        align-items:flex-start;

        gap:28px;

        padding:45px 35px;

        transition:.35s ease;

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

    }

    .nav-menu.active{
        right:0;
    }

    .nav-menu li{
        width:100%;
    }

    .nav-menu a{
        display:block;
        width:100%;
        font-size:18px;
    }

    body.menu-open{
        overflow:hidden;
    }

}

@media (max-width:576px){

    .logo{
        font-size:24px;
    }

    .top-bar{
        font-size:12px;
        height:42px;
        padding:0 10px;
    }

    .navbar-container{
        height:74px;
    }

    .nav-menu{

        top:116px;

        width:100%;

        height:calc(100vh - 116px);

    }

}