.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1030;
    background-color: var(--seatme-light-blue);
    /* box-shadow: var(--header-shadow); */
    transition: transform var(--transition-speed) ease-in-out;
}

.site-header.header-hidden {
    transform: translateY(-100%);
}

.language-bar {
    background-color: var(--language-bar-bg);
    padding: 8px 0;
}

.language-switcher {
    display: flex;
    align-items: center;
    gap: 5px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.language-switcher .lang-item {
    display: inline-block;
}

.language-switcher .lang-link {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 4px 10px;
    text-decoration: none;
    color: var(--color-dark);
    font-size: 0.85rem;
    font-weight: 500;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.language-switcher .lang-link:hover,
.language-switcher .lang-link.active {
    /* color: #0d6efd;
    background-color: rgba(13, 110, 253, 0.1); */
}

/* .language-switcher .lang-link.active {
    font-weight: 600;
} */

.language-switcher .divider {
    color: var(--color-dark);
    font-size: 0.75rem;
}

/* Desktop language bar */
.language-bar-desktop {
    display: block;
    max-width: 1400px;
    margin: 0 auto;
}

/* Mobile language bar (between logo and burger) */
.language-bar-mobile {
    display: none;
}

@media (max-width: 991.98px) {
    .language-bar-desktop {
        display: none;
    }

    .language-bar-mobile {
        display: flex;
        align-items: center;
    }

    .language-bar-mobile .language-switcher {
        margin-right: 15px;
    }

    .language-bar-mobile .lang-link {
        padding: 4px 8px;
        font-size: 0.8rem;
    }
}

/* .logo-bar {
    padding: 20px 0;
} */

.logo-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
}

.site-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: inherit;
}

.site-logo img {
    max-height: 60px;
    width: auto;
}

.logo-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    /* width: 200px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 8px;
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 2px; */
}

@media (max-width: 991.98px) {
    .logo-bar {
        padding: 15px 0;
    }

    .logo-wrapper {
        justify-content: flex-start;
    }

    .logo-placeholder {
        /* width: 150px; */
        height: 45px;
        /* font-size: 1.2rem; */
    }

    .site-logo img {
        max-height: 45px;
    }
}

.nav-bar {
    background-color: var(--header-bg);
    /* border-top: 1px solid #e9ecef; */
}

.main-navigation {
    display: flex;
    justify-content: center;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 10px;
}

.main-navigation .nav-item {
    position: relative;
}

.main-navigation .nav-link {
    display: block;
    padding: 15px 25px;
    color: var(--nav-link-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.2s ease, background-color 0.2s ease;
    border-radius: 0;
}

.main-navigation .nav-link:hover,
.main-navigation .nav-link.active {
    /* color: var(--nav-link-hover);
    background-color: rgba(13, 110, 253, 0.05); */
}

.main-navigation .nav-link.active {
    position: relative;
}

.main-navigation .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 3px;
    background-color: var(--nav-link-hover);
    border-radius: 3px 3px 0 0;
}

.mobile-header-row {
    display: none;
}

@media (max-width: 991.98px) {
    .mobile-header-row {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .nav-bar {
        display: none;
    }
}

.navbar-toggler {
    border: none;
    padding: 8px;
    background-color: transparent;
    position: relative;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.hamburger {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: #333;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.navbar-toggler[aria-expanded="true"] .hamburger span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .hamburger span:nth-child(2) {
    opacity: 0;
}

.navbar-toggler[aria-expanded="true"] .hamburger span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.offcanvas {
    --bs-offcanvas-width: 300px;
    background-color: var(--seatme-light-blue);
}

.offcanvas-header {
    /* border-bottom: 1px solid #e9ecef; */
    padding: 20px;
}

/* .offcanvas-title {
    font-weight: 600;
    color: #333;
} */

.offcanvas-body {
    padding: 20px;
}

.offcanvas-nav {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* .offcanvas-nav .nav-item {
    border-bottom: 1px solid #f0f0f0;
}

.offcanvas-nav .nav-item:last-child {
    border-bottom: none;
} */

.offcanvas-nav .nav-link {
    display: block;
    padding: 15px 0px;
    color: var(--seatme-dark-blue);
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    transition: all 0.2s ease;
}

.offcanvas-nav .nav-link:hover,
.offcanvas-nav .nav-link.active {
    padding-left: 10px;
}

.offcanvas-nav .nav-link.active {
    border-left: 3px solid var(--seatme-dark-blue);
}

.offcanvas-backdrop {
    background-color: rgba(0, 0, 0, 0.5);
}

.offcanvas-backdrop.show {
    opacity: 1;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}