/* CSS Combiné - Page: galerie - 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/_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;
}


