/* CSS Combiné - Page: accueil - 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/_accueil.css === */
/* ============================================
   PAGE D'ACCUEIL
   Hero full-screen avec animations JavaScript
   ============================================ */

/* ----- HERO CONTAINER ----- */
.home-hero {
    position: relative;
    min-height: 100vh;
    display: block;
    grid-template-columns: none;
    column-gap: 0;
    row-gap: 0;
}

/* ----- SECTION TITRE (Premier écran) ----- */
.home-hero__title-section {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-bottom: 0;
    padding-top: 20vh;
}

/* ----- CONTENEUR DE L'IMAGE DE FOND ----- */
.home-hero__images {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 1;
    transition: opacity 0.3s ease-out;
    pointer-events: none;
}

/* Image unique plein écran */
.home-hero__image {
    width: 100%;
    height: 100%;
    overflow: hidden;
    opacity: 0;
    animation: imageAppear 1.5s ease-out forwards;
}

.home-hero__image--single {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

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

/* ----- OVERLAY GRADIENT ----- */
.home-hero__gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.3) 0%,
        rgba(0, 0, 0, 0.1) 50%,
        rgba(0, 0, 0, 0.4) 100%
    );
    z-index: 2;
    opacity: 0;
    animation: overlayAppear 1s ease-out 0.5s forwards;
}

/* ----- TITRE PRINCIPAL (JavaScript contrôle .hidden) ----- */
.home-hero__title-wrapper {
    position: relative;
    z-index: 3;
    text-align: center;
    width: 90%;
    max-width: 1200px;
    pointer-events: none;
    opacity: 1;
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

/* État caché (appliqué par JavaScript au scroll) */
.home-hero__title-wrapper.hidden {
    opacity: 0;
    transform: translateY(-50px);
}

.home-hero__main-title {
    font-family: var(--font-title);
    font-size: clamp(3rem, 10vw, 8rem);
    font-weight: 700;
    color: white;
    margin: 0;
    letter-spacing: -0.02em;
    text-shadow: none;
    opacity: 0;
    animation: titleAppear 1.5s ease-out 1.2s forwards;
    line-height: 1.1;
}

.home-hero__subtitle {
    font-family: var(--font-subtitle);
    font-size: clamp(1.5rem, 4vw, 3rem);
    font-weight: 300;
    color: rgba(255, 255, 255, 0.95);
    margin-top: -1rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.7);
    opacity: 0;
    transform: translateX(-100px);
    animation: fadeInFromLeft 1.5s ease-out 2s forwards;
}

/* ----- SCROLL INDICATOR (JavaScript contrôle .hidden) ----- */
.home-hero__scroll-indicator {
    position: absolute;
    bottom: 3vh;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    color: white;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    opacity: 0;
    animation: fadeIn 2s ease-out 2s forwards;
    transition: opacity 0.3s ease;
}

/* État caché (appliqué par JavaScript au scroll) */
.home-hero__scroll-indicator.hidden {
    opacity: 0 !important;
    pointer-events: none;
    transform: translateX(-50%) translateY(20px);
}

.scroll-mouse {
    width: 26px;
    height: 40px;
    border: 2px solid white;
    border-radius: 20px;
    position: relative;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.3);
}

.scroll-wheel {
    width: 4px;
    height: 8px;
    background: white;
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 1.5s ease-in-out infinite;
}

/* ----- SECTION MINI BIO (JavaScript contrôle .visible) ----- */
.home-hero__bio-section {
    position: relative;
    width: 100%;
    min-height: 150vh;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    z-index: 4;
    padding-top: 2vh;
    padding-left: 0;
    padding-right: 0;
    padding-bottom: 2vh;
    opacity: 0;
    transition: opacity 0.6s ease-out;
    background: transparent;
}

/* État visible (appliqué par JavaScript au scroll) */
.home-hero__bio-section.visible {
    opacity: 1;
}

.home-hero__bio-content {
    max-width: 1200px;
    width: calc(100% - 2.5rem);
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    padding: clamp(2.5rem, 6vw, 4rem) clamp(2rem, 5vw, 4rem);
    border-radius: 30px;
    box-shadow: 0 20px 80px rgba(0, 0, 0, 0.3);
    text-align: center;
    position: relative;
    transform: translateY(40px);
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Effet sticky quand la section devient visible */
.home-hero__bio-section.visible .home-hero__bio-content {
    transform: translateY(0);
    position: sticky;
    top: 15vh;
}

.home-hero__bio-title {
    font-family: var(--font-title);
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    color: var(--color-primary);
    margin: 0 0 var(--spacing-md);
    text-align: center;
}

.home-hero__bio-line {
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--color-primary), #1a4d0d);
    margin: 0 auto var(--spacing-lg);
    border-radius: 2px;
}

.home-hero__bio-text {
    font-size: clamp(1.125rem, 2.5vw, 1.5rem);
    line-height: 1.8;
    color: var(--color-text);
    margin: 0 0 var(--spacing-xl);
    font-weight: 300;
}

.home-hero__bio-link {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: 1.25rem 2.5rem;
    background: var(--color-primary);
    color: white;
    text-decoration: none;
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: 12px;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 20px rgba(14, 37, 5, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.home-hero__bio-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: white;
    border-radius: 10px;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
    z-index: 0;
}

.home-hero__bio-link:hover::before {
    transform: scaleX(1);
}

.home-hero__bio-link:hover {
    color: var(--color-primary);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(14, 37, 5, 0.35);
}

.home-hero__bio-link span {
    position: relative;
    z-index: 1;
    color: white;
}

.home-hero__bio-link svg {
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
    stroke: white;
}

.home-hero__bio-link:hover span {
    color: var(--color-primary);
}

.home-hero__bio-link:hover svg {
    stroke: var(--color-primary);
    transform: translateX(5px);
}


/* ============================================
   RESPONSIVE - MOBILE
   ============================================ */
@media (max-width: 1200px) {
    /* Image unique : plein écran sur mobile */
    .home-hero__image--single {
        width: 100% !important;
        height: 100vh !important;
    }

    .home-hero__image--single img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        object-position: center top !important;
    }

    /* Titres adaptés pour mobile */
    .home-hero__main-title {
        font-size: clamp(3rem, 9vw, 4.5rem) !important;
        margin-bottom: 1rem !important;
    }

    .home-hero__subtitle {
        font-size: clamp(1.5rem, 4vw, 2.5rem) !important;
        margin-bottom: 10px !important;
        margin-top: 0.5rem !important;
    }

    /* Scroll indicator positionné sous le sous-titre */
    .home-hero__scroll-indicator {
        position: static !important;
        margin-top: 30px !important;
        opacity: 1 !important;
        transform: none !important;
        left: auto !important;
        bottom: auto !important;
        top: auto !important;
    }

    .home-hero__scroll-indicator.hidden {
        opacity: 1 !important;
        transform: none !important;
        pointer-events: auto !important;
    }

    /* Logo scroll divisé par 3 sur mobile */
    .scroll-mouse {
        width: 15px !important;
        height: 22px !important;
        border-width: 0.67px !important;
        border-radius: 6.67px !important;
    }

    .scroll-wheel {
        width: 1.5px !important;
        height: 3px !important;
        border-radius: 0.67px !important;
        top: 2.67px !important;
    }

    .home-hero__scroll-indicator span {
        font-size: 0.9rem !important;
        letter-spacing: 0.1em !important;
    }

    .home-hero__title-wrapper {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        width: 100% !important;
    }

    .home-hero__title-section {
        align-items: flex-start !important;
        padding-top: 0vh !important;
        margin-top: -7vh !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
    }

    .home-video-section {
        padding: 0;
        margin-bottom: 5vh;
    }

    .home-video-section .galerie-modern__video-wrapper {
        min-height: 100px;
    }

    /* Réduire fortement la bordure entre le texte et le bord de l'écran */
    .home-video-section .galerie-modern__video-info {
        padding: 0.5rem 0.5rem 1rem 0.5rem !important;
    }

    /* Section vidéo - Pleine largeur sur mobile */
    .home-video-section__content {
        width: 100% !important;
        margin: 0 !important;
        border-radius: 0 !important;
        padding: 1.5rem !important;
    }

    .home-hero__bio-section {
        min-height: 100vh !important;
        padding-top: 0 !important;
        padding-bottom: 0 !important;
        margin-bottom: 10vh !important;
    }

    /* Section mini-bio - Pleine largeur sur mobile */
    .home-hero__bio-content {
        width: 100% !important;
        margin: 0 !important;
        border-radius: 0 !important;
        padding: 1.5rem !important;
    }

    .home-featured {
        padding-top: 0 !important;
        margin-top: 0 !important;
    }

    .home-hero__bio-content {
        padding: 2rem 1.5rem;
    }

    .home-hero__bio-text {
        font-size: 1.125rem;
    }

    .home-hero__bio-link {
        padding: 1rem 2rem;
        font-size: 1.125rem;
    }

    /* Boutons CTA mobile - Tailles normales */
    .home-cta-btn {
        padding: 1.125rem 2rem !important;
        font-size: 1.125rem !important;
    }

    .home-cta-btn--large {
        padding: 1.25rem 2.5rem !important;
        font-size: 1.125rem !important;
    }

    .home-cta-btn svg {
        width: 1.25rem !important;
        height: 1.25rem !important;
    }

    /* Section CTA "Restons en contact" - Description taille normale */
    .home-cta-section__description {
        font-size: 1.125rem !important;
    }

    /* Galerie mobile - 1 colonne, seulement 4 images sur mobile */
    .home-featured__gallery {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }

    /* Masquer les 4 dernières images sur mobile */
    .home-gallery-item:nth-child(n+5) {
        display: none !important;
    }

    /* Section CTA mobile */
    .home-cta-section {
        padding: 3rem var(--spacing-md);
    }

    .home-cta-section__buttons {
        flex-direction: column;
    }

    .home-cta-btn {
        width: 100%;
        justify-content: center;
    }
}

