/*=========================================
            PREMIUM NAVBAR
=========================================*/
.custom-navbar{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding:14px 0;
    background: transparent;
    z-index: var(--z-navbar);
    transition:
        background .4s ease,
        backdrop-filter .4s ease,
        box-shadow .4s ease,
        padding .35s ease;
}

.custom-navbar.scrolled{
    background: rgba(255,255,255,.92);
    backdrop-filter: blur(18px);
    box-shadow: 0 12px 35px rgba(0,0,0,.08);
    padding:8px 0;
}
.custom-navbar .container-custom{
    display:flex;
    align-items:center;
    justify-content:space-between;
}
/*=========================================
                LOGO
=========================================*/
.logo{
    height:85px;
    width:auto;
    transition:all .35s ease;
}

.custom-navbar.scrolled .logo{
    height:68px;
}
/*=========================================
            NAVIGATION
=========================================*/
.navbar-nav{
    gap: 4px;

}

.navbar-nav .nav-link{
    position: relative;
    padding:8px 16px !important;
    font-size:16px;
    font-weight: 500;
    letter-spacing: .4px;
    color: var(--white);
    transition:
        color .3s ease,
        transform .3s ease;
}

.custom-navbar.scrolled .nav-link{
    color: var(--dark);
}

.navbar-nav .nav-link:hover{
    color: var(--secondary);
    transform:translateY(-2px);
}

.navbar-nav .nav-link.active{
    color: var(--secondary);
}
/*=========================================
            UNDERLINE
=========================================*/
.navbar-nav .nav-link::after{
    content: "";
    position: absolute;
    left: 18px;
    bottom: 6px;
    width: 0;
    height: 3px;
    border-radius: 50px;
    background: var(--secondary);
    transition: width .35s ease;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after{
    width: calc(100% - 36px);
}
/*=========================================
            CTA BUTTON
=========================================*/
.btn-book{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding:10px 24px;
    font-size:15px;
    border-radius: 50px;
    background: var(--secondary);
    color: var(--dark);
    font-weight: 600;
    transition: .35s ease;
    box-shadow:0 10px 25px rgba(212,175,55,.25);
}

.btn-book:hover{
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0,0,0,.15);
    color: var(--dark);
}
/*=========================================
        MOBILE TOGGLER
=========================================*/
.navbar-toggler{
    border: none;
    box-shadow: none !important;
    font-size: 24px;
    color: var(--white);
}

.custom-navbar.scrolled .navbar-toggler{
    color: var(--dark);
}