/* Page Banner - Bannière hero pour toutes les pages */

.page-banner {
    position: relative;
    height: 400px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 60px;
}

.page-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 14, 39, 0.85) 0%, rgba(10, 14, 39, 0.6) 100%);
    z-index: 1;
}

.page-banner-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
}

.page-banner-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: -1px;
}

.page-breadcrumb {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.page-breadcrumb a {
    color: #30D54A;
    text-decoration: none;
    transition: all 0.3s ease;
}

.page-breadcrumb a:hover {
    color: white;
}

.page-breadcrumb .separator {
    color: rgba(255, 255, 255, 0.5);
}

.page-breadcrumb .current {
    color: rgba(255, 255, 255, 0.7);
}

/* Responsive */
@media (max-width: 768px) {
    .page-banner {
        height: 300px;
    }
    
    .page-banner-title {
        font-size: 2.5rem;
    }
    
    .page-breadcrumb {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .page-banner {
        height: 250px;
    }
    
    .page-banner-title {
        font-size: 2rem;
    }
}

/* Formulaire de recherche dans le banner */
.banner-search-form {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) translateY(50%);
    width: 90%;
    max-width: 950px;
    z-index: 10;
    background: none !important;
}

.banner-search-form .search-box-archive {
    margin-bottom: 0 !important;
    box-shadow: none !important;
    background: none !important;
    background-color: transparent !important;
    padding: 0 !important;
    border-radius: 0 !important;
}

.banner-search-form .search-box-archive::before,
.banner-search-form .search-box-archive::after {
    display: none !important;
}

.banner-search-form .search-tabs {
    background: none !important;
    padding: 20px 30px 0 !important;
    margin-bottom: 0 !important;
    border-bottom: none !important;
    gap: 8px !important;
    display: flex !important;
    justify-content: flex-start !important;
}

.banner-search-form .search-tab {
    padding: 12px 28px !important;
    background: rgba(255, 255, 255, 0.25) !important;
    border: 2px solid rgba(255,255,255,0.5) !important;
    border-radius: 8px 8px 0 0 !important;
    color: rgba(255,255,255,0.95) !important;
    font-weight: 700 !important;
    font-size: 13px !important;
    cursor: pointer !important;
    position: relative !important;
    transition: all 0.3s ease !important;
    text-transform: uppercase !important;
    letter-spacing: 0.8px !important;
    border-bottom: none !important;
    opacity: 1 !important;
    flex: 0 0 auto !important;
    backdrop-filter: blur(5px) !important;
}

.banner-search-form .search-tab.active {
    background: var(--color-white) !important;
    color: #FF0080 !important;
    border-color: var(--color-white) !important;
    backdrop-filter: none !important;
}

.banner-search-form .search-tab:not(.active) {
    background: rgba(255, 255, 255, 0.25) !important;
    color: rgba(255,255,255,0.95) !important;
    border-color: rgba(255,255,255,0.5) !important;
}

.banner-search-form .search-tab:hover:not(.active) {
    background: rgba(255, 255, 255, 0.35) !important;
    border-color: rgba(255,255,255,0.7) !important;
    color: white !important;
}

.banner-search-form .search-form-grid {
    background: white !important;
    padding: 30px !important;
    border-radius: 0 12px 12px 12px !important;
    box-shadow: 0 20px 60px rgba(0,0,0,0.4) !important;
}

/* Responsive */
@media (max-width: 768px) {
    .banner-search-form {
        width: 95%;
    }
    
    .banner-search-form .search-tabs {
        padding: 15px 20px 0 !important;
        gap: 5px !important;
    }
    
    .banner-search-form .search-tab {
        padding: 10px 20px !important;
        font-size: 12px !important;
    }
}