/* ============================================
   RESPONSIVE - PETIT ÉCRAN MOBILE (< 480px)
   ============================================ */
@media (max-width: 480px) {
    .home-hero__scroll-indicator {
        bottom: 15vh;
        font-size: 0.85rem;
    }

    .scroll-mouse {
        width: 24px;
        height: 40px;
    }
}

/* ============================================
   RESPONSIVE - DESKTOP
   ============================================ */
@media (min-width: 769px) {
    /* Réduire l'espace entre le texte de la mini-bio et son cadre */
    .home-hero__bio-content {
        padding: 1.5rem !important;
        max-width: 1200px;
    }

    /* Réduire l'écart entre titre et texte */
    .home-hero__bio-title {
        margin: 0 !important;
        margin-bottom: 0.5rem !important;
    }

    /* Réduire l'écart entre texte et bouton */
    .home-hero__bio-text {
        margin: 0 !important;
        margin-bottom: 0.5rem !important;
    }
}

/* ============================================
   RESPONSIVE - DESKTOP LARGE (1201px+)
   ============================================ */
@media (min-width: 1201px) {
    /* Titres 3x plus grands puis diminués de 15% */
    .home-hero__main-title {
        font-size: 7rem !important; /* 11.25rem * 0.85 = 9.5625rem */
    }

    .home-hero__subtitle {
        font-size: 4.75rem !important; /* 9rem * 0.85 = 7.65rem */
    }

    /* Images en pleine hauteur */
    .home-hero__images {
        height: 100vh;
        min-height: 100vh;
    }

    .home-hero__image {
        height: 100vh;
    }

    .home-hero__image img {
        width: 100%;
        height: 100vh;
        min-height: 100vh;
        object-fit: cover;
        object-position: top;
    }

    /* Titre et sous-titre centrés */
    .home-hero__title-section {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: 100vh !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        z-index: 3 !important;
        pointer-events: none !important;
    }

    .home-hero__title-wrapper {
        position: relative !important;
        text-align: center !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 0 !important;
        max-width: 90% !important;
        width: auto !important;
        padding: 0 !important;
        transform: none !important;
        left: auto !important;
        top: auto !important;
    }


        /* Bandeau victoires positionné juste au-dessus du scroll indicator */
.victoires-banner {
    display: flex;
    bottom: 0 !important;
    margin-top: 25rem !important;
    padding: 1rem 2rem;
    }


    .home-hero__main-title {
        text-align: center !important;
        width: 100% !important;
        margin: 0 auto !important;
    }

    .home-hero__subtitle {
        text-align: center !important;
        width: 100% !important;
        margin: 0 auto !important;
        margin-top: -1rem !important;
    }

    /* Mini Bio Section - Après la vidéo */
    .home-hero__bio-section {
        position: relative !important;
        z-index: 2 !important;
        padding-top: 20vh !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
        margin-top: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        display: flex !important;
        align-items: flex-start !important;
        justify-content: center !important;
        width: 100% !important;
        max-width: 100% !important;
    }

    .home-hero__bio-content {
        position: relative !important;
        margin-left: 2rem !important;
        margin-right: 2rem !important;
        width: calc(100% - 4rem) !important;
        max-width: 1200px !important;
        padding: 1.5rem !important;
    }

    /* Réduire l'écart entre titre et texte */
    .home-hero__bio-title {
        margin: 0 !important;
        margin-bottom: 0.5rem !important;
    }

    /* Réduire l'écart entre texte et bouton + marges latérales */
    .home-hero__bio-text {
        margin: 0 !important;
        margin-bottom: 0.5rem !important;
        padding-left: 6rem !important;
        padding-right: 6rem !important;
        font-size: 1.25rem !important;
    }

    .home-hero__bio-section.visible .home-hero__bio-content {
        position: sticky !important;
        top: 15vh !important;
    }

    /* Section Vidéo - Positionnée après le premier écran */
    .home-video-section {
        position: relative !important;
        z-index: 4 !important;
        padding-top: 20vh !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
        margin-top: 100vh !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        display: flex !important;
        align-items: flex-start !important;
        justify-content: center !important;
        width: 100% !important;
        max-width: 100% !important;
    }

    .home-video-section__content {
        position: relative !important;
        margin-left: 2rem !important;
        margin-right: 2rem !important;
        width: calc(100% - 4rem) !important;
        max-width: 1200px !important;
    }

    .home-video-section.visible .home-video-section__content {
        position: sticky !important;
        top: 15vh !important;
    }
}

/* ============================================
   SECTION VIDÉO (SÉGUEDILLE) - Dans le hero
   ============================================ */
.home-video-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    z-index: 4;
    padding-top: 2vh;
    padding-left: 0;
    padding-right: 0;
    padding-bottom: 2vh;
    opacity: 0;
    transition: opacity 0.6s ease-out;
    background: transparent;
}

/* État visible (appliqué par JavaScript au scroll) */
.home-video-section.visible {
    opacity: 1;
}

.home-video-section__content {
    max-width: 1200px;
    width: calc(100% - 2.5rem);
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    padding: clamp(2.5rem, 6vw, 4rem) clamp(2rem, 5vw, 4rem);
    border-radius: 30px;
    box-shadow: 0 20px 80px rgba(0, 0, 0, 0.3);
    position: relative;
    transform: translateY(40px);
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.home-video-section__header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.home-video-section__title {
    font-family: var(--font-title);
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    color: var(--color-primary);
    margin: 0 0 var(--spacing-md);
}

.home-video-section__line {
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--color-primary), #1a4d0d);
    margin: 0 auto var(--spacing-lg);
    border-radius: 2px;
}

/* Effet sticky quand la section devient visible */
.home-video-section.visible .home-video-section__content {
    transform: translateY(0);
    position: sticky;
    top: 15vh;
}

/* Réutilise les styles de la galerie pour cohérence */
.home-video-section .galerie-modern__video-card {
    background: transparent;
    border-radius: 0;
    overflow: hidden;
    box-shadow: none;
    transition: all 0.3s ease;
}

.home-video-section .galerie-modern__video-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #000;
    min-height: 400px;
}

.home-video-section .galerie-modern__video-wrapper video,
.home-video-section .galerie-modern__video-wrapper iframe {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border: none;
}

.home-video-section .galerie-modern__video-info {
    padding: 20px clamp(2rem, 5vw, 4rem);
    text-align: center;
}

.home-video-section .galerie-modern__video-title {
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.6;
}


/* ============================================
   SECTION FEATURED GALLERY
   ============================================ */
.home-featured {
    padding: 0 var(--spacing-md);
    background: white;
    position: relative;
    z-index: 5;
}

/* Forcer le masquage des images fixes dans les sections suivantes */
.home-featured ~ *,
.home-cta-section,
footer {
    position: relative;
    z-index: 6;
    background: white;
}

