/* CSS Combiné - Page: saison - v7 */

/* === 00-config/_variables.css === */
/* ============================================
   VARIABLES CSS & CONFIGURATION
   Design System - Variables globales
   ============================================ */

:root {
    /* Couleurs */
    --color-primary: rgb(14, 37, 5);
    --color-text: rgb(0, 0, 0);
    --color-text-light: rgb(87, 85, 85);
    --color-text-dark: rgb(41, 41, 41);
    --color-text-muted: rgb(60, 59, 59);
    --color-border: #ccc;
    --color-bg-white: #fff;
    --color-bg-light: #f0f0f0;
    --color-bg-overlay: rgba(0, 0, 0, 0.8);
    --color-hover-light: rgba(41, 41, 41, 0.697);

    /* Polices */
    --font-title: 'Julius_Sans_One', serif;
    --font-subtitle: 'Reenie_Beanie', serif;
    --font-heading: 'Playfair_Display_SC', serif;
    --font-body: 'PT_Serif', sans-serif;
    --font-body-bold: 'PT_Serif_Bold', serif;
    --font-script: 'Dancing_Script', cursive;
    --font-critique: 'Baskervville', sans-serif;

    /* Système typographique (rem basé sur 16px) */
    /* Titres principaux (h1) */
    --font-size-h1-mobile: 1.875rem;    /* 30px */
    --font-size-h1-tablet: 2.5rem;      /* 40px */
    --font-size-h1-desktop: 3.5rem;     /* 56px */

    /* Titres secondaires (h2) */
    --font-size-h2-mobile: 1.5rem;      /* 24px */
    --font-size-h2-tablet: 2rem;        /* 32px */
    --font-size-h2-desktop: 2.5rem;     /* 40px */

    /* Titres tertiaires (h3) */
    --font-size-h3-mobile: 1.25rem;     /* 20px */
    --font-size-h3-tablet: 1.5rem;      /* 24px */
    --font-size-h3-desktop: 1.875rem;   /* 30px */

    /* Texte corporel */
    --font-size-body: 1.125rem;         /* 18px - Taille plus confortable */
    --font-size-body-large: 1.25rem;    /* 20px */
    --font-size-body-small: 0.9375rem;  /* 15px - À utiliser avec parcimonie */

    /* Couleurs pour les liens */
    --color-link: rgb(14, 37, 5);       /* Même couleur que primary pour cohérence */
    --color-link-hover: rgb(41, 41, 41); /* Couleur au survol */

    /* Line heights */
    --line-height-tight: 1.2;
    --line-height-normal: 1.5;
    --line-height-relaxed: 1.7;

    /* Espacements */
    --spacing-xs: 0.313rem;   /* 5px */
    --spacing-sm: 0.625rem;   /* 10px */
    --spacing-md: 1.25rem;    /* 20px */
    --spacing-lg: 1.875rem;   /* 30px */
    --spacing-xl: 3.125rem;   /* 50px */
    --spacing-xxl: 6.25rem;   /* 100px */

    /* Transitions */
    --transition-default: 0.3s ease;
    --transition-slow: 1.5s ease;

    /* Galerie */
    --gap: 12px;
    --thumb-size: 96px;
    --overlay-bg: rgba(0, 0, 0, 0.85);
    --btn-size: 44px;
    --outside-gap: 20px;
}

/* ============================================
   RESPONSIVE - Variables pour mobile (max-width: 1200px)
   Tailles de police adaptées pour mobile
   ============================================ */
@media (max-width: 1200px) {
    :root {
        --font-size-h1-mobile: 2rem;      /* 32px */
        --font-size-h2-mobile: 1.625rem;  /* 26px */
        --font-size-h3-mobile: 1.375rem;  /* 22px */
    }
}


/* === 00-config/_fonts.css === */
/* ============================================
   FONTS
   Déclarations @font-face
   ============================================ */

@font-face {
    font-family: 'Dancing_Script';
    src: url(/Police/Dancing_Script/DancingScript-VariableFont_wght.ttf) format('truetype');
}

@font-face {
    font-family: 'PT_Serif';
    src: url(/Police/PT_Serif/PTSerif-Regular.ttf) format('truetype');
}

@font-face {
    font-family: 'PT_Serif_Bold';
    src: url(/Police/PT_Serif/PTSerif-Bold.ttf) format('truetype');
}

@font-face {
    font-family: 'Playfair_Display_SC';
    src: url(/Police/Playfair_Display_SC/PlayfairDisplaySC-Regular.ttf) format('truetype');
}

@font-face {
    font-family: 'Reenie_Beanie';
    src: url(/Police/Reenie_Beanie/ReenieBeanie-Regular.ttf) format('truetype');
}

@font-face {
    font-family: 'Julius_Sans_One';
    src: url(/Police/Julius_Sans_One/JuliusSansOne-Regular.ttf) format('truetype');
}

@font-face {
    font-family: 'Baskervville';
    src: url(/Police/Baskervville/Baskervville-VariableFont_wght.ttf) format('truetype');
}


/* === 01-base/_reset.css === */
/* ============================================
   RESET CSS
   Reset de base pour normaliser les styles
   ============================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


/* === 01-base/_base.css === */
/* ============================================
   BASE STYLES
   Styles de base pour html et body
   ============================================ */

html {
    overflow-x: hidden;
    width: 100%;
}

body {
    margin-top: var(--spacing-xs);
    transition: padding-top var(--transition-default);
    font-family: var(--font-body);
    font-size: var(--font-size-body);
    line-height: var(--line-height-normal);
    color: var(--color-text);
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}


/* === 01-base/_typography.css === */
/* ============================================
   TYPOGRAPHY
   Styles typographiques globaux
   ============================================ */

/* ----- LIENS GLOBAUX ----- */
a {
    color: var(--color-link);
    text-decoration: none;
    transition: color var(--transition-default);
}

a:hover {
    color: var(--color-link-hover);
}

a:visited {
    color: var(--color-link);
}

/* Liens dans le contenu texte */
.bio-text a,
.concert-card__description a,
p a {
    color: var(--color-link);
    text-decoration: underline;
    text-decoration-color: rgba(14, 37, 5, 0.3);
    text-underline-offset: 2px;
    transition: all var(--transition-default);
}

.bio-text a:hover,
.concert-card__description a:hover,
p a:hover {
    color: var(--color-link-hover);
    text-decoration-color: rgba(41, 41, 41, 0.5);
}


