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


