/* ==================== VIDEO HEADER ==================== */
/* ==================== VIDEO HEADER ==================== */
.wcbw-video-header {
    position: relative;
    width: 100%;
    height: 50vh;
    overflow: hidden;
    background-color: transparent;
}

.header-video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    object-fit: cover;           /* This allows clipping while keeping full width */
    display: block;
}

/* Menu and Title - Full Width */
.header-menu-container,
.site-titles {
    width: 100%;
    max-width: 100% !important;
}

/* Menu BELOW the video - Flex Centered */
.header-menu-container {
    background: transparent;
    padding: 1.2rem 0;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
}

.header-main-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 2.5rem;
}

.header-main-menu a {
    color: var(--color-primary);
    font-family: var(--font-elegant);
    font-weight: 600;
    text-decoration: none;
}

.header-main-menu a:hover {
    color: var(--color-accent);
}

/* Site Title Below - Flex Centered */
.site-titles {
    background: transparent;
    padding: 1.8rem 0;
    display: flex;
    flex-direction:column;
    justify-content: center;
    align-items: center;
}

.site-title {
    margin: 0;
    font-family: var(--font-elegant);
    color: var(--color-primary);
    font-size: 1.9rem;
    font-weight: 600;
    text-align: center;
}

/* Responsive */
@media (max-width: 768px) {
    .header-main-menu {
        gap: 1.5rem;
        font-size: 0.95rem;
    }
    
    .site-title {
        font-size: 1.6rem;
    }
}

/* ========== NEW HEADER SUBTITLE & LOCATIONS ========== */
.site-subtitle {
    margin: 0.35rem 0 0.15rem;
    font-size: 1.15rem;
    color: var(--color-secondary);     /* Light green from globals.css */
    text-align: center;
    font-family: var(--font-elegant);
    font-weight: 500;
    line-height: 1.3;
}

.site-locations {
    margin: 0;
    font-size: 0.95rem;
    color: var(--color-highlight);     /* Orange from globals.css */
    text-align: center;
    font-family: var(--font-elegant);
    font-weight: 400;
    line-height: 1.4;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .site-subtitle {
        font-size: 1rem;
    }
    .site-locations {
        font-size: 0.85rem;
    }
}

/* ==================== HAMBURGER MENU ==================== */
.header-menu-container {
    width: 100%;
    max-width: 100% !important;
    background: var(--color-secondary-light);
    padding: 1.2rem 0;
    text-align: center;
}

.header-main-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 2.5rem;
    justify-content: center;
}

.header-main-menu a {
    color: var(--color-primary);
    font-family: var(--font-elegant);
    font-weight: 600;
    text-decoration: none;
}

.header-main-menu a:hover {
    color: var(--color-accent);
}

/* Hamburger Icon */
.hamburger {
    display: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--color-primary);
}

/* Mobile Menu */
@media (max-width: 768px) {
    .header-main-menu {
        display: none;
        flex-direction: column;
        gap: 1rem;
        padding: 1rem 0;
        background: var(--color-secondary-light);
        width: 100%;
    }
    
    .header-main-menu.active {
        display: flex;
    }
    
    .hamburger {
        display: block;
    }
    
    .header-menu-container {
        padding: 0.8rem 1rem;
        text-align: right;
    }
}