/* === 02-layout/_containers.css === */
/* ============================================
   CONTAINERS
   Containers et wrappers génériques
   ============================================ */

/* Container biographie */
.bio-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: var(--spacing-md);
}

/* Container saison */
.saison-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: var(--spacing-md);
}

/* Container galerie moderne */
.galerie-modern {
    max-width: 1600px;
    margin: 0 auto;
    padding: var(--spacing-md);
}

/* Container page contact */
.contact-page {
    min-height: 100vh;
    background: linear-gradient(135deg, #f5f7fa 0%, #e8ecf0 100%);
}

.contact-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--spacing-xl);
}


/* === 02-layout/_header.css === */
/* ============================================
   HEADER & NAVIGATION
   En-tête du site avec navigation responsive
   ============================================ */

/* ----- HEADER ----- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--color-bg-white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: box-shadow var(--transition-default);
}

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

.site-header:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

/* ----- NAVBAR ----- */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 1.5rem;
    max-width: 100%;
    margin: 0 auto;
    position: relative;
}

/* ----- BRAND ----- */
.navbar-brand {
    flex-shrink: 0;
    z-index: 1001;
}

.brand-link {
    text-decoration: none;
    display: block;
}

.brand-name {
    color: var(--color-text-dark);
    font-family: var(--font-title);
    font-size: 4.4rem;
    font-weight: 700;
    margin: 0;
    line-height: var(--line-height-tight);
    transition: color var(--transition-default);
}

.brand-link:hover .brand-name {
    color: var(--color-primary);
}

.brand-subtitle {
    color: var(--color-text-light);
    font-family: var(--font-subtitle);
    font-size: 3.6rem;
    font-style: italic;
    margin: 0;
    margin-top: -4px;
    line-height: var(--line-height-normal);
}

/* ----- MENU TOGGLE (Hamburger) ----- */
.menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 3rem;
    height: 3rem;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.25rem;
    z-index: 1001;
    position: relative;
    transition: transform 0.3s ease;
}

.menu-toggle:focus {
    outline: 2px solid var(--color-primary);
    outline-offset: 3px;
}

.hamburger-line {
    width: 100%;
    height: 0.3rem;
    background-color: var(--color-text-dark);
    border-radius: 10px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.menu-toggle.active .hamburger-line:nth-child(1) {
    transform: translateY(0.625rem) rotate(45deg);
}

.menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
    transform: scale(0);
}

.menu-toggle.active .hamburger-line:nth-child(3) {
    transform: translateY(-0.625rem) rotate(-45deg);
}

/* ----- NAVBAR MENU ----- */
.navbar-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    max-width: 100vw;
    height: 100vh;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    overflow-y: auto;
    overflow-x: hidden;
    padding-top: 8rem;
    z-index: 999;
    display: none;
}

.navbar-menu.active {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

/* ----- NAV LIST ----- */
.nav-list {
    list-style: none;
    padding: 2rem 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.nav-item {
    border-bottom: none;
}

.nav-link {
    display: block;
    padding: 2rem 3rem;
    color: var(--color-text-dark);
    text-decoration: none;
    font-family: var(--font-heading);
    font-size: 2rem;
    transition: all var(--transition-default);
    position: relative;
    text-align: center;
    border-radius: 15px;
    margin: 0 1.5rem;
    white-space: nowrap;
}

.nav-link::before {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0.5rem;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background-color: var(--color-primary);
    transition: width var(--transition-default);
}

.nav-link:hover,
.nav-link:active {
    background-color: rgba(14, 37, 5, 0.08);
    color: var(--color-primary);
}

.nav-link:hover::before,
.nav-link:active::before {
    width: 60%;
}

/* ----- MENU OVERLAY ----- */
.menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    transition: opacity var(--transition-default);
}

.menu-overlay.active {
    display: block;
    opacity: 1;
}

/* ============================================
   RESPONSIVE - TABLETTE
   ============================================ */
@media screen and (max-width: 1200px) {
    .navbar {
        padding: 1rem 1.5rem;
        min-height: auto;
    }

    .navbar-brand {
        line-height: 1;
    }

    .brand-name {
        font-size: 1rem !important;
        margin: 0;
        line-height: 1.1;
    }

    .brand-subtitle {
        font-size: 1.1rem !important;
        margin: 0;
        margin-top: -2px;
        line-height: 1.1;
    }

    /* Style hamburger noir et blanc avec cercle */
    .menu-toggle {
        width: 2rem;
        height: 2rem;
        background: var(--color-bg-white);
        border-radius: 50%;
        margin-right: 0.5rem;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        transition: all 0.3s ease;
    }

    .menu-toggle:hover {
        transform: scale(1.05);
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    }

    .menu-toggle:focus {
        outline: 3px solid rgba(0, 0, 0, 0.2);
        outline-offset: 5px;
    }

    .hamburger-line {
        height: 0.2rem;
        background-color: var(--color-text-dark);
        border-radius: 3px;
        transition: all 0.3s ease;
    }

    .menu-toggle.active {
        background: var(--color-bg-white);
    }

    .menu-toggle.active .hamburger-line:nth-child(1) {
        transform: translateY(0.5rem) rotate(45deg);
    }

    .menu-toggle.active .hamburger-line:nth-child(2) {
        opacity: 0;
        transform: scaleX(0);
    }

    .menu-toggle.active .hamburger-line:nth-child(3) {
        transform: translateY(-0.5rem) rotate(-45deg);
    }

    /* Nouveau menu mobile avec blur */
    .navbar-menu {
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        padding-top: 2.5rem;
    }

    .navbar-menu.active {
        animation: slideInRight 0.3s ease-out;
    }

    @keyframes slideInRight {
        from {
            opacity: 0;
            transform: translateX(-20px);
        }
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }

    /* Nouveau style de liens */
    .nav-list {
        padding: 1.5rem 1rem;
        gap: 0.5rem;
    }

    .nav-link {
        padding: 1.25rem 1.5rem;
        font-size: 1.25rem;
        font-weight: 600;
        color: var(--color-text-dark);
        background: linear-gradient(135deg, rgba(14, 37, 5, 0.05), transparent);
        border-left: 5px solid transparent;
        border-radius: 20px;
        margin: 0 1rem;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        position: relative;
        overflow: hidden;
    }

    .nav-link::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, var(--color-primary), #1a4d2e);
        transform: translateX(-100%);
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: -1;
    }

    .nav-link:hover::before,
    .nav-link:active::before {
        transform: translateX(0);
    }

    .nav-link:hover,
    .nav-link:active {
        color: white;
        border-left-color: white;
        box-shadow: 0 10px 30px rgba(14, 37, 5, 0.3);
        transform: translateX(10px);
    }

    /* Overlay plus doux */
    .menu-overlay.active {
        background-color: rgba(0, 0, 0, 0.6);
        backdrop-filter: blur(5px);
    }
}

