/* Navbar styles */
.navbar {
    background: var(--Neutral-White, #FFF);
    box-shadow: 0px 4px 40px 0px rgba(0, 0, 0, 0.08);
    height: 70px;
    display: flex !important;
    align-items: center;
}
.navbar-nav {
    gap: 40px;
}
    .navbar .container {
        display: flex;
        justify-content: center;
        align-items: center;
    }

        .navbar .container .navbar-brand {
            margin-right: auto;
        }

        .navbar .container .navbar-toggler {
            margin-left: auto;
        }

        .navbar .container .navbar-nav {
            display: flex;
            color: #fff;
            gap: 15px;
            margin: auto;
        }


.button-book {
    border-radius: 12px;
    border: 1px solid var(--Primary-500, #14489C);
    color: var(--Primary-500, #14489C);
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-transform: capitalize;
    height: 52px;
    padding: 12px 24px;
    gap: 8px;
    transition:0.3s all;
}
    .button-book:hover {
        background-color: #14489C;
        color:#fff;
    }

    .button-book a {
        color: var(--Neutral-White, #FFF);
        font-size: 16px;
        font-style: normal;
        font-weight: 500;
        line-height: normal;
    }

#selectLanguage .language-button {
    border-radius: 12px;
    border: 1px solid var(--Primary-500, #14489C);
    padding: 11px;
    transition: .3s all;
}

    #selectLanguage .language-button:hover span {
        color: #fff !important;
    }
    #selectLanguage .language-button:hover {
        background-color: #14489C;
    }

.language-button span {
    color: var(--Primary-500, #14489C) !important;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}


html:lang(en) .button-book a {
    font-size: 15px;
}


.nav-item a {
    font-style: normal;
    line-height: 150%;
    color: var(--Neutral-900, #1A1A1A) !important;
    transition: .2s all;
}

.navbar-nav .nav-link.active {
    color: var(--Secondary-500, #D12839) !important;
}

.nav-link:hover {
    color: var(--Secondary-500, #D12839) !important;
    cursor: pointer;
}

.navbar-toggler {
    border: none;
}

.navbar-toggler-icon {
    color: #000 !important;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.dropdown-toggle::after {
    display: none;
}

.offcanvas-nav {
    position: fixed;
    top: 0;
    bottom: 0;
    right: -300px; /* Initially hidden */
    width: 300px;
    background-color: #fff;
    z-index: 1050;
    overflow-y: auto;
    transition: right 0.3s ease;
}

.close-btn-mv {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: #E2E6E9;
    border: 1px solid #E2E6E9;
}
/* Add this CSS to your stylesheet */
.fixed-navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: top 0.3s;
}

body.fixed-navbar-active {
    padding-top: 70px; /* Adjust based on the height of your navbar */
}

.loading-indicator {
    display: none;
    margin-left: 8px;
    width: 16px;
    height: 16px;
    border: 2px solid #f3f3f3;
    border-top: 2px solid #14489C;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* ????? ??? ??????? */
.dropdown-menu {
    display: none;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
    background-color: #f8f9fa; /* ??? ??????? */
    border-radius: 10px; /* ????? ??????? */
    padding: 10px 0; /* ???? ??? ??????? */
}

/* ????? ??????? ??? ??????? */
.dropdown:hover .dropdown-menu {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

/* ????? ??? ??????? ???? ??????? */
.dropdown-item {
    padding: 10px 20px;
    color: #343a40;
    text-align: left;
    transition: background-color 0.2s, color 0.2s;
}

    /* ??????? ??? ?????? ??? ??????? */
    .dropdown-item:hover {
        background-color: #b8d9fc;
        color: #fff;
        border-radius: 25px;
    }