/* Réduction de l'écart pour desktop */
@media (min-width: 769px) {
    .home-featured {
        padding-top: clamp(2rem, 5vw, 4rem);
    }

    /* Augmenter l'espace autour de la section CTA pour centrer le contenu */
    .home-cta-section {
        padding: 15vh var(--spacing-md) 20vh;
        min-height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

.home-featured__header {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.home-featured__title {
    font-family: var(--font-title);
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    color: var(--color-primary);
    margin: 0 0 var(--spacing-md);
}

.home-featured__line {
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--color-primary), #1a4d0d);
    margin: 0 auto;
    border-radius: 2px;
}

/* ============================================
   MOSAÏQUE DE PHOTOS - DESKTOP
   Structure :
   ┌───────────┬─────┐
   │           │  2  │
   │     1     ├─────┤
   │           │  3  │
   ├─────┬─────┼─────┤
   │  4  │  5  │  6  │
   └─────┴─────┴─────┘
   ============================================ */
.home-mosaic {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    /* Col 1+2 = pour photo 1, Col 3 = pour photos 2 et 6 */
    grid-template-columns: 1fr 1fr 1fr;
    /* Hauteurs automatiques basées sur le contenu */
    grid-template-rows: auto auto;
    gap: 15px;
    padding: 0 var(--spacing-md);
}


.home-mosaic__item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.home-mosaic__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.home-mosaic__item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

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

/* Position 1 - Grande image gauche (2 colonnes, 2 lignes) - 800x900 -> 9:10 */
.home-mosaic__item--1 {
    grid-column: 1 / 3;
    grid-row: 1 / 3;
    aspect-ratio: 8 / 9;
}

/* Position 2 - Petite en haut à droite - 500x400 -> 5:4 */
.home-mosaic__item--2 {
    grid-column: 3;
    grid-row: 1;
    aspect-ratio: 4 / 4.5;
}


/* Position 4 - En bas à gauche - 400x450 -> 9:10 */
.home-mosaic__item--4 {
    grid-column: 1;
    grid-row: 3;
    aspect-ratio: 1 / 1;
}

/* Position 5 - En bas au centre - 400x450 -> 9:10 */
.home-mosaic__item--5 {
    grid-column: 2;
    grid-row: 3;
    aspect-ratio: 1 / 1;
}

/* Position 6 - En bas à droite (occupe les lignes 2 et 3) - 500x900 -> 5:9 */
.home-mosaic__item--6 {
    grid-column: 3;
    grid-row: 2 / 4;
    aspect-ratio: 4 / 8.7;
}

/* Responsive - Tablette */
@media (max-width: 1024px) {
    .home-mosaic {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto auto;
        gap: 12px;
    }

    .home-mosaic__item--1 {
        grid-column: 1;
        grid-row: 1;
    }

    .home-mosaic__item--2 {
        grid-column: 2;
        grid-row: 1;
    }

    .home-mosaic__item--3 {
        grid-column: 1;
        grid-row: 2;
    }

    .home-mosaic__item--4 {
        grid-column: 2;
        grid-row: 2;
    }

    .home-mosaic__item--5 {
        grid-column: 1;
        grid-row: 3;
    }

    .home-mosaic__item--6 {
        grid-column: 2;
        grid-row: 3;
    }

    .home-mosaic__item {
        aspect-ratio: 4 / 3;
    }
}

/* Mosaïque Mobile - Masquée par défaut */
.home-mosaic--mobile {
    display: none;
}

/* Responsive - Mobile */
@media (max-width: 600px) {
    /* Masquer la mosaïque desktop sur mobile */
    .home-mosaic--desktop {
        display: none;
    }

    /* Afficher la mosaïque mobile */
    .home-mosaic--mobile {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto auto;
        gap: 10px;
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 var(--spacing-md);
    }

    /* Photo 1 - Pleine largeur, ligne 1 */
    .home-mosaic__item--mobile-1 {
        grid-column: 1 / 3;
        grid-row: 1;
        aspect-ratio: 16 / 9;
    }

    /* Photo 2 - Demi largeur gauche, ligne 2 */
    .home-mosaic__item--mobile-2 {
        grid-column: 1;
        grid-row: 2;
        aspect-ratio: 1 / 1;
    }

    /* Photo 3 - Demi largeur droite, ligne 2 */
    .home-mosaic__item--mobile-3 {
        grid-column: 2;
        grid-row: 2;
        aspect-ratio: 1 / 1;
    }

    /* Photo 4 - Pleine largeur, ligne 3 */
    .home-mosaic__item--mobile-4 {
        grid-column: 1 / 3;
        grid-row: 3;
        aspect-ratio: 16 / 9;
    }

    .home-mosaic__item:hover {
        transform: none;
    }

    .home-mosaic__item:hover img {
        transform: none;
    }
}

.home-featured__gallery {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-lg);
}

.home-gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.home-gallery-item a {
    display: block;
    width: 100%;
    height: 100%;
}

.home-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.home-gallery-item__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.3) 0%,
        rgba(0, 0, 0, 0.6) 100%
    );
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.home-gallery-item:hover .home-gallery-item__overlay {
    opacity: 1;
}

.home-gallery-item:hover img {
    transform: scale(1.1);
}

.home-gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.home-gallery-item__text {
    color: white;
    font-size: 1.5rem;
    font-weight: 600;
    font-family: var(--font-heading);
    text-transform: uppercase;
}

/* Images statiques (sans interactivité) */
.home-gallery-item--static {
    cursor: default;
}

.home-gallery-item--static:hover {
    transform: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.home-gallery-item--static:hover img {
    transform: none;
}

/* Bouton "Voir la galerie" centré sous les images */
.home-featured__cta {
    text-align: center;
    margin-top: var(--spacing-xl);
    padding-bottom: var(--spacing-lg);
}

/* ============================================
   BOUTONS CTA
   ============================================ */
.home-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: 1rem 2rem;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    position: relative;
}

.home-cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: white;
    border-radius: 50px;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
    z-index: 0;
}

.home-cta-btn:hover::before {
    transform: scaleX(1);
}

.home-cta-btn span {
    position: relative;
    z-index: 1;
}

.home-cta-btn svg {
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.home-cta-btn:hover svg {
    transform: translateX(5px);
}

.home-cta-btn--primary {
    background: var(--color-primary);
    color: white;
    border: 2px solid var(--color-primary);
    box-shadow: 0 4px 15px rgba(14, 37, 5, 0.25);
}

.home-cta-btn--primary span {
    color: white;
}

.home-cta-btn--primary svg {
    stroke: white;
}

.home-cta-btn--primary:hover {
    color: var(--color-primary);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(14, 37, 5, 0.35);
}

.home-cta-btn--primary:hover span {
    color: var(--color-primary);
}

.home-cta-btn--primary:hover svg {
    stroke: var(--color-primary);
}

.home-cta-btn--secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.home-cta-btn--secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.home-cta-btn--outline {
    background: white;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
}

.home-cta-btn--outline span {
    color: var(--color-primary);
}

.home-cta-btn--outline svg {
    stroke: var(--color-primary);
}

.home-cta-btn--outline::before {
    background: var(--color-primary);
}

.home-cta-btn--outline:hover {
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(14, 37, 5, 0.3);
}

.home-cta-btn--outline:hover span {
    color: white;
}

.home-cta-btn--outline:hover svg {
    stroke: white;
}

.home-cta-btn--large {
    padding: 1.25rem 2.5rem;
    font-size: 1.125rem;
}

/* ============================================
   SECTION CTA FINAL
   ============================================ */
.home-cta-section {
    padding: clamp(4rem, 10vw, 8rem) var(--spacing-md);
    background: white;
    position: relative;
    text-align: center;
    z-index: 5;
    margin-top: clamp(3rem, 8vw, 6rem);
}

.home-cta-section::before {
    content: none;
}

.home-cta-section__content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.home-cta-section__title {
    font-family: var(--font-title);
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    color: var(--color-primary);
    margin: 0 0 var(--spacing-md);
}

.home-cta-section__line {
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--color-primary), #1a4d0d);
    margin: 0 auto var(--spacing-md);
    border-radius: 2px;
}

.home-cta-section__description {
    font-size: clamp(1.125rem, 2.5vw, 1.5rem);
    color: var(--color-text);
    margin: 0 0 var(--spacing-xl);
    line-height: 1.6;
}

.home-cta-section__buttons {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    flex-wrap: wrap;
}

/* Bouton télécharger dossier de presse - espacement */
.home-cta-section__content > .home-cta-btn {
    margin-top: var(--spacing-lg);
}

/* ============================================
   NO ANIMATION MODE (retour sur la page d'accueil)
   Désactive toutes les animations d'entrée
   ============================================ */
.home-hero.no-animation .home-hero__image {
    opacity: 1;
    animation: none;
}

.home-hero.no-animation .home-hero__gradient-overlay {
    opacity: 1;
    animation: none;
}

.home-hero.no-animation .home-hero__main-title {
    opacity: 1;
    animation: none;
}