/* ============================================
   RESPONSIVE - DESKTOP
   ============================================ */
@media screen and (min-width: 1201px) {
    .site-header {
        height: 88px;
        min-height: 88px;
        contain: layout style;
    }

    .navbar {
        padding: 0.4rem 1.5rem;
        max-width: 100%;
        min-height: 88px;
        max-height: 88px;
        height: 88px;
        gap: 1rem;
        contain: layout;
    }

    .navbar-brand {
        padding: 0;
        margin: 0;
        max-height: 100px;
        overflow: hidden;
        flex-shrink: 0;
    }

    .brand-name {
        font-size: 2.4rem;
        line-height: 1;
        margin: 0;
        padding: 0;
    }

    .brand-subtitle {
        font-size: 2.4rem;
        line-height: 1;
        margin: 0;
        margin-top: -4px;
        padding: 0;
    }

    .menu-toggle {
        display: none;
    }

    .navbar-menu {
        display: flex;
        position: static;
        width: auto;
        max-width: none;
        height: auto;
        background: transparent;
        box-shadow: none;
        padding-top: 0;
        overflow: visible;
        transition: none;
    }

    .nav-list {
        flex-direction: row;
        align-items: center;
        gap: 0.3rem;
        padding: 0;
        margin: 0;
    }

    .nav-item {
        border: none;
    }

    .nav-link {
        padding: 0.5rem 0.8rem;
        font-size: 1.4rem;
        border-radius: 0.375rem;
        margin: 0;
        white-space: nowrap;
    }

    .nav-link::before {
        display: none;
    }

    .nav-link:hover {
        background-color: rgba(14, 37, 5, 0.08);
        padding-left: 1.2rem;
        transform: translateY(-2px);
    }

    /* Lien actif - page courante soulignée */
    .nav-link.active {
        text-decoration: underline;
        text-underline-offset: 4px;
        text-decoration-thickness: 2px;
        text-decoration-color: var(--color-primary);
    }
}

/* ============================================
   RESPONSIVE - TABLETTE LARGE (redimensionnement progressif)
   Avant le breakpoint burger, réduire logo + menu
   ============================================ */
@media screen and (min-width: 1201px) and (max-width: 1500px) {
    .navbar {
        padding: 0.3rem 1rem;
        gap: 0.5rem;
    }

    .brand-name {
        font-size: clamp(1.6rem, 2vw, 2.4rem);
    }

    .brand-subtitle {
        font-size: clamp(1.6rem, 2vw, 2.4rem);
    }

    .nav-link {
        padding: 0.4rem 0.5rem;
        font-size: clamp(1.1rem, 1.2vw, 1.4rem);
    }

    .nav-list {
        gap: 0.1rem;
    }
}

@media screen and (min-width: 1201px) and (max-width: 1350px) {
    .navbar {
        padding: 0.2rem 0.8rem;
        gap: 0.3rem;
    }

    .brand-name {
        font-size: 1.5rem;
    }

    .brand-subtitle {
        font-size: 1.5rem;
        margin-top: -2px;
    }

    .nav-link {
        padding: 0.35rem 0.4rem;
        font-size: 1rem;
    }

    .nav-list {
        gap: 0;
    }

    .nav-link:hover {
        padding-left: 0.6rem;
    }
}


/* === 02-layout/_footer.css === */
/* ============================================
   FOOTER
   Pied de page du site
   ============================================ */

footer {
    width: 100%;
    margin-top: var(--spacing-lg);
    position: relative;
    z-index: 10;
    background: white;
}

.pied {
    color: var(--color-text-muted);
    font-size: 1em;
    font-family: var(--font-body);
    background-color: rgba(255, 255, 255, 1);
    text-align: center;
    align-items: center;
    height: 10%;
}

.pied a {
    color: var(--color-text-muted);
    font-size: var(--font-size-body-small);
    font-family: var(--font-body);
    background-color: rgba(255, 255, 255, 0.405);
    text-decoration: none;
    text-align: center;
    align-items: center;
}

/* Mobile footer styles */
@media screen and (max-width: 1200px) {
    .pied {
        font-size: 0.875rem !important; /* Réduire la taille du texte (14px) */
    }

    .pied a {
        font-size: 0.875rem !important; /* Réduire la taille des liens (14px) */
    }
}

/* Desktop footer styles */
@media screen and (min-width: 1201px) {
    footer {
        /* Desktop specific footer styles if needed */
    }
}


/* === 03-components/_cards.css === */
/* ============================================
   CARDS
   Composant cards réutilisables
   ============================================ */

/* ----- BASE CARD ----- */
.card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.12);
    transition: all 0.3s ease;
    overflow: hidden;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.18);
}

/* ----- CARD ELEMENTS ----- */
.card__image {
    width: 100%;
    overflow: hidden;
}

.card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.card__content {
    padding: var(--spacing-lg);
}

/* ----- CARD VARIANTS ----- */
.card--highlight {
    background: linear-gradient(
        135deg,
        rgba(14, 37, 5, 0.03),
        rgba(255, 255, 255, 1)
    );
    border: 2px solid rgba(14, 37, 5, 0.1);
}


/* === 03-components/_hero.css === */
/* ============================================
   HERO SECTIONS
   Composant hero section réutilisable
   ============================================ */

/* ----- ANIMATION KEYFRAMES ----- */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ----- HERO SECTION BASE ----- */
.hero-section {
    position: relative;
    height: 70vh;
    min-height: 400px;
    max-height: 600px;
    overflow: hidden;
    margin-bottom: var(--spacing-xl);
}

.hero-section__image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-section__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

.hero-section__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.3) 0%,
        rgba(14, 37, 5, 0.6) 100%
    );
    display: flex;
    align-items: flex-end;
    justify-content: center;
    z-index: 2;
    padding: var(--spacing-xl);
}

