#brx-header{
    max-width: 100vw;
    overflow-x: hidden;
}

/* Header Styles */
.header-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 50;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease-in-out;
}

.header-overlay.active {
    opacity: 1;
    visibility: visible;
}

.right-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-color: #f5f5dc; /* brand-beige equivalent */
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
    z-index: 60;
    overflow-y: auto;
}

.right-drawer.active {
    transform: translateX(0);
}

.drawer-content {
    padding: 16px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.drawer-logo {
    height: 52px;
    filter: invert(1);
}

.drawer-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.language-switcher {
    text-align: right;
    font-weight: 500;
}

.close-btn {
    color: #4a5568;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0.8rem 0.5rem 0.5rem 0.5rem;
}

.close-btn:hover {
    color: #2d3748;
}

.mobile-menu {
    list-style: none;
    padding: 0;
    margin: 2.5rem 0 0 0;
}

.mobile-menu li {
    margin-bottom: 1rem;
}

.mobile-menu-link {
    display: block;
    font-size: 24px;
    color: #000;
    text-decoration: none;
    transition: color 0.2s ease-in-out;
}

.mobile-menu-link:hover {
    color: #CF653C;
}

.drawer-contact {
    margin-top: 32px;
    font-weight: 500;
    font-size: 14px;
}

.drawer-contact p {
    margin: 0.25rem 0;
}

.drawer-footer {
    margin-top: auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.privacy-link {
    color: inherit;
    text-decoration: none;
}

.privacy-link:hover {
    text-decoration: underline;
}

/* Main Header */
.main-header {
    position: fixed;
    top: 0;
    z-index: 50;
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    height: 86px;
    background-color: #CF653C; /* brand-orange equivalent */
    color: white;
    padding: 0.75rem 0;
    font-weight: 300;
    font-size: 18px;
}



.header-nav {
    max-width: 1280px;
    width: 100%;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Mobile Layout */
.mobile-layout {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.book-now-mobile {
    color: white;
    min-width: 100px;
    font-weight: 500;
    text-decoration: none;
}

.book-now-mobile:hover {
    color: rgba(255, 255, 255, 0.8);
}

.header-logo {
    height: 100%;
}

.menu-toggle {
    min-width: 100px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.hamburger-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

/* Desktop Layout */
.desktop-layout {
    display: none;
    align-items: center;
    width: 100%;
    height: 100%;
}

.desktop-layout a {
    font-size: 18px;
}

.book-now-desktop {
    color: white;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.2s ease-in-out;
}

.book-now-desktop:hover {
    color: rgba(255, 255, 255, 0.8);
}

.left-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex: 1;
    justify-content: flex-end;
    margin-right: 2rem;
}

.left-menu a {
    color: white;
    text-decoration: none;
    transition: color 0.2s ease-in-out;
}

.left-menu a:hover {
    color: rgba(255, 255, 255, 0.8);
}

.desktop-logo {
    flex-shrink: 0;
    height: 130%;
    transition: transform 0.3s ease-in-out;
}

.desktop-logo:hover {
    transform: scale(1.05);
}

.right-menu {
    display: flex;
    flex: 1;
    align-items: center;
    gap: 2rem;
    margin-left: 2rem;
}

.right-menu a {
    color: white;
    text-decoration: none;
    transition: color 0.2s ease-in-out;
}

.right-menu a:hover {
    color: rgba(255, 255, 255, 0.8);
}

.desktop-language {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.desktop-language div {
    color: white;
    width: 2.5rem;
    transition: color 0.2s ease-in-out;
}

.desktop-language div:hover {
    color: rgba(255, 255, 255, 0.8);
}

/* Responsive Design */
@media (min-width: 768px) {
    .mobile-layout {
        display: none;
    }

    .desktop-layout {
        display: flex;
    }

    .right-drawer {
        display: none;
    }

    .main-header {
        padding: 0.5rem 32px;
    }
}

@media (max-width: 1024px) {
    .main-header a {
        font-size: 15px;
    }
}



@media (min-width: 1024px) {

}

/* Utility classes */
.submenu {
    list-style: none;
    padding-left: 1rem;
}

/* Hide scrollbar when drawer is open */
body.drawer-open {
    overflow: hidden;
}