.home-hero.no-animation .home-hero__subtitle {
    opacity: 1;
    transform: translateX(0);
    animation: none;
}

.home-hero.no-animation .home-hero__scroll-indicator {
    opacity: 1;
    animation: none;
}

/* ============================================
   PERFORMANCE OPTIMIZATIONS
   ============================================ */
.home-hero__image,
.home-hero__image img {
    will-change: transform, opacity;
}

.home-hero__title-wrapper,
.home-hero__bio-content {
    will-change: transform, opacity;
}

.home-gallery-item img,
.home-cta-btn,
.home-gallery-item {
    will-change: transform;
}

/* ============================================
   BANDEAU VICTOIRES 2026 - Accrocheur & Dynamique
   ============================================ */
.victoires-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-top: 2rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg,
        rgba(180, 142, 63, 0.95) 0%,
        rgba(212, 168, 85, 0.95) 25%,
        rgba(180, 142, 63, 0.95) 50%,
        rgba(148, 116, 52, 0.95) 75%,
        rgba(180, 142, 63, 0.95) 100%);
    background-size: 200% 200%;
    border-radius: 60px;
    text-decoration: none;
    overflow: hidden;
    cursor: pointer;
    pointer-events: auto;
    box-shadow:
        0 4px 30px rgba(180, 142, 63, 0.4),
        0 0 60px rgba(180, 142, 63, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.3);
    animation: victoires-gradient 4s ease infinite, victoires-pulse 2s ease-in-out infinite;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    animation: victoires-appear 1s ease-out 2.5s forwards, victoires-gradient 4s ease infinite, victoires-pulse 2s ease-in-out infinite;
}

.victoires-banner:hover {
    transform: scale(1.03) translateY(-3px);
    box-shadow:
        0 8px 40px rgba(180, 142, 63, 0.6),
        0 0 80px rgba(180, 142, 63, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

/* Glow effect animé */
.victoires-banner__glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 60%);
    animation: victoires-glow-rotate 6s linear infinite;
    pointer-events: none;
}

/* Contenu principal */
.victoires-banner__content {
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
    z-index: 2;
}

/* Icône étoile */
.victoires-banner__icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: victoires-star-spin 8s linear infinite;
}

.victoires-banner__icon svg {
    width: 32px;
    height: 32px;
    stroke: white;
    fill: rgba(255, 255, 255, 0.2);
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.5));
}

/* Texte */
.victoires-banner__text {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.25rem;
}

.victoires-banner__label {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

.victoires-banner__title {
    font-family: var(--font-title);
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.02em;
}

/* Flèche */
.victoires-banner__arrow {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.victoires-banner__arrow svg {
    width: 20px;
    height: 20px;
    stroke: white;
}

.victoires-banner:hover .victoires-banner__arrow {
    transform: translateX(5px);
}

/* Effet shimmer (brillance qui traverse) */
.victoires-banner__shimmer {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.3) 50%,
        transparent 100%
    );
    animation: victoires-shimmer 3s ease-in-out infinite;
    pointer-events: none;
}

/* Animations */
@keyframes victoires-appear {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes victoires-gradient {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

@keyframes victoires-pulse {
    0%, 100% {
        box-shadow:
            0 4px 30px rgba(180, 142, 63, 0.4),
            0 0 60px rgba(180, 142, 63, 0.2),
            inset 0 1px 0 rgba(255, 255, 255, 0.3);
    }
    50% {
        box-shadow:
            0 4px 40px rgba(180, 142, 63, 0.6),
            0 0 80px rgba(180, 142, 63, 0.35),
            inset 0 1px 0 rgba(255, 255, 255, 0.4);
    }
}

@keyframes victoires-glow-rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes victoires-star-spin {
    0% {
        transform: rotate(0deg) scale(1);
    }
    25% {
        transform: rotate(5deg) scale(1.1);
    }
    50% {
        transform: rotate(0deg) scale(1);
    }
    75% {
        transform: rotate(-5deg) scale(1.1);
    }
    100% {
        transform: rotate(0deg) scale(1);
    }
}

@keyframes victoires-shimmer {
    0% {
        left: -100%;
    }
    50%, 100% {
        left: 100%;
    }
}

/* Responsive - Mobile */
@media (max-width: 1200px) {
    .victoires-banner {
        margin-top: 30rem !important;
        padding: 0.875rem 1.5rem;
        border-radius: 50px;
    }

    .victoires-banner__icon {
        width: 32px;
        height: 32px;
    }

    .victoires-banner__icon svg {
        width: 26px;
        height: 26px;
    }

    .victoires-banner__label {
        font-size: 0.65rem;
        letter-spacing: 0.1em;
    }

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

    .victoires-banner__arrow {
        display: none;
    }
}

@media (max-width: 480px) {
    .victoires-banner {
        margin-top: 1rem;
        padding: 0.75rem 1rem;
        gap: 0.5rem;
    }

    .victoires-banner__content {
        gap: 0.75rem;
    }

    .victoires-banner__icon {
        width: 28px;
        height: 28px;
    }

    .victoires-banner__icon svg {
        width: 22px;
        height: 22px;
    }

    .victoires-banner__label {
        font-size: 0.6rem;
    }

    .victoires-banner__title {
        font-size: 0.9rem;
    }
}

/* Mode sans animation (retour sur la page) */
.home-hero.no-animation .victoires-banner {
    opacity: 1;
    animation: victoires-gradient 4s ease infinite, victoires-pulse 2s ease-in-out infinite;
}

/* ============================================
   NEWSLETTER SECTION - PAGE ACCUEIL
   Utilise les styles contact-card de _contact.css
   ============================================ */
.home-cta-section .contact-card--newsletter {
    margin-top: var(--spacing-xl);
    max-width: 100%;
    width: 100%;
    text-align: left;
}

.home-cta-section .contact-card--newsletter .contact-card__title,
.home-cta-section .contact-card--newsletter .contact-card__subtitle,
.home-cta-section .contact-card--newsletter .newsletter-form__privacy {
    text-align: left;
}

/* Forcer les champs et bouton sur la même ligne comme sur la page contact */
.home-cta-section .contact-card--newsletter .newsletter-form__fields {
    flex-wrap: nowrap;
}

.home-cta-section .contact-card--newsletter .newsletter-form__group {
    min-width: 0;
    flex: 1;
}

.home-cta-section .contact-card--newsletter .newsletter-form__button {
    flex-shrink: 0;
}



/* === 04-pages/_contact.css === */
/* ============================================
   PAGE CONTACT - NOUVEAU DESIGN MODERNE
   ============================================ */

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

/* Page container */
.contact-page {
    background: linear-gradient(135deg, #f5f7fa 0%, #e8ecf0 100%);
    padding-bottom: 0;
    margin-bottom: 0;
}

/* Supprimer tout espace en bas de la page Contact */
body:has(.contact-page) {
    margin-bottom: 0;
    padding-bottom: 0;
}

body:has(.contact-page) footer {
    margin-top: 0;
    margin-bottom: 0;
}

/* Header avec image de fond */
.contact-header {
    position: relative;
    height: 40vh;
    min-height: 300px;
    background-image: url('/images/contact_hero.jpg');
    background-size: cover;
    background-position: center 30%;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-header__overlay {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: var(--spacing-lg);
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
}

.contact-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(14, 37, 5, 0.7), rgba(0, 0, 0, 0.4));
    z-index: 1;
}

.contact-header__title {
    color: var(--color-primary);
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: normal;
    margin: 0;
    letter-spacing: 2px;
}

.contact-header__subtitle {
    color: var(--color-text-light);
    font-family: var(--font-subtitle);
    font-size: 1.8rem;
    margin: var(--spacing-sm) 0 0;
}

/* Contenu principal */
.contact-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--spacing-xl) var(--spacing-md) var(--spacing-md);
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
}

/* Cartes de contact */
.contact-card {
    background: white;
    border-radius: 20px;
    padding: var(--spacing-xl);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    gap: var(--spacing-lg);
    align-items: flex-start;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

/* Carte principale (Management) */
.contact-card--primary {
    background: linear-gradient(135deg, rgba(14, 37, 5, 0.05), rgba(14, 37, 5, 0.02));
    border: 2px solid var(--color-primary);
}

.contact-card--primary .contact-card__icon {
    color: var(--color-primary);
}

/* Icône de carte */
.contact-card__icon {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, rgba(14, 37, 5, 0.1), rgba(14, 37, 5, 0.05));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-light);
    transition: all 0.3s ease;
}

.contact-card:hover .contact-card__icon {
    transform: scale(1.1) rotate(5deg);
}

/* Contenu de carte */
.contact-card__content {
    flex: 1;
}