.hero-section__content {
    text-align: center;
    color: white;
    animation: fadeInUp 1s ease;
}

.hero-section__title {
    font-family: var(--font-title);
    font-size: var(--font-size-h1-mobile);
    font-weight: 700;
    margin: var(--spacing-sm) 0 0;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    letter-spacing: 0.0625rem;
    line-height: var(--line-height-tight);
}

.hero-section__subtitle {
    font-family: var(--font-subtitle);
    font-size: var(--font-size-h2-mobile);
    margin: 0;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    line-height: var(--line-height-normal);
}

/* ----- ALIAS POUR COMPATIBILITÉ ----- */
/* Applique les mêmes styles aux hero sections spécifiques */
.bio-hero,
.saison-hero,
.galerie-hero,
.contact-hero {
    position: relative;
    height: 70vh;
    min-height: 400px;
    max-height: 600px;
    overflow: hidden;
    margin-bottom: var(--spacing-xl);
}

.bio-hero__image,
.saison-hero__image,
.galerie-hero__image,
.contact-hero__image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.bio-hero__image img,
.saison-hero__image img,
.galerie-hero__image img,
.contact-hero__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

.bio-hero__overlay,
.saison-hero__overlay,
.galerie-hero__overlay,
.contact-hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.3) 0%,
        rgba(14, 37, 5, 0.6) 100%
    );
    display: flex;
    align-items: flex-end;
    justify-content: center;
    z-index: 2;
    padding: var(--spacing-xl);
}

.bio-hero__content,
.saison-hero__content,
.galerie-hero__content,
.contact-hero__content {
    text-align: center;
    color: white;
    animation: fadeInUp 1s ease;
}

.bio-hero__title,
.saison-hero__title,
.galerie-hero__title,
.contact-hero__title {
    font-family: var(--font-title);
    font-size: var(--font-size-h1-mobile);
    font-weight: 700;
    margin: var(--spacing-sm) 0 0;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    letter-spacing: 0.0625rem;
    line-height: var(--line-height-tight);
}

.bio-hero__subtitle,
.saison-hero__subtitle,
.galerie-hero__subtitle,
.contact-hero__subtitle {
    font-family: var(--font-subtitle);
    font-size: var(--font-size-h2-mobile);
    margin: 0;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    line-height: var(--line-height-normal);
}

/* ----- RESPONSIVE MOBILE ----- */
@media screen and (max-width: 1200px) {
    /* Augmenter la taille des titres et sous-titres du héro sur mobile */
    .hero-section__title,
    .bio-hero__title,
    .saison-hero__title,
    .galerie-hero__title,
    .contact-hero__title {
        font-size: 3rem !important; /* Taille augmentée mais raisonnable (48px) */
    }

    .hero-section__subtitle,
    .bio-hero__subtitle,
    .saison-hero__subtitle,
    .galerie-hero__subtitle,
    .contact-hero__subtitle {
        font-size: 1.5rem !important; /* Taille réduite pour tenir sur une ligne (24px) */
        white-space: nowrap !important; /* Force le sous-titre sur une ligne */
        overflow: hidden !important;
        text-overflow: ellipsis !important; /* Ajoute ... si trop long */
    }
}

/* ----- RESPONSIVE DESKTOP ----- */
@media screen and (min-width: 1201px) {
    .hero-section,
    .bio-hero,
    .saison-hero,
    .galerie-hero,
    .contact-hero {
        height: 80vh;
        max-height: 700px;
    }

    .hero-section__title,
    .bio-hero__title,
    .saison-hero__title,
    .galerie-hero__title,
    .contact-hero__title {
        font-size: var(--font-size-h1-desktop);
    }

    .hero-section__subtitle,
    .bio-hero__subtitle,
    .saison-hero__subtitle,
    .galerie-hero__subtitle,
    .contact-hero__subtitle {
        font-size: var(--font-size-h2-desktop);
    }
}


/* === 03-components/_concert-card.css === */
/* ============================================
   CONCERT CARD
   Carte de concert avec image, titre, lieu, date
   ============================================ */

.concert-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.12);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
}

.concert-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.18);
}

/* ----- IMAGE ----- */
.concert-card__image {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
    border-radius: 0;
}

.concert-card__image::before {
    content: '';
    position: absolute;
    inset: 0;
    box-shadow: inset 0 0 30px rgba(0, 0, 0, 0.05);
    pointer-events: none;
    z-index: 1;
}

.concert-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
    display: block;
}

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

/* ----- CONTENT ----- */
.concert-card__content {
    padding: var(--spacing-lg);
}

.concert-card__title {
    color: var(--color-primary);
    font-family: var(--font-heading);
    font-size: var(--font-size-h3-mobile);
    font-weight: normal;
    margin-bottom: var(--spacing-md);
    line-height: var(--line-height-tight);
}

/* ----- META (Lieu et Date) ----- */
.concert-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
    padding-bottom: var(--spacing-md);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.concert-card__location,
.concert-card__date {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-text-light);
    font-family: var(--font-body);
    font-size: var(--font-size-body);
    font-style: italic;
    margin: 0;
}

.concert-card__location svg,
.concert-card__date svg {
    flex-shrink: 0;
    opacity: 0.7;
}

/* ----- DESCRIPTION ----- */
.concert-card__description {
    color: var(--color-text);
    font-family: var(--font-body);
    font-size: var(--font-size-body);
    line-height: var(--line-height-relaxed);
    margin-bottom: var(--spacing-md);
}

.concert-card__description a {
    /* Inherited from typography */
}

.concert-card__description a:hover {
    /* Inherited from typography */
}

/* ----- LINK BUTTON ----- */
.concert-card__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--color-primary);
    font-family: var(--font-body);
    font-size: 0.95em;
    font-weight: 500;
    text-decoration: none;
    padding: var(--spacing-sm) var(--spacing-lg);
    border: 2px solid var(--color-primary);
    border-radius: 25px;
    transition: all 0.3s ease;
}

.concert-card__link:hover {
    background: var(--color-primary);
    color: white;
    transform: translateX(5px);
}

.concert-card__link svg {
    transition: transform 0.3s ease;
}

.concert-card__link:hover svg {
    transform: translateX(3px);
}


