/* CSS Combiné - Page: victoires26 - 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/_victoires26.css === */
/* ===========================================
   VICTOIRES DE LA MUSIQUE 2026 PAGE
   =========================================== */

/* ============================================
   HERO SECTION - Même style que Contact
   ============================================ */
.victoires-hero {
    position: relative;
    height: 70vh;
    min-height: 400px;
    max-height: 600px;
    overflow: hidden;
    margin-bottom: 0;
}

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

.victoires-hero__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.victoires-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);
}

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

.victoires-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);
}

.victoires-hero__title a {
    color: inherit;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.victoires-hero__title a:hover {
    opacity: 0.8;
    text-decoration: underline;
}

.victoires-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);
}

/* ============================================
   PAGE CONTAINER
   ============================================ */
.victoires-page {
    background: linear-gradient(135deg, #f5f7fa 0%, #e8ecf0 100%);
}

.victoires-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: var(--spacing-xl) var(--spacing-lg);
}

/* ============================================
   INFO CARDS - En haut de page
   ============================================ */
.victoires-info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-xxl);
    padding: var(--spacing-lg);
    background: white;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.victoires-info-card {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    padding: var(--spacing-md);
    border-radius: 12px;
    transition: background 0.3s ease;
}

.victoires-info-card:hover {
    background: rgba(14, 37, 5, 0.05);
}

.victoires-info-card__icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--color-primary) 0%, rgba(14, 37, 5, 0.8) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.victoires-info-card__icon svg {
    stroke: white;
    width: 24px;
    height: 24px;
}

.victoires-info-card__content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.victoires-info-card__label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-text-light);
    font-weight: 500;
}

.victoires-info-card__value {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-text-dark);
}

/* Carte Diffusion avec logos */
.victoires-info-card--diffusion {
    flex-direction: column;
    text-align: center;
}

.victoires-info-card__logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-xs);
}

.victoires-info-card__logo {
    height: 40px;
    width: auto;
    object-fit: contain;
}

/* ============================================
   HERO LOGOS - Bas à droite
   ============================================ */
.victoires-hero__logos {
    position: absolute;
    bottom: var(--spacing-lg);
    right: var(--spacing-lg);
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    background: rgba(255, 255, 255, 0.9);
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.victoires-hero__logo {
    height: 35px;
    width: auto;
    object-fit: contain;
}

/* ============================================
   INTRO SECTION
   ============================================ */
.victoires-intro {
    background: linear-gradient(135deg, rgba(180, 142, 63, 0.08) 0%, rgba(180, 142, 63, 0.15) 100%);
    border-radius: 16px;
    padding: var(--spacing-lg) var(--spacing-xl);
    margin-bottom: var(--spacing-lg);
    text-align: center;
    border: 1px solid rgba(180, 142, 63, 0.25);
}

.victoires-intro__text {
    font-family: var(--font-body);
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--color-text);
    margin: 0;
}