.contact-card__title {
    color: var(--color-primary);
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: normal;
    margin: 0 0 var(--spacing-md);
}

.contact-card__info {
    color: var(--color-text);
    font-family: var(--font-body);
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Liens de contact */
.contact-link {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    color: var(--color-text);
    text-decoration: none;
    transition: all 0.3s ease;
    padding: var(--spacing-sm);
    border-radius: 10px;
}

.contact-link:hover {
    background: rgba(14, 37, 5, 0.05);
    padding-left: var(--spacing-md);
    color: var(--color-primary);
}

.contact-link--large {
    font-size: 1.2rem;
    font-weight: 500;
}

/* Logo et icônes */
.contact-logo {
    width: 60px;
    height: 60px;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.contact-icon {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

/* Logo mail SVG - Même style que les autres icônes */
svg.contact-icon {
    flex-shrink: 0;
    color: var(--color-text);
    transition: transform 0.3s ease, color 0.3s ease;
}

.contact-link:hover svg.contact-icon {
    transform: scale(1.15);
    color: var(--color-primary);
}

/* Icône Kit de presse SVG */
.contact-link--press-kit {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.press-kit-icon {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
    color: var(--color-primary);
    background: linear-gradient(135deg, rgba(14, 37, 5, 0.1), rgba(14, 37, 5, 0.05));
    border-radius: 12px;
    padding: 10px;
    transition: transform 0.3s ease, color 0.3s ease, background 0.3s ease;
}

.contact-link--press-kit:hover .press-kit-icon {
    transform: scale(1.1);
    color: var(--color-primary);
    background: linear-gradient(135deg, rgba(14, 37, 5, 0.2), rgba(14, 37, 5, 0.1));
}

/* Réseaux sociaux */
.contact-card--social .contact-card__social-links {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.social-link {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    padding: var(--spacing-md);
    background: linear-gradient(135deg, #f5f7fa, #ffffff);
    border-radius: 12px;
    text-decoration: none;
    color: var(--color-text-dark);
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.social-link img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

/* Icônes SVG pour réseaux sociaux - couleurs de marque */
.social-link .social-icon {
    width: 40px;
    height: 40px;
    transition: transform 0.3s ease, fill 0.3s ease;
}

/* Couleurs officielles des marques */
.social-link--facebook .social-icon {
    fill: #1877F2;
}

.social-link--youtube .social-icon {
    fill: #FF0000;
}

/* Instagram utilise une image avec gradient */
.social-link--instagram .social-icon {
    object-fit: contain;
}

.social-link:hover {
    transform: translateX(8px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.social-link:hover img,
.social-link:hover .social-icon {
    transform: scale(1.15);
}

.social-link--instagram:hover {
    border-color: #E4405F;
    background: linear-gradient(135deg, #ffeef2, #ffffff);
}

.social-link--facebook:hover {
    border-color: #1877F2;
    background: linear-gradient(135deg, #e8f2ff, #ffffff);
}

.social-link--youtube:hover {
    border-color: #FF0000;
    background: linear-gradient(135deg, #ffe8e8, #ffffff);
}

/* Description texte */
.contact-description {
    color: var(--color-text);
    font-family: var(--font-body);
    font-size: 1.1rem;
    line-height: 1.7;
    margin: 0;
}


.contact_texte {
    color: var(--color-text);
    font-family: var(--font-body);
    font-size: 1.125rem; /* Taille normale pour desktop */
    text-align: justify;
    text-decoration: none;
}

/* ============================================
   DESKTOP STYLES (min-width: 769px)
   ============================================ */
@media (min-width: 769px) {
    /* Contact - Desktop */
    .contact-hero {
        height: 80vh;
        max-height: 700px;
    }

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

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

    .contact-header {
        height: 50vh;
        min-height: 400px;
    }

    .contact-header__title {
        font-size: 4rem;
    }

    .contact-header__subtitle {
        font-size: 2.2rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
        padding: var(--spacing-xxl) var(--spacing-xl);
        gap: var(--spacing-xl);
    }

    .contact-card--primary {
        grid-column: 1 / -1;
    }

    .contact-card--social .contact-card__social-links {
        flex-direction: row;
        justify-content: space-around;
    }

    .social-link {
        flex-direction: column;
        text-align: center;
        padding: var(--spacing-lg);
        flex: 1;
    }

    .social-link img,
    .social-link .social-icon {
        width: 48px;
        height: 48px;
    }


    .contact_texte {
        font-size: 1.2rem;
    }
}

/* ============================================
   RESPONSIVE - MOBILE (max-width: 1200px)
   ============================================ */
@media (max-width: 1200px) {
    .contact_texte {
        font-size: 1.125rem;
    }

    /* Contact Hero - Mobile */
    .contact-hero {
        height: 62.5vh;
        min-height: 375px;
        max-height: 562.5px;
    }

    .contact-hero__title {
        font-size: var(--font-size-h1-mobile);
    }

    .contact-hero__subtitle {
        font-size: var(--font-size-h2-mobile);
    }

    .contact-hero__overlay {
        padding: var(--spacing-md);
    }

    .contact-header {
        height: 35vh;
        min-height: 250px;
        background-attachment: scroll;
    }

    .contact-header__title {
        font-size: 2rem;
    }

    .contact-header__subtitle {
        font-size: 1.4rem;
    }

    .contact-header__overlay {
        padding: var(--spacing-md);
    }

    .contact-content {
        padding: var(--spacing-lg) var(--spacing-md) var(--spacing-md);
        gap: var(--spacing-md);
    }

    .contact-card {
        flex-direction: row;
        padding: 1.5rem !important; /* Padding normal restauré */
        text-align: left;
        align-items: flex-start;
    }

    .contact-card__content {
        width: 100%;
    }

    .contact-card__icon {
        width: 32px;
        height: 32px;
        margin: 0;
        margin-right: 0.5rem;
    }

    .contact-card__title {
        font-size: 1.375rem;
        text-align: left;
        margin: 0 0 0.5rem 0;
    }

    .contact-card__info {
        font-size: 1.125rem;
        text-align: left;
        padding-left: 0;
        margin-left: 0;
    }

    /* Marge en bas du bloc Dossier de Presse avant le footer */
    .contact-card--press {
        margin-bottom: var(--spacing-xl) !important;
    }

    /* Supprimer le décalage des infos - masquer l'icône sur mobile */
    .contact-card__icon {
        display: none;
    }

    .contact-link {
        flex-direction: row;
        text-align: left;
        font-size: 1.125rem;
        justify-content: flex-start;
        padding-left: 0;
    }

    .contact-logo {
        width: 30px;
        height: 30px;
    }

    .contact-icon,
    svg.contact-icon {
        width: 30px;
        height: 30px;
    }

    .press-kit-icon {
        width: 40px;
        height: 40px;
        padding: 6px;
    }

    .contact-card--social .contact-card__social-links {
        gap: var(--spacing-sm);
        flex-direction: column;
    }

    .social-link {
        padding: var(--spacing-sm);
        font-size: 1.1rem;
        flex-direction: row;
        text-align: left;
    }

    .social-link img,
    .social-link .social-icon {
        width: 32px;
        height: 32px;
    }

    .contact-description {
        font-size: 1.125rem;
        text-align: left;
        padding-left: 0;
        margin-left: 0;
    }

    /* Spacing normal restauré */
    .contact-content {
        padding-left: var(--spacing-md) !important;
        padding-right: var(--spacing-md) !important;
    }

    .contact-card__info p {
        margin-left: 0;
        padding-left: 0;
    }

    /* Forcer la suppression de TOUT espace en bas sur mobile */
    .contact-page {
        padding-bottom: 0 !important;
        margin-bottom: 0 !important;
        min-height: auto !important;
    }

    body:has(.contact-page) {
        padding-bottom: 0 !important;
        margin-bottom: 0 !important;
        margin-top: 0 !important;
    }

    body:has(.contact-page) main {
        margin-bottom: 0 !important;
        padding-bottom: 0 !important;
    }

    body:has(.contact-page) footer {
        margin-top: 0 !important;
        margin-bottom: 0 !important;
        padding-top: 0 !important;
    }

    .contact-content {
        margin-bottom: 0 !important;
        padding-bottom: 0 !important;
    }

    /* La carte press est le dernier enfant, on garde sa marge */
    .contact-card:last-child:not(.contact-card--press) {
        margin-bottom: 0 !important;
    }

    .contact-hero {
        margin-bottom: 0 !important;
    }
}

/* ============================================
   INSTAGRAM EMBED
   ============================================ */

.contact-card--instagram {
    background: linear-gradient(135deg, rgba(225, 48, 108, 0.05), rgba(131, 58, 180, 0.05));
    border: 2px solid transparent;
    background-clip: padding-box;
    position: relative;
}

.contact-card--instagram::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 20px;
    padding: 2px;
    background: linear-gradient(135deg, #E4405F, #833AB4, #FD1D1D);
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.contact-card--instagram .contact-card__icon {
    background: linear-gradient(135deg, rgba(225, 48, 108, 0.15), rgba(131, 58, 180, 0.15));
    color: #E4405F;
}

.contact-card--instagram .contact-card__title {
    background: linear-gradient(135deg, #E4405F, #833AB4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-card__instagram-embed {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-top: var(--spacing-md);
}

.contact-card__instagram-embed .instagram-media {
    margin: 0 auto !important;
}

/* Responsive mobile pour Instagram */
@media (max-width: 1200px) {
    .contact-card--instagram {
        flex-direction: column;
    }

    .contact-card--instagram .contact-card__icon {
        display: none;
    }

    .contact-card__instagram-embed {
        margin-top: var(--spacing-sm);
    }

    .contact-card__instagram-embed .instagram-media {
        min-width: 280px !important;
        max-width: 100% !important;
    }
}

/* ============================================
   DOSSIERS DE PRESSE MULTILINGUES
   ============================================ */

.contact-card__subtitle {
    color: var(--color-text-light);
    font-family: var(--font-body);
    font-size: 1.1rem;
    margin: 0 0 var(--spacing-md);
}

.contact-card__press-kits {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-md);
}

.press-kit-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: var(--spacing-md);
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
    border: 2px solid rgba(14, 37, 5, 0.15);
    border-radius: 12px;
    text-decoration: none;
    color: var(--color-text);
    transition: all 0.3s ease;
    min-width: 100px;
    position: relative;
}

.press-kit-btn:hover {
    transform: translateY(-3px);
    border-color: var(--color-primary);
    box-shadow: 0 8px 20px rgba(14, 37, 5, 0.15);
    background: linear-gradient(135deg, rgba(14, 37, 5, 0.05), #ffffff);
}

.press-kit-btn .press-kit-icon {
    width: 40px;
    height: 40px;
    padding: 6px;
    background: linear-gradient(135deg, rgba(14, 37, 5, 0.1), rgba(14, 37, 5, 0.05));
    border-radius: 8px;
    color: var(--color-primary);
    transition: transform 0.3s ease;
}

.press-kit-btn:hover .press-kit-icon {
    transform: scale(1.1);
}

/* Drapeaux avec CSS */
.press-kit-flag {
    width: 24px;
    height: 16px;
    border-radius: 3px;
    display: inline-block;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

/* Drapeau français - bleu blanc rouge vertical */
.press-kit-flag--fr {
    background: linear-gradient(to right,
        #002395 0%, #002395 33.33%,
        #ffffff 33.33%, #ffffff 66.66%,
        #ed2939 66.66%, #ed2939 100%);
}

/* Drapeau UK - Union Jack */
.press-kit-flag--en {
    background:
        /* Croix rouge centrale horizontale */
        linear-gradient(to bottom, transparent 37.5%, #c8102e 37.5%, #c8102e 62.5%, transparent 62.5%),
        /* Croix rouge centrale verticale */
        linear-gradient(to right, transparent 41.5%, #c8102e 41.5%, #c8102e 58.5%, transparent 58.5%),
        /* Croix blanche horizontale */
        linear-gradient(to bottom, transparent 31%, #ffffff 31%, #ffffff 69%, transparent 69%),
        /* Croix blanche verticale */
        linear-gradient(to right, transparent 35%, #ffffff 35%, #ffffff 65%, transparent 65%),
        /* Diagonales blanches */
        linear-gradient(to bottom right, transparent 45%, #ffffff 45%, #ffffff 55%, transparent 55%),
        linear-gradient(to bottom left, transparent 45%, #ffffff 45%, #ffffff 55%, transparent 55%),
        /* Fond bleu */
        #012169;
}

/* Drapeau allemand - noir rouge or horizontal */
.press-kit-flag--ger {
    background: linear-gradient(to bottom,
        #000000 0%, #000000 33.33%,
        #dd0000 33.33%, #dd0000 66.66%,
        #ffcc00 66.66%, #ffcc00 100%);
}

.press-kit-label {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-text);
}

.press-kit-btn:hover .press-kit-label {
    color: var(--color-primary);
}

/* ============================================
   GROUPES DE DOSSIERS DE PRESSE PAR LANGUE
   ============================================ */

.contact-card__press-kits {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-lg);
    justify-content: center;
}

.press-kit-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-md);
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
    border: 2px solid rgba(14, 37, 5, 0.1);
    border-radius: 16px;
    transition: all 0.3s ease;
    min-width: 140px;
}

.press-kit-group:hover {
    border-color: var(--color-primary);
    box-shadow: 0 8px 25px rgba(14, 37, 5, 0.12);
    transform: translateY(-3px);
}

.press-kit-group__header {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding-bottom: var(--spacing-sm);
    border-bottom: 1px solid rgba(14, 37, 5, 0.1);
    width: 100%;
    justify-content: center;
}

.press-kit-group__label {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-text-dark);
}

.press-kit-group__buttons {
    display: flex;
    gap: var(--spacing-sm);
}

.press-kit-group .press-kit-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: var(--spacing-sm);
    background: transparent;
    border: 1px solid rgba(14, 37, 5, 0.15);
    border-radius: 8px;
    text-decoration: none;
    color: var(--color-text);
    transition: all 0.3s ease;
    min-width: 60px;
}

.press-kit-group .press-kit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(14, 37, 5, 0.15);
}

.press-kit-group .press-kit-btn--pdf {
    border-color: #e74c3c;
}

.press-kit-group .press-kit-btn--pdf:hover {
    background: rgba(231, 76, 60, 0.1);
    border-color: #c0392b;
}

.press-kit-group .press-kit-btn--pdf .press-kit-icon {
    color: #e74c3c;
}

.press-kit-group .press-kit-btn--doc {
    border-color: #2980b9;
}

.press-kit-group .press-kit-btn--doc:hover {
    background: rgba(41, 128, 185, 0.1);
    border-color: #1a5276;
}

.press-kit-group .press-kit-btn--doc .press-kit-icon {
    color: #2980b9;
}

.press-kit-group .press-kit-icon {
    width: 28px;
    height: 28px;
    padding: 0;
    background: transparent;
    border-radius: 0;
    transition: transform 0.3s ease;
}

.press-kit-group .press-kit-btn:hover .press-kit-icon {
    transform: scale(1.15);
}

.press-kit-format {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.press-kit-btn--pdf .press-kit-format {
    color: #e74c3c;
}

.press-kit-btn--doc .press-kit-format {
    color: #2980b9;
}

/* Responsive mobile pour les dossiers de presse */
@media (max-width: 1200px) {
    .contact-card__press-kits {
        flex-direction: column;
        align-items: center;
        gap: var(--spacing-md);
    }

    .press-kit-group {
        width: 100%;
        max-width: 280px;
        flex-direction: row;
        justify-content: space-between;
        padding: var(--spacing-sm) var(--spacing-md);
    }

    .press-kit-group__header {
        border-bottom: none;
        padding-bottom: 0;
        width: auto;
        justify-content: flex-start;
    }

    .press-kit-group__buttons {
        gap: var(--spacing-xs);
    }

    .press-kit-group .press-kit-btn {
        min-width: 50px;
        padding: 6px 10px;
    }

    .press-kit-group .press-kit-icon {
        width: 22px;
        height: 22px;
    }

    .press-kit-format {
        font-size: 0.7rem;
    }

    .press-kit-flag {
        width: 20px;
        height: 14px;
    }

    .press-kit-group__label {
        font-size: 0.9rem;
    }
}

/* ============================================
   NEWSLETTER FORM
   ============================================ */

.contact-card--newsletter {
    background: linear-gradient(135deg, rgba(14, 37, 5, 0.03), rgba(14, 37, 5, 0.01));
    border: 2px solid var(--color-primary);
}

.contact-card--newsletter .contact-card__icon {
    background: linear-gradient(135deg, rgba(14, 37, 5, 0.15), rgba(14, 37, 5, 0.08));
    color: var(--color-primary);
}

.contact-card--newsletter .contact-card__title {
    color: var(--color-primary);
}

.contact-card--newsletter .contact-card__subtitle {
    color: var(--color-text-light);
    margin-bottom: var(--spacing-lg);
}

/* Honeypot field - hidden from users */
.newsletter-honeypot {
    position: absolute;
    left: -9999px;
    opacity: 0;
    height: 0;
    width: 0;
    pointer-events: none;
}

.newsletter-form {
    width: 100%;
}

.newsletter-form__fields {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-md);
    align-items: flex-end;
}

.newsletter-form__group {
    flex: 1;
    min-width: 200px;
}

.newsletter-form__input {
    width: 100%;
    padding: var(--spacing-md);
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--color-text);
    background: #ffffff;
    border: 2px solid rgba(14, 37, 5, 0.15);
    border-radius: 10px;
    transition: all 0.3s ease;
    outline: none;
}

.newsletter-form__input::placeholder {
    color: var(--color-text-light);
    opacity: 0.7;
}

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

.newsletter-form__input:invalid:not(:placeholder-shown) {
    border-color: #e74c3c;
}

.newsletter-form__button {
    padding: var(--spacing-md) var(--spacing-xl);
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    background: linear-gradient(135deg, var(--color-primary), rgba(14, 37, 5, 0.85));
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
    min-width: 140px;
    white-space: nowrap;
}

.newsletter-form__button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(14, 37, 5, 0.25);
    background: linear-gradient(135deg, rgba(14, 37, 5, 0.9), var(--color-primary));
}

.newsletter-form__button:active {
    transform: translateY(0);
}

.newsletter-form__button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.newsletter-form__button-loading {
    display: flex;
    align-items: center;
    justify-content: center;
}

.newsletter-form__button-loading .spinner {
    animation: spin 1s linear infinite;
}

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

.newsletter-form__message {
    margin-top: var(--spacing-md);
    padding: var(--spacing-md);
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    text-align: center;
}

.newsletter-form__message--success {
    background: rgba(39, 174, 96, 0.1);
    border: 1px solid rgba(39, 174, 96, 0.3);
    color: #27ae60;
}

.newsletter-form__message--error {
    background: rgba(231, 76, 60, 0.1);
    border: 1px solid rgba(231, 76, 60, 0.3);
    color: #e74c3c;
}

.newsletter-form__privacy {
    margin-top: var(--spacing-md);
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: var(--color-text-light);
    line-height: 1.5;
    text-align: center;
}

/* Responsive mobile pour newsletter */
@media (max-width: 1200px) {
    .contact-card--newsletter {
        flex-direction: column;
    }

    .contact-card--newsletter .contact-card__icon {
        display: none;
    }

    .newsletter-form__fields {
        flex-direction: column;
    }

    .newsletter-form__group {
        width: 100%;
        min-width: auto;
    }

    .newsletter-form__button {
        width: 100%;
    }

    .newsletter-form__privacy {
        text-align: left;
    }

    /* Marge en bas du bloc Newsletter */
    .contact-card--newsletter {
        margin-bottom: var(--spacing-lg);
    }
}


/* === 04-pages/_galerie.css === */
/* ============================================
   PAGE GALERIE
   Galerie photos moderne avec viewer et miniatures
   ============================================ */

.galerie-modern {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 80px 0;
}

.galerie-modern__section {
    max-width: 1400px;
    margin: 0 auto 100px;
    padding: 0 20px;
    position: relative;
}

.galerie-modern__section:last-child {
    margin-bottom: 0;
}

/* Effet de brillance sur les sections */
.galerie-modern__section::before {
    content: '';
    position: absolute;
    top: -2px;
    left: 20px;
    right: 20px;
    height: 1px;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(14, 37, 5, 0.1) 50%,
        transparent 100%);
}

/* ----- HEADERS DE SECTION ----- */
.galerie-modern__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
    flex-wrap: wrap;
    gap: 20px;
}

.galerie-modern__header-content {
    flex: 1;
    min-width: 250px;
}

.galerie-modern__title {
    display: flex;
    align-items: center;
    gap: 15px;
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 15px;
    position: relative;
}

.galerie-modern__title-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--color-primary) 0%, #1a4d2e 100%);
    border-radius: 12px;
    color: white;
    flex-shrink: 0;
}

.galerie-modern__title-icon svg {
    width: 28px;
    height: 28px;
    stroke-width: 2;
}

.galerie-modern__header-line {
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg,
        var(--color-primary) 0%,
        transparent 100%);
    border-radius: 2px;
}

/* ----- BOUTON TÉLÉCHARGER TOUT ----- */
.galerie-modern__download-all {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: linear-gradient(135deg, var(--color-primary) 0%, #1a4d2e 100%);
    color: white !important;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(14, 37, 5, 0.2);
}

.galerie-modern__download-all:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(14, 37, 5, 0.5);
    background: linear-gradient(135deg, #22653e 0%, #2e7d4e 100%);
    color: white;
}

.galerie-modern__download-all:active {
    transform: translateY(0);
    box-shadow: 0 4px 15px rgba(14, 37, 5, 0.3);
}

.galerie-modern__download-all svg {
    width: 20px;
    height: 20px;
    stroke-width: 2.5;
}

/* ----- VIEWER CONTAINER ----- */
.galerie-modern__viewer {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.galerie-modern__viewer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg,
        var(--color-primary) 0%,
        #1a4d2e 50%,
        var(--color-primary) 100%);
    background-size: 200% 100%;
    animation: shimmer 3s ease-in-out infinite;
}

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

/* ----- SECTION GALERIE UNIFIÉE ----- */
.fiches {
    width: 100%;
    display: block;
}

/* Viewer Moderne - Hauteur fixe pour éviter les sauts */
.viewer {
    width: 100%;
    max-width: 100%;
    margin-bottom: 30px;
    overflow: visible;
    position: relative;
    animation: fadeInUp 0.6s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 65vh;
    min-height: 400px;
    max-height: 700px;
}

/* Images avec style moderne - Taille fixe dans le viewer */
.Grand {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.2s ease;
    position: relative;
    z-index: 1;
}

.Grand:hover {
    transform: scale(1.01);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

/* Portrait et paysage : même comportement dans le conteneur fixe */
.Grand.is-portrait,
.Grand.is-landscape {
    max-height: 100%;
    width: auto;
    object-fit: contain;
}

/* Navigation moderne (cachée sur mobile) */
.nav-btn {
    display: none;
}

/* Spacer pour les miniatures */
.spacer {
    flex-basis: 100%;
    height: 4px;
}

/* ----- CRÉDIT PHOTOGRAPHE ----- */
.credit {
    position: absolute;
    right: 20px;
    bottom: 20px;
    padding: 8px 14px;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    font-size: 0.85rem;
    border-radius: 8px;
    z-index: 5;
    pointer-events: none;
    backdrop-filter: blur(10px);
}

/* ----- BOUTON TÉLÉCHARGEMENT MODERNE ----- */
.download {
    position: absolute;
    left: 20px;
    bottom: 20px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    color: #1a1a1a;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    z-index: 10;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.download:hover {
    background: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.2);
}

.download::before {
    content: "↓";
    font-size: 1.1em;
    margin-right: 0;
}

/* ----- MINIATURES MODERNES ----- */
.thumbs {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding: 15px 5px;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x proximity;
    scrollbar-width: thin;
    scrollbar-color: var(--color-primary) #f0f0f0;
}

.thumbs::-webkit-scrollbar {
    height: 6px;
}

.thumbs::-webkit-scrollbar-track {
    background: #f0f0f0;
    border-radius: 3px;
}

.thumbs::-webkit-scrollbar-thumb {
    background: var(--color-primary);
    border-radius: 3px;
}

.thumbs .Petit {
    flex: 0 0 auto;
    width: clamp(120px, 20vw, 180px);
    aspect-ratio: 3 / 2;
    scroll-snap-align: start;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    object-fit: cover;
}

.thumbs .Petit:hover {
    transform: translateY(-4px) scale(1.08);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.thumbs .Petit.actif {
    transform: scale(1.15);
    outline: 3px solid var(--color-primary);
    outline-offset: -3px;
    box-shadow: 0 8px 30px rgba(14, 37, 5, 0.4);
    z-index: 10;
    position: relative;
}

/* ----- SECTION VIDÉOS MODERNE ----- */
.galerie-modern__videos {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.galerie-modern__video-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.galerie-modern__video-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
}

.galerie-modern__video-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #000;
    min-height: 500px;
}

.galerie-modern__video-wrapper video,
.galerie-modern__video-wrapper iframe {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border: none;
}

.galerie-modern__video-info {
    padding: 20px;
}

.galerie-modern__video-title {
    font-size: 1rem;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.5;
}

/* Styles pour les descriptions de vidéos */
.description_video {
    margin: 0;
}

.description_video__title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a1a;
}

.description_video__details {
    font-size: 0.9rem;
    font-weight: 400;
    color: #666;
    line-height: 1.6;
}

/* ----- SECTION PRESSE MODERNE ----- */
.galerie-modern__press {
    display: grid;
    gap: 30px;
    padding: 0 15%;
}

.critique {
    position: relative;
    font-family: var(--font-critique);
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    line-height: 1.8;
    color: #2c2c2c;
    font-style: italic;
    margin: 0;
    padding: 40px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    border-left: 4px solid var(--color-primary);
    transition: all 0.3s ease;
}

.critique:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
    transform: translateX(5px);
}

.critique::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 4rem;
    color: var(--color-primary);
    opacity: 0.2;
    font-family: Georgia, serif;
    line-height: 1;
}

.critique_source {
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: #666;
    text-align: right;
    margin: 15px 0 0;
    padding: 0;
    font-weight: 600;
    font-style: normal;
}

/* ============================================
   RESPONSIVE - DESKTOP
   ============================================ */
@media screen and (min-width: 1201px) {
    /* Desktop specific gallery styles */

    /* Navigation buttons - Positionnés à l'intérieur du viewer */
    .nav-btn {
        display: flex;
        position: absolute;
        top: 50%;
        width: 50px;
        height: 50px;
        border: none;
        border-radius: 50%;
        align-items: center;
        justify-content: center;
        background: rgba(255, 255, 255, 0.9);
        box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
        cursor: pointer;
        user-select: none;
        z-index: 10;
        transform: translateY(-50%);
        transition: all 0.3s ease;
        backdrop-filter: blur(5px);
    }

    .nav-btn:hover {
        background: white;
        transform: translateY(-50%) scale(1.08);
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
    }

    .nav-btn:active {
        transform: translateY(-50%) scale(0.95);
    }

    .nav-btn.prev {
        left: 20px;
    }

    .nav-btn.next {
        right: 20px;
    }

    .nav-btn img {
        width: 24px;
        height: 24px;
    }

    /* Image principale cursor zoom */
    .Grand:not(.is-portrait) {
        cursor: zoom-in;
    }

    /* Portrait et paysage gardent le même comportement dans le viewer fixe */
    .Grand.is-portrait,
    .Grand.is-landscape {
        max-height: 100%;
        width: auto;
        object-fit: contain;
    }
}

/* ============================================
   LIGHTBOX ZOOM (DESKTOP)
   Styles pour l'overlay de zoom sur les images
   ============================================ */
.overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.92);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    animation: fadeIn 0.15s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.chargement {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 28px;
    height: 28px;
    opacity: 0.85;
    animation: spin 1s linear infinite;
}

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

.close {
    position: fixed;
    top: 18px;
    right: 18px;
    width: 32px;
    height: 32px;
    cursor: pointer;
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.4));
}

.TresGrandPaysage,
.TresGrandPortrait,
.TresGrandChargement {
    max-width: 94vw;
    max-height: 92vh;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    cursor: zoom-out;
}

/* ----- NAVIGATION DANS LE LIGHTBOX ----- */
.nav-btn-lightbox {
    display: flex;
    position: fixed;
    top: 50%;
    width: 60px;
    height: 60px;
    border: none;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    user-select: none;
    z-index: 10000;
    transform: translateY(-50%);
    transition: all 0.3s ease;
    backdrop-filter: blur(8px);
}

.nav-btn-lightbox:hover {
    background: white;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.4);
}

.nav-btn-lightbox:active {
    transform: translateY(-50%) scale(0.95);
}

.nav-btn-lightbox.prev {
    left: 30px;
}

.nav-btn-lightbox.next {
    right: 30px;
}

.nav-btn-lightbox img {
    width: 28px;
    height: 28px;
    filter: brightness(0.3);
}

/* Responsive pour les boutons de navigation en mode lightbox */
@media screen and (max-width: 768px) {
    .nav-btn-lightbox {
        width: 50px;
        height: 50px;
    }

    .nav-btn-lightbox.prev {
        left: 15px;
    }

    .nav-btn-lightbox.next {
        right: 15px;
    }

    .nav-btn-lightbox img {
        width: 24px;
        height: 24px;
    }
}

/* ============================================
   RESPONSIVE - MOBILE (max-width: 1200px)
   ============================================ */
@media (max-width: 1200px) {
    /* Texte des vidéos taille normale sur mobile */
    .galerie-modern__video-title {
        font-size: 1rem !important;
    }

    /* Section presse - Suppression du padding horizontal sur mobile */
    .galerie-modern__press {
        padding: 0 !important;
    }

    /* Critiques de presse - Style similaire à la biographie sur mobile */
    .critique {
        font-size: 1rem !important;
        padding: 1.25rem !important;
        padding-top: 2rem !important;
        border-radius: 12px !important;
    }

    .critique::before {
        top: 10px !important;
        left: 10px !important;
        font-size: 2.5rem !important;
        line-height: 0.5 !important;
    }

    .critique_source {
        font-size: 0.85rem !important;
    }

    /* Titres de section taille normale */
    .galerie-modern__title {
        font-size: 1.75rem !important;
    }

    /* Bouton "Télécharger toutes les photos" taille normale */
    .galerie-modern__download-all {
        font-size: 0.95rem !important;
        padding: 0.875rem 1.75rem !important;
    }

    .galerie-modern__download-all svg {
        width: 20px !important;
        height: 20px !important;
    }

    /* Bouton "Télécharger" sur l'image taille normale */
    .download {
        font-size: 0.9rem !important;
        padding: 0.75rem 1.25rem !important;
    }

    /* Crédit photographe taille normale */
    .credit {
        font-size: 0.85rem !important;
        padding: 0.5rem 0.875rem !important;
    }

    /* Diviser par 2 la hauteur des vidéos sur mobile */
    .galerie-modern__video-wrapper {
        min-height: 250px !important;
    }

    /* REFONTE GALERIE PHOTOS MOBILE - Design moderne et interactif */
    .galerie-modern__viewer {
        padding: 0 !important;
        border-radius: 0 !important;
        margin: 0 !important;
    }

    /* Masquer la ligne verte en haut du viewer sur mobile */
    .galerie-modern__viewer::before {
        display: none !important;
    }

    .viewer {
        height: 55vh !important;
        min-height: 280px !important;
        max-height: 450px !important;
        padding: 0 !important;
        margin-bottom: 15px !important;
    }

    .Grand {
        border-radius: 0 !important;
        box-shadow: none !important;
        max-height: 100% !important;
        max-width: 100% !important;
        object-fit: contain !important;
    }

    /* Miniatures mobile - Scroll horizontal moderne */
    .thumbs {
        display: flex !important;
        gap: 10px !important;
        padding: 15px !important;
        overflow-x: auto !important;
        scroll-snap-type: x mandatory !important;
        -webkit-overflow-scrolling: touch !important;
        background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%) !important;
    }

    .thumbs .Petit {
        flex: 0 0 auto !important;
        width: 100px !important;
        height: 100px !important;
        border-radius: 12px !important;
        scroll-snap-align: start !important;
        border: 3px solid transparent !important;
        transition: all 0.3s ease !important;
        object-fit: cover !important;
        cursor: pointer !important;
    }

    .thumbs .Petit.actif {
        border: none !important;
        outline: 3px solid var(--color-primary) !important;
        outline-offset: -3px !important;
        transform: scale(1.15) !important;
        box-shadow: 0 8px 25px rgba(14, 37, 5, 0.5) !important;
        z-index: 10 !important;
        position: relative !important;
    }

    .thumbs .Petit:active {
        transform: scale(0.95) !important;
    }

    /* Boutons de navigation masqués sur mobile */
    .nav-btn {
        display: none !important;
    }

    /* Crédit et bouton télécharger - Repositionnés */
    .credit {
        bottom: 10px !important;
        right: 10px !important;
        font-size: 0.75rem !important;
        padding: 6px 10px !important;
    }

    .download {
        bottom: 10px !important;
        left: 10px !important;
        font-size: 0.85rem !important;
        padding: 8px 16px !important;
    }

    /* Header de section photos */
    .galerie-modern__header {
        padding: 0 15px !important;
    }

    .galerie-modern__title-icon {
        width: 40px !important;
        height: 40px !important;
    }

    .galerie-modern__title-icon svg {
        width: 22px !important;
        height: 22px !important;
    }
}

/* ============================================
   LOGOS DE PRESSE
   ============================================ */
.press-logo {
    height: 20px;
    width: auto;
    vertical-align: middle;
    margin-right: 10px;
    opacity: 0.85;
    transition: opacity 0.3s ease;
}

.critique_source:hover .press-logo {
    opacity: 1;
}