/* === 03-components/_language-selector.css === */
/* ============================================
   LANGUAGE SELECTOR
   Sélecteur de langue avec drapeaux
   ============================================ */

.language-selector {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid rgba(14, 37, 5, 0.15);
    contain: layout style;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.language-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1.5rem 2rem;
    width: auto;
    margin: 0 1.5rem;
    background: transparent;
    border: none;
    border-radius: 15px;
    color: var(--color-text-dark);
    font-family: var(--font-heading);
    font-size: 2rem;
    cursor: pointer;
    transition: all var(--transition-default);
}

.language-toggle:hover,
.language-toggle:active {
    background-color: rgba(14, 37, 5, 0.08);
    color: var(--color-primary);
}

.language-toggle svg {
    width: 20px;
    height: 20px;
}

.language-label {
    flex: 1;
    text-align: left;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.language-label .drapeau {
    width: 84px;
    height: 60px;
    min-width: 84px;
    min-height: 60px;
    object-fit: contain;
    display: inline-block;
    vertical-align: middle;
    border: none !important;
    box-shadow: none !important;
    outline: none !important;
    background: none !important;
}

.language-label .fleche_drapeau {
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 10px solid var(--color-text-dark);
    display: inline-block;
    vertical-align: middle;
    transition: transform var(--transition-default);
}

.language-toggle:hover .fleche_drapeau,
.language-toggle:active .fleche_drapeau {
    border-top-color: var(--color-primary);
}

.language-dropdown {
    display: none;
    list-style: none;
    padding: 1rem 0;
    margin: 1rem auto 0;
    background-color: rgba(14, 37, 5, 0.05);
    border-radius: 15px;
    width: fit-content;
}

.language-dropdown.active {
    display: block;
}

.language-option {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 1.5rem 2rem;
    color: var(--color-text-dark);
    text-decoration: none;
    font-family: var(--font-body);
    font-size: 2rem;
    transition: all var(--transition-default);
}

.language-option:hover {
    background-color: rgba(14, 37, 5, 0.08);
    padding-left: 3rem;
}

.flag-icon {
    width: 32px;
    height: 24px;
    min-width: 32px;
    min-height: 24px;
    object-fit: contain;
    display: block;
    border: none !important;
    box-shadow: none !important;
    outline: none !important;
    background: none !important;
}

/* Mobile - Liens directs uniquement */
.language-link-mobile {
    display: block;
}

.language-link {
    display: flex !important;
    align-items: center;
    gap: 0.75rem;
}

.language-flag {
    width: 32px;
    height: 24px;
    object-fit: contain;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.language-link:hover .language-flag {
    transform: scale(1.1);
}

/* ============================================
   RESPONSIVE - DESKTOP
   ============================================ */
@media screen and (min-width: 1201px) {
    /* Cacher les liens mobiles sur desktop */
    .language-link-mobile {
        display: none !important;
    }

    .language-selector {
        margin-top: 0;
        margin-left: 0;
        padding-top: 0;
        border-top: none;
        position: relative;
        display: block !important;
    }

    .language-toggle {
        padding: 0.5rem 0.8rem;
        font-size: 0.95rem;
        border-radius: 6px;
        width: 100px;
        min-width: 100px;
        margin: 0;
    }

    .language-toggle svg {
        width: 16px;
        height: 16px;
    }

    .language-toggle:hover {
        background-color: rgba(14, 37, 5, 0.08);
        transform: translateY(-2px);
    }

    .language-label .drapeau {
        width: 32px;
        height: 24px;
        min-width: 32px;
        min-height: 24px;
        object-fit: contain;
    }

    .language-label .fleche_drapeau {
        border-left: 5px solid transparent;
        border-right: 5px solid transparent;
        border-top: 6px solid var(--color-text-dark);
    }

    .language-dropdown {
        position: absolute;
        top: 100%;
        right: 0;
        margin-top: 0.5rem;
        background-color: var(--color-bg-white);
        border-radius: 8px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
        min-width: 200px;
        overflow: hidden;
        z-index: 1002;
        contain: layout style;
        will-change: opacity, transform;
    }

    .language-dropdown.active {
        animation: slideDown 0.3s ease;
    }

    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .language-option {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }

    .language-option:hover {
        background-color: rgba(14, 37, 5, 0.08);
        padding-left: 1.5rem;
    }

    .flag-icon {
        width: 28px;
        height: 20px;
        min-width: 28px;
        min-height: 20px;
    }
}

/* ============================================
   RESPONSIVE - MOBILE (max-width: 1200px)
   ============================================ */
@media screen and (max-width: 1200px) {
    /* Cacher le dropdown sur mobile */
    .language-selector {
        display: none !important;
    }

    /* Afficher les liens directs sur mobile */
    .language-link-mobile {
        display: block !important;
    }
}


/* === 05-utilities/_helpers.css === */
/* ============================================
   HELPERS
   Classes utilitaires
   ============================================ */

/* ----- SECTION HEADERS UNIFIÉS ----- */
.section-header {
    text-align: center;
    margin-bottom: var(--spacing-xxl);
    position: relative;
}

.section-header__title {
    color: var(--color-primary);
    font-family: var(--font-heading);
    font-size: var(--font-size-h2-mobile);
    font-weight: normal;
    margin: 0 0 var(--spacing-md);
    text-transform: uppercase;
    letter-spacing: 0.125rem;
    line-height: var(--line-height-tight);
}

.section-header__line {
    width: 80px;
    height: 3px;
    background: var(--color-primary);
    margin: 0 auto;
}

/* ----- HOVER EFFECTS UTILITAIRES ----- */
.hover-scale img {
    transition: transform 0.5s ease;
}

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

.hover-scale-lg:hover img {
    transform: scale(1.1);
}


/* === 05-utilities/_animations.css === */
/* ============================================
   ANIMATIONS
   Keyframes et animations réutilisables
   ============================================ */

/* ----- FADE IN UP ----- */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ----- FADE IN ----- */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ----- FADE IN FROM LEFT ----- */
@keyframes fadeInFromLeft {
    from {
        opacity: 0;
        transform: translateX(-100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ----- SHIMMER ----- */
@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

/* ----- SLIDE DOWN ----- */
@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ----- SPIN ----- */
@keyframes spin {
    from {
        transform: rotate(0);
    }
    to {
        transform: rotate(360deg);
    }
}

/* ----- IMAGE APPEAR ----- */
@keyframes imageAppear {
    from {
        opacity: 0;
        transform: scale(1.2);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* ----- OVERLAY APPEAR ----- */
@keyframes overlayAppear {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* ----- TITLE APPEAR ----- */
@keyframes titleAppear {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ----- SCROLL WHEEL ----- */
@keyframes scrollWheel {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(20px);
    }
}


/* === 04-pages/_saison.css === */
/* ============================================
   PAGE SAISON - DESIGN MODERNE
   ============================================ */

/* Hero Section - Saison */
/* UNIFIÉ: Styles maintenant définis dans la section 6 avec les autres hero sections */

/* Container principal */
.saison-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--spacing-lg) var(--spacing-md);
}

/* ============================================
   FILTRES DE CONCERTS
   ============================================ */

/* Section des filtres */
.concert-filters {
    background: white;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    padding: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
}

/* Bouton toggle des filtres */
.concert-filters__toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
    width: 100%;
    padding: var(--spacing-md) var(--spacing-lg);
    background: var(--color-primary);
    color: white;
    border: none;
    border-radius: 12px;
    font-family: var(--font-heading);
    font-size: var(--font-size-h3-mobile);
    font-weight: normal;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(14, 37, 5, 0.2);
    position: relative;
    z-index: 10;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

.concert-filters__toggle:hover {
    background: rgba(14, 37, 5, 0.85);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(14, 37, 5, 0.3);
}

.concert-filters__toggle:active {
    transform: translateY(0);
}

.concert-filters__toggle .toggle-icon {
    transition: transform 0.3s ease;
}

.concert-filters__toggle.active .toggle-icon {
    transform: rotate(180deg);
}

/* Contenu des filtres (repliable) */
.concert-filters__content {
    overflow: hidden;
    transition: all 0.4s ease;
    margin-top: var(--spacing-lg);
}

.concert-filters__title {
    color: var(--color-primary);
    font-family: var(--font-heading);
    font-size: var(--font-size-h3-mobile);
    font-weight: normal;
    text-align: center;
    margin-bottom: var(--spacing-lg);
    line-height: var(--line-height-tight);
}

.concert-filters__controls {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

/* Checkbox pour inclure passées */
.concert-filters__checkbox {
    display: flex;
    justify-content: center;
    padding-bottom: var(--spacing-md);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.concert-filters__checkbox label {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    cursor: pointer;
    font-family: var(--font-body);
    font-size: var(--font-size-body);
    color: var(--color-text);
    user-select: none;
}

.concert-filters__checkbox input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: var(--color-primary);
}

/* Conteneur des selects */
.concert-filters__selects {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
}

/* Style des selects */
.concert-filters__select {
    width: 100%;
    padding: var(--spacing-md);
    border: 2px solid rgba(14, 37, 5, 0.2);
    border-radius: 12px;
    background: white;
    color: var(--color-text);
    font-family: var(--font-body);
    font-size: var(--font-size-body);
    cursor: pointer;
    transition: all 0.3s ease;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%230E2505' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right var(--spacing-md) center;
    padding-right: calc(var(--spacing-md) + 30px);
}

.concert-filters__select:hover {
    border-color: var(--color-primary);
}

.concert-filters__select:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(14, 37, 5, 0.1);
}

/* Bouton réinitialiser */
.concert-filters__reset {
    padding: var(--spacing-md) var(--spacing-lg);
    background: var(--color-primary);
    color: white;
    border: none;
    border-radius: 12px;
    font-family: var(--font-body);
    font-size: var(--font-size-body);
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(14, 37, 5, 0.2);
}

.concert-filters__reset:hover {
    background: rgba(14, 37, 5, 0.85);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(14, 37, 5, 0.3);
}

.concert-filters__reset:active {
    transform: translateY(0);
}

/* Message aucun résultat */
.no-results {
    text-align: center;
    padding: var(--spacing-xxl);
    color: var(--color-text-light);
    font-family: var(--font-body);
    font-size: var(--font-size-body-large);
    font-style: italic;
}

.no-results p {
    margin: 0;
}

/* Titre principal de la page */
.saison-title {
    color: var(--color-primary);
    font-family: var(--font-heading);
    font-size: 2.5em;
    font-weight: normal;
    text-align: center;
    margin: var(--spacing-md) 0 var(--spacing-lg);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Titres de section */
.saison-section-title {
    color: var(--color-primary);
    font-family: var(--font-heading);
    font-size: var(--font-size-h2-mobile);
    font-weight: normal;
    text-align: center;
    margin: var(--spacing-xxl) 0 var(--spacing-xl);
    padding-bottom: var(--spacing-md);
    border-bottom: 0.1875rem solid var(--color-primary);
    position: relative;
    line-height: var(--line-height-tight);
}

.saison-section-title::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--color-primary);
}

.saison-section-title--past {
    color: var(--color-text-light);
    border-bottom-color: var(--color-text-light);
}

.saison-section-title--past::after {
    background: var(--color-text-light);
}

/* Disclaimer */
.saison-disclaimer {
    max-width: 800px;
    margin: var(--spacing-xxl) auto;
    padding: var(--spacing-md);
    background: rgba(14, 37, 5, 0.05);
    border-left: 4px solid var(--color-primary);
    color: var(--color-text-light);
    font-family: var(--font-body);
    font-size: 0.95em;
    line-height: 1.6;
    font-style: italic;
}

/* Section représentations passées */
.past-concerts-section {
    margin-top: var(--spacing-xxl);
}

/* Bouton toggle représentations passées */
.btn-toggle-past-concerts {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
    margin: var(--spacing-xxl) auto;
    padding: var(--spacing-md) var(--spacing-xl);
    background: var(--color-primary);
    color: white;
    border: none;
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 1.125rem;
    font-weight: normal;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(14, 37, 5, 0.2);
}

.btn-toggle-past-concerts:hover {
    background: rgba(14, 37, 5, 0.85);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(14, 37, 5, 0.3);
}

.btn-toggle-past-concerts:active {
    transform: translateY(0);
}

.btn-toggle-past-concerts .toggle-icon {
    transition: transform 0.3s ease;
}

.btn-toggle-past-concerts.active .toggle-icon {
    transform: rotate(180deg);
}

/* Container des concerts passés */
.past-concerts-container {
    overflow: hidden;
    animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Grille de concerts */
.concerts-grid {
    display: grid;
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
}

/* Carte de concert */
.concert-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.12);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
}

.concert-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.18);
}

/* Image du concert - Optimisée pour images carrées */
.concert-card__image {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
    border-radius: 0;
}

.concert-card__image::before {
    content: '';
    position: absolute;
    inset: 0;
    box-shadow: inset 0 0 30px rgba(0, 0, 0, 0.05);
    pointer-events: none;
    z-index: 1;
}

.concert-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
    display: block;
}

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

/* Contenu de la carte */
.concert-card__content {
    padding: var(--spacing-lg);
}

/* Titre du concert */
.concert-card__title {
    color: var(--color-primary);
    font-family: var(--font-heading);
    font-size: var(--font-size-h3-mobile);
    font-weight: normal;
    margin-bottom: var(--spacing-md);
    line-height: var(--line-height-tight);
}

/* Métadonnées (lieu et date) */
.concert-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
    padding-bottom: var(--spacing-md);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.concert-card__location,
.concert-card__date {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-text-light);
    font-family: var(--font-body);
    font-size: var(--font-size-body);
    font-style: italic;
    margin: 0;
}

