/* ==========================================================================
   HERO SECTION - GALERIE
========================================================================== */
.gallery-hero {
    background-color: var(--bleu-rac);
    padding: 100px 5%;
    position: relative;
    overflow: hidden;
}

.gallery-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../../img/wrestlers_bg.png') right bottom / auto 40% no-repeat;
    opacity: 0.15; 
    z-index: 1; 
}

.gallery-hero-content {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.gallery-subtitle {
    font-family: 'Typo-Paris', sans-serif;
    color: var(--jaune-rac);
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 5px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 15px;
}

.gallery-hero h1 {
    font-family: 'Typo-Paris', sans-serif;
    color: var(--blanc);
    font-size: 72px;
    line-height: 1.1;
    text-transform: uppercase;
    margin: 0 0 20px 0;
}

.gallery-hero p {
    font-family: 'Typo-Mulish', sans-serif;
    color: #948BB4;
    font-size: 18px;
    line-height: 1.6;
    max-width: 550px;
    margin: 0;
}

/* ==========================================================================
   GRILLE DES ALBUMS
========================================================================== */
.gallery-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 50px auto;
}

.album-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 300px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.album-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.album-card:hover img {
    transform: scale(1.05);
}

.album-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    color: var(--blanc);
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.album-date-text {
    font-family: 'Typo-MulishBold', sans-serif;
    color: var(--jaune-rac);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 8px;
}

.album-title {
    font-family: 'Typo-Paris', sans-serif;
    font-size: 28px;
    text-transform: uppercase;
    margin: 0 0 20px 0;
    line-height: 1.1;
    color: var(--blanc);
    max-width: 500px;
}

.btn-album {
    background-color: var(--jaune-rac);
    color: var(--bleu-rac);
    padding: 10px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-family: 'Typo-MulishBold', sans-serif;
    font-weight: 700;
    font-size: 13px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-album:hover {
    background-color: #FFE48C;
    transform: translateY(-2px);
}

/* ==========================================================================
   FILTRES ET SECTIONS DE SAISONS - GALERIE
========================================================================== */
.gallery-filter-container {
    text-align: center;
    margin: 40px auto 30px auto;
    padding: 0 5%;
}

.filter-select {
    width: 100%;
    max-width: 350px;
    padding: 12px 15px;
    font-size: 16px;
    font-family: inherit;
    border: 2px solid var(--bleu-rac, #20183B);
    border-radius: 8px;
    background-color: var(--blanc, #ffffff);
    color: var(--bleu-rac, #20183B);
    cursor: pointer;
    outline: none;
    transition: border-color 0.3s ease;
}

.filter-select:focus {
    border-color: var(--jaune-rac, #FFD54F);
}

.gallery-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5% 60px;
}

.season-section {
    margin-bottom: 60px;
}

.season-title {
    font-family: 'Typo-Paris', sans-serif;
    font-size: 36px;
    color: var(--bleu-rac);
    text-transform: uppercase;
    margin-bottom: 30px;
    padding-bottom: 12px;
    border-bottom: 3px solid var(--jaune-rac);
    letter-spacing: 1px;
}

/* ==========================================================================
   MEDIA QUERIES GLOBALES (RESPONSIVE)
========================================================================== */
@media (max-width: 992px) {
    .gallery-hero h1 {
        font-size: 54px;
    }
    
    .gallery-container {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    .gallery-hero {
        padding: 60px 5%;
        background-position: center bottom;
    }

    .gallery-hero h1 {
        font-size: 42px;
    }

    .gallery-hero p {
        font-size: 16px;
    }

    .album-title {
        font-size: 24px;
    }

    .season-title {
        font-size: 28px;
        margin-bottom: 20px;
    }
    
    .gallery-filter-container {
        margin: 25px auto 20px;
    }

    .filter-select {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .gallery-hero h1 {
        font-size: 32px;
    }

    .gallery-subtitle {
        font-size: 12px;
        letter-spacing: 3px;
    }

    .gallery-container {
        grid-template-columns: 1fr;
        gap: 20px;
        margin: 30px auto;
    }

    .album-card {
        height: 250px;
    }

    .album-overlay {
        padding: 20px;
    }

    .album-title {
        font-size: 20px;
        margin-bottom: 15px;
    }
    
    .album-date-text {
        font-size: 12px;
    }
}