@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&display=swap');



/* Main Navigation Header Styles */
.alt-header {
    background-color: #371763;
    width: 100%;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    position: relative;
    font-family: 'Inter', sans-serif;
}

.alt-header__container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.625rem 0;
    width: 100%;
    box-sizing: border-box;
}

.alt-header__logo-link {
    display: block;
    transition: opacity 0.15s ease-in-out;
    border-radius: 0.125rem;
}

.alt-header__logo-link:hover {
    opacity: 0.9;
}

.alt-header__logo-link:focus {
    outline: none;
}

.alt-header__logo-img {
    height: 50px;
    width: auto;
    display: block;
}

.alt-header__nav {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    white-space: nowrap;
    padding-left: 1rem;
}

@media (min-width: 1024px) {
    .alt-header__nav {
        gap: 0.5rem;
    }
}

/* Dropdown Container */
.alt-dropdown {
    position: relative;
}

/* Dropdown Trigger Button */
.alt-dropdown__trigger {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    height: 34px;
    padding: 0 0.75rem;
    background-color: rgba(0, 0, 0, 0.1);
    color: #ffffff;
    font-size: 13px;
    border-radius: 9999px;
    cursor: pointer;
    border: 1px solid transparent;
    transition: all 0.15s ease-in-out;
}

.alt-dropdown__trigger:hover {
    background-color: rgba(0, 0, 0, 0.2);
}

.alt-dropdown__trigger.alt-dropdown__trigger--no-hover:hover {
    background-color: rgba(0, 0, 0, 0.1);
}

.alt-dropdown__trigger--px {
    padding: 0 0.875rem;
}

.alt-dropdown__trigger--menu {
    background-color: transparent;
    border-color: rgba(255, 255, 255, 0.5);
    padding: 0 1rem;
    margin-left: 0.25rem;
}

@media (min-width: 1024px) {
    .alt-dropdown__trigger--menu {
        margin-left: 0.5rem;
    }
}

.alt-dropdown__trigger--menu:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Flags and Icons */
.alt-flag {
    width: 1rem;
    height: 1rem;
    border-radius: 9999px;
    overflow: hidden;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06);
}

.alt-flag--vi {
    background-color: #DA251D;
}

.alt-flag__star {
    width: 0.625rem;
    height: 0.625rem;
    color: #FFFF00;
}

.alt-flag__img {
    width: 1rem;
    height: 1rem;
    border-radius: 9999px;
    overflow: hidden;
    flex-shrink: 0;
    object-fit: cover;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.alt-flag--en {
    background-color: #B22234;
    position: relative;
}

.alt-flag__us {
    width: 1rem;
    height: 1rem;
    border-radius: 9999px;
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06);
}

.alt-dropdown__arrow {
    width: 0.75rem;
    height: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
}

.alt-user-icon {
    width: 16px;
    height: 16px;
    color: currentColor;
}

.alt-menu-icon {
    width: 16px;
    height: 11px;
    color: currentColor;
    flex-shrink: 0;
}

/* Dropdown Menu */
.alt-dropdown__menu {
    position: absolute;
    right: 0;
    top: 100%;
    margin-top: 0.5rem;
    background-color: #ffffff;
    border-radius: 0.5rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    padding: 0.25rem 0;
    z-index: 50;
    color: #1f2937;
    font-size: 13px;
    border: 1px solid #f3f4f6;
    display: none !important;
}

.alt-dropdown__menu.show-dropdown {
    display: block !important;
}

.alt-dropdown__menu--lang {
    width: 11rem;
    max-height: 16rem;
    overflow-y: auto;
}

.alt-dropdown__menu--booking {
    width: 12rem;
}

.alt-dropdown__menu--nav {
    width: 16rem;
}

/* Dropdown Items */
.alt-dropdown__item {
    display: flex;
    align-items: center;
    padding: 0.5rem 1rem;
    color: #374151;
    text-decoration: none;
}

.alt-dropdown__item--block {
    display: block;
    text-align: left;
}

.alt-dropdown__item:hover {
    background-color: #f3f4f6;
}

.alt-flag--mr {
    margin-right: 0.5rem;
}

/* Scrollbar and other utilities */
.no-scrollbar::-webkit-scrollbar {
    display: none;
}

.no-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* Mobile Toggle Button */
.alt-header__mobile-toggle {
    display: none;
    background: transparent;
    border: none;
    color: white;
    cursor: pointer;
    padding: 0.5rem;
    margin-left: auto;
}

.alt-header__mobile-toggle svg {
    width: 28px;
    height: 28px;
}

/* Mobile Responsive Adjustments */
@media (max-width: 1023px) {
    .alt-header__container {
        max-width: 100%;
        flex-wrap: wrap;
    }

    .alt-header__mobile-toggle {
        display: block;
    }

    .alt-header__nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #371763;
        flex-direction: column;
        align-items: stretch;
        padding: 1rem;
        gap: 1rem;
        box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
        z-index: 40;
        box-sizing: border-box;
    }

    .alt-header__nav.is-active {
        display: flex;
    }

    .alt-dropdown__trigger {
        width: 100%;
        justify-content: flex-start;
        height: 44px;
        background-color: rgba(0, 0, 0, 0.2);
    }

    .alt-dropdown__trigger span {
        flex-grow: 1;
        text-align: left;
    }

    .alt-dropdown__arrow {
        margin-left: auto;
    }

    .alt-dropdown__menu {
        position: static;
        width: 100% !important;
        box-shadow: none;
        border: 1px solid rgba(255, 255, 255, 0.1);
        background-color: rgba(255, 255, 255, 0.05);
        margin-top: 0.5rem;
        max-height: none;
    }

    .alt-dropdown__item {
        color: #ffffff;
    }

    .alt-dropdown__item:hover {
        background-color: rgba(255, 255, 255, 0.1);
    }

    .alt-dropdown__trigger.alt-dropdown__trigger--no-hover:hover {
        background-color: rgba(0, 0, 0, 0.2);
    }
}