.concert-card__location svg,
.concert-card__date svg {
    flex-shrink: 0;
    opacity: 0.7;
}

/* Description */
.concert-card__description {
    color: var(--color-text);
    font-family: var(--font-body);
    font-size: var(--font-size-body);
    line-height: var(--line-height-relaxed);
    margin-bottom: var(--spacing-md);
}

/* Lien */
.concert-card__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--color-primary);
    font-family: var(--font-body);
    font-size: 0.95em;
    font-weight: 500;
    text-decoration: none;
    padding: var(--spacing-sm) var(--spacing-lg);
    border: 2px solid var(--color-primary);
    border-radius: 25px;
    transition: all 0.3s ease;
}

.concert-card__link:hover {
    background: var(--color-primary);
    color: white;
    transform: translateX(5px);
}

.concert-card__link svg {
    transition: transform 0.3s ease;
}

.concert-card__link:hover svg {
    transform: translateX(3px);
}

/* Anciens styles (compatibilité) */
.saison {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--spacing-md);
}

/* Titres de section */
.saisonelementTitre {
    color: var(--color-primary);
    font-family: var(--font-heading);
    font-size: 2.5em;
    font-weight: normal;
    text-align: center;
    margin: var(--spacing-xl) 0 var(--spacing-lg);
    padding-bottom: var(--spacing-md);
    border-bottom: 2px solid var(--color-primary);
    position: relative;
}