.victoires-intro__text a {
    color: var(--color-primary);
    font-weight: 600;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.victoires-intro__text a:hover {
    color: var(--color-gold, #B48E3F);
}

/* ============================================
   SECTIONS - Contenu principal
   ============================================ */
.victoires-section {
    background: white;
    border-radius: 16px;
    padding: var(--spacing-xl);
    margin-bottom: var(--spacing-lg);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.victoires-section--alt {
    background: linear-gradient(135deg, rgba(14, 37, 5, 0.03) 0%, rgba(14, 37, 5, 0.06) 100%);
}

.victoires-section--highlight {
    background: linear-gradient(135deg, var(--color-primary) 0%, rgba(14, 37, 5, 0.9) 100%);
    color: white;
    text-align: center;
}

.victoires-section--highlight .victoires-section__icon {
    margin-bottom: var(--spacing-md);
}

.victoires-section--highlight .victoires-section__icon svg {
    stroke: var(--color-gold, #B48E3F);
    width: 48px;
    height: 48px;
}

.victoires-section__title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: normal;
    color: var(--color-primary);
    margin: 0 0 var(--spacing-md);
    padding-bottom: var(--spacing-sm);
    border-bottom: 2px solid rgba(14, 37, 5, 0.1);
}

.victoires-section--highlight .victoires-section__title {
    color: white;
    border-bottom-color: rgba(255, 255, 255, 0.2);
}

.victoires-section__content {
    font-family: var(--font-body);
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--color-text);
}

.victoires-section--highlight .victoires-section__content {
    color: rgba(255, 255, 255, 0.95);
}

.victoires-section__content p {
    margin: 0 0 var(--spacing-md);
}

.victoires-section__content p:last-child {
    margin-bottom: 0;
}

.victoires-section__content strong {
    color: var(--color-primary);
    font-weight: 600;
}

.victoires-section--highlight .victoires-section__content strong {
    color: var(--color-gold, #B48E3F);
}

/* ============================================
   SECTION CEREMONY - Style spécial
   ============================================ */
.victoires-section--ceremony {
    text-align: center;
    background: linear-gradient(135deg, #faf8f5 0%, #f5f0e8 100%);
    border: 2px solid rgba(180, 142, 63, 0.2);
}

.victoires-section--ceremony .victoires-section__title {
    display: inline-block;
    border-bottom: none;
    position: relative;
}

.victoires-section--ceremony .victoires-section__title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--color-gold, #B48E3F), transparent);
}

/* ============================================
   NOMINEES SECTION
   ============================================ */
.victoires-nominees {
    background: white;
    border-radius: 16px;
    padding: var(--spacing-xl);
    margin-bottom: var(--spacing-lg);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    text-align: center;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.victoires-nominees__title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: normal;
    color: var(--color-primary);
    margin: 0 0 var(--spacing-xl);
    position: relative;
    display: inline-block;
}

.victoires-nominees__title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--color-gold, #B48E3F), transparent);
}

.victoires-nominees__grid {
    display: flex;
    justify-content: center;
    gap: var(--spacing-md);
    flex-wrap: nowrap;
}

.victoires-nominee-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    flex: 1;
    max-width: 300px;
    min-width: 200px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 3px solid var(--color-gold, #B48E3F);
    display: flex;
    flex-direction: column;
}

.victoires-nominee-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.victoires-nominee-card__image {
    position: relative;
    height: 350px;
    overflow: hidden;
}

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

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

.victoires-nominee-card__content {
    padding: var(--spacing-lg);
    background: linear-gradient(135deg, var(--color-primary) 0%, rgba(14, 37, 5, 0.9) 100%);
    color: white;
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.victoires-nominee-card__name {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: normal;
    margin: 0 0 var(--spacing-xs);
    letter-spacing: 1px;
}

.victoires-nominee-card__voice {
    font-size: 0.85rem;
    color: var(--color-gold, #B48E3F);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
}

/* ============================================
   CONCERT CARD SECTION
   ============================================ */
.victoires-section--concert {
    background: transparent;
    box-shadow: none;
    padding: 0;
}

.victoires-concert-card {
    background: linear-gradient(135deg, #faf8f5 0%, #f5f0e8 100%);
    border-radius: 16px;
    padding: var(--spacing-xxl) var(--spacing-xl);
    text-align: center;
    border: 2px solid rgba(180, 142, 63, 0.3);
    position: relative;
}

.victoires-concert-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-gold, #B48E3F), #d4a855, var(--color-gold, #B48E3F));
    border-radius: 16px 16px 0 0;
}

.victoires-concert-card__icon {
    margin-bottom: var(--spacing-md);
}

.victoires-concert-card__icon svg {
    stroke: var(--color-gold, #B48E3F);
    width: 48px;
    height: 48px;
}

.victoires-concert-card__title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: normal;
    color: var(--color-primary);
    margin: 0 0 var(--spacing-lg);
}

.victoires-concert-card__content {
    font-family: var(--font-body);
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--color-text);
    max-width: 800px;
    margin: 0 auto;
}

.victoires-concert-card__content strong {
    color: var(--color-primary);
}

/* ============================================
   CONCLUSION
   ============================================ */
.victoires-conclusion {
    background: linear-gradient(135deg, var(--color-primary) 0%, rgba(14, 37, 5, 0.9) 100%);
    border-radius: 16px;
    padding: var(--spacing-xxl) var(--spacing-xl);
    text-align: center;
    margin-bottom: 0;
}

.victoires-conclusion__content {
    max-width: 800px;
    margin: 0 auto;
    font-family: var(--font-body);
    font-size: 1.1rem;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.95);
}

.victoires-conclusion__content strong {
    color: var(--color-gold, #B48E3F);
}

/* ============================================
   RESPONSIVE - DESKTOP
   ============================================ */
@media screen and (min-width: 1201px) {
    .victoires-hero {
        height: 80vh;
        max-height: 700px;
    }

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

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

/* ============================================
   RESPONSIVE - MOBILE
   ============================================ */
@media screen and (max-width: 1200px) {
    .victoires-hero__title {
        font-size: 3rem !important;
    }

    .victoires-hero__subtitle {
        font-size: 1.5rem !important;
    }

    .victoires-container {
        padding: var(--spacing-lg) var(--spacing-md);
    }

    .victoires-info-cards {
        grid-template-columns: 1fr 1fr;
        padding: var(--spacing-md);
        gap: var(--spacing-sm);
    }

    .victoires-info-card {
        flex-direction: column;
        text-align: center;
        padding: var(--spacing-sm);
    }

    .victoires-info-card__icon {
        width: 40px;
        height: 40px;
    }

    .victoires-info-card__icon svg {
        width: 20px;
        height: 20px;
    }

    .victoires-info-card__value {
        font-size: 0.85rem;
    }

    .victoires-info-card__logo {
        height: 32px;
    }

    .victoires-info-card__logos {
        gap: var(--spacing-sm);
    }

    .victoires-hero__logos {
        bottom: var(--spacing-md);
        right: var(--spacing-md);
        gap: var(--spacing-sm);
        padding: var(--spacing-xs) var(--spacing-sm);
    }

    .victoires-hero__logo {
        height: 25px;
    }

    .victoires-section {
        padding: var(--spacing-lg);
        margin-bottom: var(--spacing-md);
    }

    .victoires-section__title {
        font-size: 1.3rem;
    }

    .victoires-section__content {
        font-size: 1rem;
    }

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

    .victoires-nominees__grid {
        flex-wrap: wrap;
    }

    .victoires-nominee-card {
        flex: 0 0 auto;
        width: 280px;
    }

    .victoires-nominee-card__image {
        height: 280px;
    }

    .victoires-concert-card {
        padding: var(--spacing-xl) var(--spacing-md);
    }

    .victoires-conclusion {
        padding: var(--spacing-xl) var(--spacing-lg);
    }
}

@media screen and (max-width: 480px) {
    .victoires-info-cards {
        grid-template-columns: 1fr;
    }

    .victoires-info-card {
        flex-direction: row;
        text-align: left;
    }
}

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


