/* ===================================
   Luxe Header Component Styles
   Transparent Overlay Design
   =================================== */

/* Main Luxe Header - Fully transparent, no blur */
.luxe-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9998;
    background: transparent;
    /* No backdrop filter - completely transparent */
    height: 80px;
    transition: all 0.3s ease;
}

/* Keep old site-header class for backward compatibility */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9998;
    background: transparent;
    /* No backdrop filter - completely transparent */
    height: 80px;
    transition: all 0.3s ease;
}

/* Header scrolled state - with background */
.luxe-header.scrolled,
.site-header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .luxe-header,
    .site-header {
        height: 70px;
    }
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

@media (max-width: 768px) {
    .header-container {
        padding: 0 20px;
    }
}

/* Logo Section */
.header-logo {
    flex-shrink: 0;
    z-index: 10;
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.logo-link:hover {
    opacity: 0.9;
}

/* Company Logo */
.company-logo {
    height: var(--logo-height, 60px);
    width: auto;
    max-width: 250px;
    object-fit: contain;
    filter: brightness(0) invert(1); /* Make logo white on transparent header */
    transition: all 0.3s ease;
}

/* When header is scrolled, logo becomes normal */
.luxe-header.scrolled .company-logo,
.site-header.scrolled .company-logo {
    filter: none;
}

@media (max-width: 768px) {
    .company-logo {
        height: var(--logo-height-mobile, 50px);
        max-width: 200px;
    }
}

/* Text Logo Fallback */
.logo-text {
    display: flex;
    align-items: center;
}

.logo-name {
    font-size: 26px;
    font-weight: 500;
    color: #ffffff;
    font-family: var(--font-family-base);
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.luxe-header.scrolled .logo-name,
.site-header.scrolled .logo-name {
    color: #000000;
}

/* Navigation Menu */
.header-nav {
    display: none;
    flex-grow: 1;
    margin: 0 60px;
}

@media (min-width: 1024px) {
    .header-nav {
        display: flex;
        justify-content: center;
    }
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 40px;
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-item {
    position: relative;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    position: relative;
    padding: 5px 0;
    font-family: var(--font-family-base);
}

/* When header is scrolled */
.luxe-header.scrolled .nav-link,
.site-header.scrolled .nav-link {
    color: #333333;
}

.nav-link:hover {
    opacity: 0.8;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: #ffffff;
    transition: width 0.3s ease;
}

.luxe-header.scrolled .nav-link::after,
.site-header.scrolled .nav-link::after {
    background: var(--primary-color);
}

.nav-link:hover::after {
    width: 100%;
}

/* Book Taxi Button */
.header-cta {
    flex-shrink: 0;
}

.luxe-book-btn,
.book-taxi-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 30px;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 50px;
    transition: all 0.3s ease;
    font-family: var(--font-family-base);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.luxe-book-btn:hover,
.book-taxi-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.15);
    background: var(--primary-hover);
}

/* Hide arrow if exists */
.btn-arrow {
    display: none;
}

@media (max-width: 1024px) {
    .header-cta {
        display: none;
    }
}

/* Mobile Menu Button - Styled box */
.mobile-menu-btn {
    display: none;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.8);
    border-radius: 6px;
    cursor: pointer;
    padding: 0;
    z-index: 10000;
    transition: all 0.3s ease;
    position: relative;
}

@media (max-width: 1024px) {
    .mobile-menu-btn {
        display: flex;
    }
}

.mobile-menu-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #ffffff;
}

.mobile-menu-btn > div {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.hamburger-line {
    width: 22px;
    height: 2px;
    background: #ffffff;
    margin: 3px 0;
    transition: all 0.3s ease;
    display: block;
}

.luxe-header.scrolled .mobile-menu-btn,
.site-header.scrolled .mobile-menu-btn {
    border-color: #333333;
}

.luxe-header.scrolled .hamburger-line,
.site-header.scrolled .hamburger-line {
    background: #333333;
}

/* Hide hamburger button when menu is open - it won't be visible anyway */
.mobile-menu-btn.is-active {
    z-index: -1;
}

/* Mobile Navigation - Full overlay like screenshot */
.mobile-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 999999;
    display: none;
    flex-direction: column;
    overflow-y: auto;
}

.mobile-nav.is-open {
    display: flex !important;
}

.mobile-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: none;
    height: 80px;
}

.mobile-nav-logo {
    flex: 1;
}

.mobile-company-logo {
    height: 45px;
    width: auto;
    filter: brightness(0) invert(1);
}

.mobile-logo-text .mobile-logo-name {
    color: white;
    font-size: 22px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-family: var(--font-family-base);
}

.close-menu-btn {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.8);
    border-radius: 6px;
    width: 42px;
    height: 42px;
    cursor: pointer;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 100000;
}

.close-menu-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #ffffff;
}

.close-icon {
    position: relative;
    width: 22px;
    height: 22px;
    display: block;
}

.close-icon::before,
.close-icon::after {
    content: '';
    position: absolute;
    width: 22px;
    height: 2px;
    background: white;
    top: 10px;
    left: 0;
}

.close-icon::before {
    transform: rotate(45deg);
}

.close-icon::after {
    transform: rotate(-45deg);
}

.mobile-nav-content {
    flex: 1;
    overflow-y: auto;
    padding: 40px 25px;
}

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

.mobile-nav-item {
    margin: 0 0 25px 0;
}

.mobile-nav-link {
    color: white;
    text-decoration: none;
    font-size: 20px;
    font-weight: 400;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    display: block;
    padding: 5px 0;
    position: relative;
    font-family: var(--font-family-base);
}

/* Highlight first item (Home) */
.mobile-nav-item:first-child .mobile-nav-link {
    color: var(--primary-color); /* Use the primary brand color */
}

.mobile-nav-link:hover {
    color: var(--primary-color);
    padding-left: 10px;
}

/* Mobile nav footer removed - no buttons needed */

/* Body menu open state */
body.menu-open {
    overflow: hidden;
}

/* Sticky buttons are loaded via x-sticky-buttons component */