.saisonelementTitre::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background: var(--color-primary);
}

.saisonelementTitre2 {
    color: var(--color-primary);
    font-family: var(--font-heading);
    font-size: 3em;
    font-weight: normal;
    text-align: center;
    margin: var(--spacing-lg) 0 var(--spacing-xl);
}

.saisonelementTexte {
    color: var(--color-text-light);
    font-family: var(--font-body);
    font-size: 1.1em;
    text-align: center;
    margin: var(--spacing-xl) auto;
    max-width: 800px;
    line-height: 1.6;
}

/* Cartes de concert - Mobile First */
.saisonelementTexteGauche,
.saisonelementTexteDroite {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    padding: var(--spacing-lg);
    margin: var(--spacing-lg) 0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.saisonelementTexteGauche:hover,
.saisonelementTexteDroite:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}


/* Titre du concert */
.saisontitre {
    color: var(--color-primary);
    font-family: var(--font-heading);
    font-size: 1.8em;
    font-weight: normal;
    text-align: center;
    margin-bottom: var(--spacing-sm);
    line-height: 1.3;
}

/* Lieu et date */
.saisonlieu,
.saisondate {
    color: var(--color-text-light);
    font-family: var(--font-body);
    text-align: center;
    font-style: italic;
    font-size: 1.1em;
    margin: var(--spacing-xs) 0;
}

.saisonlieu {
    font-weight: 500;
}

/* Lien */
.saisonlien {
    text-align: center;
    margin: var(--spacing-md) 0;
}

.saisonlien a {
    display: inline-block;
    color: var(--color-primary);
    font-family: var(--font-body);
    font-size: 1em;
    text-decoration: none;
    padding: var(--spacing-sm) var(--spacing-lg);
    border: 2px solid var(--color-primary);
    border-radius: 25px;
    transition: all 0.3s ease;
}

.saisonlien a:hover {
    background: var(--color-primary);
    color: white;
    transform: scale(1.05);
}

/* Description */
.saisondescriptiondroite,
.saisondescriptiongauche {
    color: var(--color-text);
    font-family: var(--font-body);
    text-align: justify;
    font-size: 1.05em;
    line-height: 1.7;
    margin-top: var(--spacing-md);
    padding-top: var(--spacing-md);
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

/* Images de concert - masquées sur mobile */
.saisonconcertImage {
    display: none;
}

.saisonconcertImage img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ============================================
   DESKTOP STYLES (min-width: 769px)
   ============================================ */
@media (min-width: 769px) {
    /* Saison desktop - Mise en page en grille avec images */
    .saison {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: var(--spacing-xl);
        max-width: 1400px;
        padding: var(--spacing-xl);
    }

    .saisonelementTitre,
    .saisonelementTitre2,
    .saisonelementTexte {
        grid-column: 1 / -1;
    }

    .saisonelementTitre {
        font-size: 2.5em;
        margin: var(--spacing-lg) 0;
    }

    .saisonelementTitre2 {
        font-size: 3.5em;
        margin-top: var(--spacing-xxl);
    }

    .saisonelementTexte {
        font-size: 1.2em;
    }

    /* Concert cards - Layout alterné avec images */
    .saisonelementTexteGauche,
    .saisonelementTexteDroite {
        grid-column: span 2;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: var(--spacing-xl);
        align-items: center;
        padding: var(--spacing-xl);
    }

    /* Contenu texte des concerts */
    .saisonelementTexteGauche > div,
    .saisonelementTexteDroite > div {
        order: 2;
    }


    .saisontitre {
        font-size: 2em;
        text-align: left;
    }

    .saisondate,
    .saisonlieu {
        font-size: 1.1em;
        text-align: left;
    }

    .saisonlien {
        text-align: left;
        margin: var(--spacing-md) 0;
    }

    .saisondescriptiondroite,
    .saisondescriptiongauche {
        font-size: 1.1em;
        text-align: justify;
        border-top: none;
    }

    /* NOUVEAU DESIGN SAISON - DESKTOP */
    .saison-hero {
        height: 80vh;
        max-height: 700px;
    }

    .saison-hero__title {
        font-size: var(--font-size-h1-desktop);
    }

    .saison-hero__subtitle {
        font-size: var(--font-size-h2-desktop);
    }

    .saison-title {
        font-size: 3.5em;
        margin: var(--spacing-lg) 0 var(--spacing-xl);
    }

    .saison-section-title {
        font-size: var(--font-size-h2-desktop);
        margin: var(--spacing-xxl) 0 var(--spacing-xl);
    }

    .saison-container {
        max-width: 1100px;
        padding: var(--spacing-xl);
    }

    .concerts-grid {
        display: flex;
        flex-direction: column;
        gap: var(--spacing-xxl);
    }

    .concert-card {
        grid-template-columns: 400px 1fr;
        gap: 0;
        max-width: 100%;
        margin: 0;
        overflow: visible;
        border-radius: 0;
        align-items: stretch;
        background: transparent;
        box-shadow: none;
    }

    .concert-card--reverse {
        grid-template-columns: 1fr 400px;
    }

    .concert-card:hover {
        transform: none;
        box-shadow: none;
    }

    .concert-card--reverse .concert-card__image {
        order: 2;
        border-radius: 20px;
    }

    .concert-card__image {
        width: 400px;
        height: 400px;
        aspect-ratio: 1 / 1;
        border-radius: 20px;
        flex-shrink: 0;
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
        z-index: 2;
        position: relative;
    }

    .concert-card__content {
        background: white;
        border-radius: 20px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        margin-left: -15px;
        margin-top: 20px;
        z-index: 1;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .concert-card--reverse .concert-card__content {
        margin-left: 0;
        margin-right: -15px;
        margin-top: 20px;
    }

    .concert-card:hover .concert-card__content {
        transform: translateY(-4px);
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    }

    .concert-card__title {
        font-size: var(--font-size-h3-desktop);
    }

    .concert-card__content {
        padding: var(--spacing-xl);
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .concert-card__description {
        font-size: var(--font-size-body-large);
    }

    /* Filtres - Desktop */
    .concert-filters {
        padding: var(--spacing-xl);
    }

    .concert-filters__title {
        font-size: var(--font-size-h3-desktop);
    }

    .concert-filters__selects {
        flex-direction: row;
        gap: var(--spacing-lg);
    }

    .concert-filters__select {
        flex: 1;
    }

    /* Images de concert - Visible sur desktop */
    .saisonconcertImage {
        display: block;
        border-radius: 16px;
        overflow: hidden;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        height: 100%;
        min-height: 400px;
    }

    .saisonconcertImage:hover {
        transform: scale(1.02);
        box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
    }

    .saisonconcertImage img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    /* Alternance gauche-droite des images */
    .saisonelementTexteGauche {
        grid-template-columns: 1fr 1fr;
    }

    .saisonelementTexteDroite {
        grid-template-columns: 1fr 1fr;
    }

    /* Image à gauche, texte à droite (index pair) */
    .saisonelementTexteDroite + .saisonconcertImage {
        order: 1;
    }

    /* Image à droite, texte à gauche (index impair) */
    .saisonelementTexteGauche + .saisonconcertImage {
        order: 3;
    }
}

/* ============================================
   RESPONSIVE - MOBILE (max-width: 1200px)
   ============================================ */
@media (max-width: 1200px) {
    /* Réduction de l'écart hero/filtres */
    .saison-container {
        padding-top: var(--spacing-sm) !important;
    }

    /* Filtres - Tailles normales */
    .concert-filters__toggle {
        font-size: 1.25rem !important;
        padding: 1rem 1.5rem !important;
    }

    .concert-filters__toggle .toggle-icon {
        width: 24px;
        height: 24px;
    }

    .concert-filters__title {
        font-size: 1.25rem !important;
    }

    .concert-filters__checkbox label {
        font-size: 1.125rem !important;
    }

    .concert-filters__select {
        font-size: 1.125rem !important;
    }

    .concert-filters__reset {
        font-size: 1.125rem !important;
    }

    .concert-card__description {
        font-size: 1.125rem;
    }

    .concert-card__location,
    .concert-card__date {
        font-size: 1.125rem;
    }

    /* Icônes lieu et date taille normale */
    .concert-card__location svg,
    .concert-card__date svg {
        width: 20px;
        height: 20px;
    }

    .concert-card__title {
        font-size: 1.625rem;
    }

    .concert-card__link {
        font-size: 1.125rem !important;
        padding: 1rem 1.5rem !important;
    }

    /* Texte "Aucun résultat" et bouton passées */
    .no-results {
        font-size: 1.25rem !important;
    }

    .btn-toggle-past-concerts {
        font-size: 1.125rem !important;
        padding: 1rem 1.5rem !important;
    }

    /* Disclaimer - Texte taille normale */
    .saison-disclaimer {
        font-size: 1rem !important;
    }

    /* Concert cards - Image au-dessus, pleine largeur sur mobile/tablette */
    .concert-card,
    .concert-card--reverse {
        grid-template-columns: 1fr !important;
        margin: 0 !important;
        max-width: 100% !important;
        width: 100% !important;
        display: flex;
        flex-direction: column !important;
        border-radius: 0 !important;
    }

    /* Permettre au JS de masquer les cartes filtrées */
    .concert-card.hidden,
    .concert-card--reverse.hidden {
        display: none !important;
    }

    .concert-card__image,
    .concert-card--reverse .concert-card__image {
        width: 100%;
        height: auto;
        order: 1 !important;
        border-radius: 0 !important;
    }

    .concert-card__content,
    .concert-card--reverse .concert-card__content {
        order: 2 !important;
        margin: 0 !important;
        padding: 1.5rem !important;
        width: 100% !important;
    }

    /* Le descriptif prend toute la largeur */
    .concert-card__description {
        width: 100% !important;
        padding: 0 !important;
        margin: 0 0 var(--spacing-md) 0 !important;
    }

    /* Diminuer la taille des titres de sections "Prochaines représentations" et "Représentations passées" */
    .saison-section-title {
        font-size: 1.625rem !important; /* Taille réduite (26px) */
    }
}


