/* ============================================================
   VOIRON.PHOTO — STYLE
   ============================================================
   TABLE DES MATIÈRES
   ─────────────────────────────────────────────────────────────
   00. VARIABLES & RESET
   01. TYPOGRAPHIE & LIENS
   02. BANNIÈRE D'ANNONCE (admin)
   03. BARRE ÉCOSYSTÈME
   04. HEADER & NAVIGATION
   05. MENU MOBILE (HAMBURGER)
   06. BOUTONS
   07. HERO
   08. BANDE TRUSTPILOT
   09. CARDS SERVICES
   10. SECTION "3 FAÇONS D'IMPRIMER"
   11. SECTION FORMATS / TARIFS
   12. SECTION POURQUOI NOUS
   13. CTA FINAL
   14. PAGE CONTACT
   15. UTILITAIRES
   16. POPUP & BANNIÈRE ADMIN
   17. KEYFRAMES
   18. RESPONSIVE
   ============================================================ */


/* ============================================================
   00. VARIABLES & RESET
   ============================================================ */

:root {
    --noir        : #1A1A1A;
    --ivoire      : #FDF9E7;
    --beige       : #E2D5B5;
    --ambre       : #F0A500;
    --ambre-hover : #C88A00;
}

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

body {
    font-family : 'Roboto', sans-serif;
    background  : var(--ivoire);
    color       : var(--noir);
    line-height : 1.6;
}

h1, h2, h3 { font-family: 'Playfair Display', serif; font-weight: 700; }
a          { text-decoration: none; color: inherit; }
img        { max-width: 100%; height: auto; display: block; }
main       { min-height: 60vh; }


/* ============================================================
   01. TYPOGRAPHIE & LIENS
   ============================================================ */

.lead {
    font-size  : 1.2rem;
    line-height: 1.8;
    color      : #333;
    font-weight: 400;
}

.highlight { color: var(--ambre); }


/* ============================================================
   02. BARRE ÉCOSYSTÈME + BANNIÈRE INTÉGRÉE
   ============================================================ */

.ecosystem-bar {
    background   : var(--noir);
    color        : var(--ivoire);
    display      : flex;
    align-items  : stretch;
    min-height   : 40px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

/* Portion gauche — bannière colorée (conditionnelle) */
/* Le fond part du bord écran, le texte s'aligne sur le logo */
.eco-banniere {
    display        : flex;
    align-items    : center;
    justify-content: center;
    gap            : 14px;
    padding-left   : max(20px, calc((100vw - 1200px) / 2 + 20px));
    padding-right  : 32px;
    font-size      : 0.85rem;
    font-weight    : 500;
    flex           : 1;
    min-width      : 0;
    clip-path      : polygon(0 0, calc(100% - 16px) 0, 100% 50%, calc(100% - 16px) 100%, 0 100%);
}

.eco-banniere-msg {
    overflow     : hidden;
    text-overflow: ellipsis;
    white-space  : nowrap;
}

.eco-banniere-lien {
    font-weight    : 700;
    text-decoration: underline;
    white-space    : nowrap;
    flex-shrink    : 0;
    opacity        : 0.9;
}

.eco-banniere-lien:hover { opacity: 1; }

/* Portion droite — liens écosystème */
.ecosystem-container {
    display    : flex;
    align-items: center;
    gap        : 15px;
    padding    : 0 20px;
    margin-left: auto;
    flex-shrink: 0;
}

.ecosystem-label {
    font-size  : 0.85rem;
    font-weight: 500;
    opacity    : 0.8;
}

.ecosystem-nav { display: flex; gap: 25px; }

.eco-link {
    text-decoration: none;
    font-size      : 0.85rem;
    color          : #999;
    transition     : all 0.3s ease;
    display        : flex;
    align-items    : center;
    gap            : 6px;
}

.eco-link:hover  { color: var(--ivoire); }
.eco-link.active { color: var(--ambre); font-weight: 600; }


/* ============================================================
   04. HEADER & NAVIGATION
   ============================================================ */

header {
    background   : #E8DCC0;
    padding      : 15px 0;
    border-bottom: 3px solid var(--ambre);
    box-shadow   : 0 2px 10px rgba(0,0,0,0.1);
    position     : sticky;
    top          : 0;
    z-index      : 1000;
}

.nav-container {
    max-width      : 1200px;
    margin         : 0 auto;
    padding        : 0 20px;
    display        : flex;
    justify-content: space-between;
    align-items    : center;
}

.logo     { display: flex; align-items: center; gap: 12px; }
.logo-img { height: 50px; width: auto; }

.logo-text {
    font-family    : 'Playfair Display', serif;
    font-weight    : 700;
    font-size      : 1.3rem;
    color          : var(--noir);
    line-height    : 1.2;
    letter-spacing : 1px;
}

.logo-text span {
    display       : block;
    font-size     : 0.75rem;
    font-family   : 'Roboto', sans-serif;
    font-weight   : 400;
    color         : var(--ambre);
    letter-spacing: 0;
    text-transform: uppercase;
}

.nav-links {
    display    : flex;
    align-items: center;
    gap        : 5px;
    list-style : none;
    margin     : 0;
    padding    : 0;
}

.nav-link {
    color          : var(--noir);
    text-decoration: none;
    font-weight    : 600;
    transition     : 0.3s;
    padding        : 10px 12px;
    border-radius  : 5px;
    background     : transparent;
    border         : none;
    cursor         : pointer;
    font-size      : 1rem;
    font-family    : 'Roboto', sans-serif;
}

.nav-link:hover {
    color     : var(--ambre);
    background: rgba(240,165,0,0.1);
}


/* ============================================================
   05. MENU MOBILE (HAMBURGER)
   ============================================================ */

.menu-toggle {
    display   : none;
    background: none;
    border    : none;
    font-size : 1.6rem;
    cursor    : pointer;
    color     : var(--noir);
    padding   : 5px;
    line-height: 1;
}

@media (max-width: 900px) {

    /* Hamburger */
    .menu-toggle { display: block; }

    .nav-links {
        display       : none;
        position      : fixed;
        top           : 0;
        right         : 0;
        width         : 280px;
        height        : 100vh;
        background    : var(--ivoire);
        flex-direction: column;
        align-items   : flex-start;
        padding       : 80px 20px 30px;
        box-shadow    : -5px 0 30px rgba(0,0,0,0.15);
        z-index       : 999;
        overflow-y    : auto;
        gap           : 5px;
    }

    .nav-links.active { display: flex; }

    .nav-link { width: 100%; padding: 12px 16px; font-size: 1rem; }

    /* Écosystème */
    .ecosystem-label { display: none; }
    .ecosystem-nav   { gap: 15px; flex-wrap: wrap; }
    .eco-link        { font-size: 0.75rem; }
    .eco-banniere    { display: none; }
}


/* ============================================================
   06. BOUTONS
   ============================================================ */

.btn-pro {
    background   : var(--ambre);
    color        : #fff;
    padding      : 12px 24px;
    border-radius: 6px;
    font-weight  : 600;
    font-size    : 0.95rem;
    transition   : background 0.2s, transform 0.15s;
    display      : inline-block;
    border       : none;
    cursor       : pointer;
    font-family  : 'Roboto', sans-serif;
}

.btn-pro:hover { background: var(--ambre-hover); transform: translateY(-1px); }

.btn-ivoire {
    background   : var(--ivoire);
    color        : var(--noir);
    padding      : 12px 24px;
    border-radius: 6px;
    font-weight  : 600;
    font-size    : 0.95rem;
    border       : 2px solid var(--beige);
    transition   : all 0.2s;
    display      : inline-block;
    cursor       : pointer;
    font-family  : 'Roboto', sans-serif;
}

.btn-ivoire:hover { background: var(--beige); border-color: var(--ambre); }

.btn-blanc {
    background   : #fff;
    color        : var(--ambre);
    padding      : 14px 30px;
    border-radius: 6px;
    font-weight  : 700;
    font-size    : 1rem;
    transition   : all 0.2s;
    display      : inline-block;
}

.btn-blanc:hover { background: var(--ivoire); transform: translateY(-2px); }

.btn-outline-blanc {
    background   : transparent;
    color        : #fff;
    padding      : 14px 30px;
    border-radius: 6px;
    font-weight  : 600;
    font-size    : 1rem;
    border       : 2px solid rgba(255,255,255,0.6);
    transition   : all 0.2s;
    display      : inline-block;
}

.btn-outline-blanc:hover { border-color: #fff; background: rgba(255,255,255,0.1); }

.btn-dl {
    display      : inline-flex;
    align-items  : center;
    gap          : 10px;
    background   : var(--noir);
    color        : var(--ivoire);
    padding      : 14px 28px;
    border-radius: 6px;
    font-weight  : 600;
    font-size    : 0.95rem;
    transition   : background 0.2s;
}

.btn-dl:hover { background: #333; }


/* ============================================================
   07. HERO
   ============================================================ */

.hero {
    padding              : 70px 20px;
    text-align           : center;
    color                : var(--ivoire);
    position             : relative;
    border-top           : 3px solid rgba(100,70,0,0.8);
    border-bottom        : 8px solid var(--ambre);
    box-shadow           : inset 0 2px 4px rgba(0,0,0,0.4), 0 8px 20px rgba(0,0,0,0.3);
    min-height           : 420px;
    display              : flex;
    align-items          : center;
    justify-content      : center;
    background-attachment: fixed;
    background-position  : center center;
    background-image     : linear-gradient(135deg, rgba(20,14,0,0.78) 0%, rgba(35,24,0,0.72) 40%, rgba(50,34,0,0.75) 100%),
                           url('../images/hero-bg.webp');
    background-size      : cover;
}

/* Overlay bruit de film */
.hero::before {
    content        : '';
    position       : absolute;
    inset          : 0;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="300" height="300"><filter id="noise"><feTurbulence baseFrequency="0.9" numOctaves="4"/></filter><rect width="100%" height="100%" filter="url(%23noise)" opacity="0.08"/></svg>');
    opacity        : 0.4;
    pointer-events : none;
    mix-blend-mode : overlay;
}

/* Vignette radiale */
.hero::after {
    content   : '';
    position  : absolute;
    inset     : 0;
    background: radial-gradient(ellipse at center, transparent 40%, rgba(0,0,0,0.4) 100%);
    pointer-events: none;
}

/* Contenu hero */
.hero-content {
    max-width : 950px;
    margin    : 0 auto;
    position  : relative;
    z-index   : 1;
    padding   : 20px;
    animation : fadeInUp 1s ease-out;
}

.hero h1 {
    font-size     : 4rem;
    line-height   : 1.15;
    margin-bottom : 30px;
    color         : var(--ivoire);
    letter-spacing: -1.5px;
    font-weight   : 700;
    animation     : fadeInUp 1s ease-out 0.2s both;
}

.highlight {
    color   : var(--ambre);
    position: relative;
    display : inline-block;
}

.hero h1 .highlight::after {
    content   : '';
    position  : absolute;
    bottom    : -5px;
    left      : 0; right: 0;
    height    : 3px;
    background: var(--ambre);
    box-shadow: 0 0 10px var(--ambre);
}

.hero-subtitle {
    font-size    : 1.35rem;
    line-height  : 1.7;
    color        : #ddd;
    max-width    : 720px;
    margin       : 0 auto 40px;
    animation    : fadeInUp 1s ease-out 0.4s both;
}

.hero-subtitle strong {
    color      : var(--ambre);
    font-weight: 700;
}

.hero-buttons {
    display        : flex;
    gap            : 15px;
    justify-content: center;
    flex-wrap      : wrap;
    animation      : fadeInUp 1s ease-out 0.6s both;
}

.page-hero .hero-buttons { margin-top: 28px; }

.hero-badge {
    display      : inline-flex;
    align-items  : center;
    gap          : 8px;
    margin-top   : 40px;
    background   : rgba(255,255,255,0.08);
    border       : 1px solid rgba(255,255,255,0.15);
    border-radius: 30px;
    padding      : 8px 20px;
    font-size    : 0.88rem;
    color        : var(--beige);
}


/* ============================================================
   07b. PAGE HERO (pages internes — tirages, développement, identité…)
   ============================================================ */

.page-hero {
    padding              : 55px 20px 65px;
    text-align           : center;
    color                : var(--ivoire);
    position             : relative;
    background-image     : linear-gradient(135deg, rgba(20,14,0,0.78) 0%, rgba(35,24,0,0.72) 40%, rgba(50,34,0,0.75) 100%),
                           url('../images/hero-bg.webp');
    background-size      : cover;
    background-attachment: fixed;
    background-position  : center center;
    border-bottom        : 6px solid var(--ambre);
}

/* Overlay bruit de film (même que .hero) */
.page-hero::before {
    content        : '';
    position       : absolute;
    inset          : 0;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="300" height="300"><filter id="noise"><feTurbulence baseFrequency="0.9" numOctaves="4"/></filter><rect width="100%" height="100%" filter="url(%23noise)" opacity="0.08"/></svg>');
    opacity        : 0.4;
    pointer-events : none;
    mix-blend-mode : overlay;
}

/* Passe tous les enfants directs au-dessus du ::before */
.page-hero > * { position: relative; z-index: 1; }

.breadcrumb {
    font-size      : 0.85rem;
    color          : #888;
    margin-bottom  : 20px;
    display        : flex;
    align-items    : center;
    justify-content: center;
    gap            : 8px;
    animation      : fadeInUp 0.8s ease-out both;
}

.breadcrumb a       { color: var(--ambre); transition: opacity 0.2s; }
.breadcrumb a:hover { opacity: 0.8; }

.page-hero h1 {
    font-size     : clamp(2rem, 5vw, 3.5rem);
    line-height   : 1.15;
    margin-bottom : 20px;
    letter-spacing: -1px;
    animation     : fadeInUp 0.8s ease-out 0.2s both;
}

.page-hero-lead {
    font-size  : 1.15rem;
    line-height: 1.8;
    color      : #ddd;
    max-width  : 660px;
    margin     : 0 auto 30px;
    animation  : fadeInUp 0.8s ease-out 0.4s both;
}

.page-hero-lead strong { color: var(--ambre); }

/* Badges (photos-identite) et délais (développement) dans le page-hero */
.hero-badges {
    display        : flex;
    flex-wrap      : wrap;
    justify-content: center;
    gap            : 10px;
    animation      : fadeInUp 0.8s ease-out 0.55s both;
}

/* Surcharge du .hero-badge global (margin-top inadapté aux multi-badges) */
.page-hero .hero-badge {
    margin-top   : 0;
    border-radius: 20px;
    padding      : 7px 18px;
    color        : #ddd;
}

@media (max-width: 768px) {
    .page-hero {
        padding              : 40px 20px 50px;
        background-attachment: scroll;
    }
}


/* ============================================================
   08. BANDE TRUSTPILOT
   ============================================================ */

.trustpilot-bar {
    background     : var(--noir);
    color          : #fff;
    padding        : 14px 20px;
    text-align     : center;
    display        : flex;
    align-items    : center;
    justify-content: center;
    flex-wrap      : wrap;
    gap            : 14px;
}

.trustpilot-label { font-weight: 600; font-size: 0.95rem; }

.trustpilot-link {
    display    : inline-flex;
    align-items: center;
    gap        : 8px;
    color      : #fff;
    transition : 0.2s;
}

.trustpilot-link:hover { color: #00b67a; }
.tp-stars { color: #00b67a; font-size: 1.2rem; letter-spacing: 2px; }
.tp-note  { font-weight: 700; font-size: 0.95rem; }
.tp-sep   { color: #666; }
.tp-count { font-size: 0.88rem; opacity: 0.8; }


/* ============================================================
   09. CARDS SERVICES
   ============================================================ */

.services-section { padding: 80px 20px; }

.services-grid {
    display              : grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap                  : 30px;
    max-width            : 1200px;
    margin               : 0 auto;
}

.service-card {
    background    : #fff;
    border-radius : 10px;
    padding       : 35px 28px;
    box-shadow    : 0 3px 15px rgba(0,0,0,0.07);
    transition    : transform 0.2s, box-shadow 0.2s;
    border-top    : 4px solid var(--ambre);
    display       : flex;
    flex-direction: column;
    gap           : 15px;
}

.service-card:hover { transform: translateY(-4px); box-shadow: 0 10px 30px rgba(0,0,0,0.12); }

.service-card-icon { font-size: 2.5rem; }
.service-card h3   { font-size: 1.3rem; color: var(--noir); }
.service-card p    { color: #555; line-height: 1.7; flex: 1; }

.service-card-link {
    color      : var(--ambre);
    font-weight: 600;
    font-size  : 0.92rem;
    display    : inline-flex;
    align-items: center;
    gap        : 5px;
    transition : gap 0.2s;
}

.service-card-link:hover { gap: 10px; }


/* ============================================================
   10. SECTION "3 FAÇONS D'IMPRIMER"
   ============================================================ */

.methodes-section {
    background: var(--beige);
    padding   : 80px 20px;
}

.methodes-grid {
    display              : grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap                  : 30px;
    max-width            : 1100px;
    margin               : 0 auto;
}

.methode-card {
    background   : var(--ivoire);
    border-radius: 10px;
    padding      : 35px 28px;
    text-align   : center;
}

.methode-num {
    width          : 48px;
    height         : 48px;
    background     : var(--ambre);
    color          : #fff;
    border-radius  : 50%;
    display        : flex;
    align-items    : center;
    justify-content: center;
    font-weight    : 700;
    font-size      : 1.2rem;
    margin         : 0 auto 20px;
    font-family    : 'Playfair Display', serif;
}

.methode-card h3 { font-size: 1.2rem; margin-bottom: 12px; }
.methode-card p  { color: #555; line-height: 1.7; font-size: 0.95rem; }

.methode-badge {
    display      : inline-block;
    margin-top   : 15px;
    background   : rgba(240,165,0,0.1);
    color        : var(--ambre);
    padding      : 5px 14px;
    border-radius: 20px;
    font-size    : 0.82rem;
    font-weight  : 600;
}


/* ============================================================
   11. SECTION FORMATS / TARIFS
   ============================================================ */

.formats-section { padding: 80px 20px; }

.formats-table {
    width          : auto;
    max-width      : 560px;
    margin         : 0 auto;
    border-collapse: collapse;
    background     : #fff;
    border-radius  : 10px;
    overflow       : hidden;
    box-shadow     : 0 3px 15px rgba(0,0,0,0.08);
}

.formats-table th {
    background : var(--ambre);
    color      : #fff;
    padding    : 12px 18px;
    text-align : center;
    font-family: 'Roboto', sans-serif;
    font-weight: 600;
    font-size  : 0.95rem;
}

.formats-table td {
    padding      : 11px 18px;
    border-bottom: 1px solid var(--beige);
    color        : var(--noir);
    font-size    : 0.95rem;
}

.formats-table tr:last-child td { border-bottom: none; }
.formats-table tr:hover td { background: rgba(240,165,0,0.04); }

.tarif-dl { text-align: center; margin-top: 30px; }

.formats-note {
    text-align: center;
    margin-top: 24px;
    color     : #555;
    font-size : 0.95rem;
}

.formats-link {
    color          : var(--ambre);
    font-weight    : 500;
    text-decoration: none;
}

.formats-link:hover { text-decoration: underline; }


/* ============================================================
   12. SECTION POURQUOI NOUS
   ============================================================ */

.pourquoi-section {
    background: var(--noir);
    color     : var(--ivoire);
    padding   : 80px 20px;
}

.pourquoi-grid {
    display              : grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap                  : 35px;
    max-width            : 1100px;
    margin               : 0 auto;
}

.pourquoi-item { text-align: center; }

.pourquoi-icon { font-size: 2.5rem; margin-bottom: 15px; }

.pourquoi-item h3 {
    font-size    : 1.15rem;
    color        : var(--ambre);
    margin-bottom: 10px;
}

.pourquoi-item p { color: #bbb; line-height: 1.7; font-size: 0.95rem; }


/* ============================================================
   13. CTA FINAL
   ============================================================ */

.cta-section {
    background: var(--ambre);
    color     : #fff;
    padding   : 80px 20px;
    text-align: center;
}

.cta-section h2 {
    font-size    : clamp(1.8rem, 4vw, 2.8rem);
    margin-bottom: 20px;
    color        : #fff;
}

.cta-section p {
    font-size   : 1.1rem;
    opacity     : 0.9;
    margin-bottom: 35px;
    max-width   : 600px;
    margin-left : auto;
    margin-right: auto;
}

.cta-buttons {
    display        : flex;
    gap            : 15px;
    justify-content: center;
    flex-wrap      : wrap;
}


/* ============================================================
   14. PAGE CONTACT
   ============================================================ */

.contact-grid {
    display              : grid;
    grid-template-columns: 1fr 1fr;
    gap                  : 50px;
    max-width            : 1100px;
    margin               : 0 auto;
    align-items          : start;
}

.contact-info h2 { font-size: 2rem; margin-bottom: 25px; }

.contact-bloc {
    display      : flex;
    align-items  : flex-start;
    gap          : 15px;
    margin-bottom: 25px;
}

.contact-bloc-icon {
    font-size  : 1.5rem;
    flex-shrink: 0;
    width      : 40px;
    text-align : center;
}

.contact-bloc-content h4 {
    font-family  : 'Roboto', sans-serif;
    font-weight  : 600;
    margin-bottom: 4px;
    color        : var(--ambre);
}

.contact-bloc-content a:hover { color: var(--ambre); }

.parking-badge {
    display      : inline-flex;
    align-items  : center;
    gap          : 8px;
    background   : rgba(240,165,0,0.1);
    border       : 1px solid rgba(240,165,0,0.3);
    color        : var(--ambre);
    padding      : 10px 18px;
    border-radius: 6px;
    font-weight  : 600;
    font-size    : 0.92rem;
    margin-top   : 20px;
}

.map-wrapper {
    border-radius: 10px;
    overflow     : hidden;
    box-shadow   : 0 5px 20px rgba(0,0,0,0.12);
    line-height  : 0;
}

.map-wrapper iframe { width: 100%; height: 380px; border: 0; }


/* ============================================================
   15. UTILITAIRES
   ============================================================ */

.container {
    max-width: 1200px;
    margin   : 0 auto;
    padding  : 0 20px;
}

.section-header {
    text-align   : center;
    margin-bottom: 50px;
}

.section-header h2    { font-size: clamp(1.5rem, 2.8vw, 2rem); margin-bottom: 12px; }
.section-subtitle     { color: #666; font-size: 1.1rem; }

.section-dark .section-header h2 { color: var(--ivoire); }
.section-dark .section-subtitle  { color: #aaa; }

.text-center { text-align: center; }
.mt-30       { margin-top: 30px; }
.mt-50       { margin-top: 50px; }


/* ============================================================
   16. POPUP & BANNIÈRE ADMIN
   ============================================================ */

.popup-overlay {
    position       : fixed;
    inset          : 0;
    background     : rgba(0,0,0,0.65);
    z-index        : 9999;
    display        : flex;
    align-items    : center;
    justify-content: center;
    padding        : 20px;
    animation      : fadeIn 0.3s ease;
}

.popup-box {
    background   : #fff;
    border-radius: 10px;
    padding      : 45px 40px 40px;
    max-width    : 500px;
    width        : 100%;
    position     : relative;
    text-align   : center;
    box-shadow   : 0 20px 60px rgba(0,0,0,0.4);
    animation    : slideUp 0.3s ease;
    border-top   : 5px solid var(--ambre);
}

.popup-close {
    position     : absolute;
    top          : 15px;
    right        : 15px;
    background   : none;
    border       : none;
    font-size    : 1.2rem;
    cursor       : pointer;
    color        : #999;
    padding      : 4px 8px;
    border-radius: 4px;
    transition   : all 0.2s;
}

.popup-close:hover { background: #f4f4f4; color: var(--noir); }

.popup-icon  { font-size: 2.5rem; margin-bottom: 15px; }

.popup-titre {
    font-family  : 'Playfair Display', serif;
    font-size    : 1.6rem;
    color        : var(--noir);
    margin-bottom: 15px;
}

.popup-message { color: #555; line-height: 1.7; font-size: 1rem; margin-bottom: 30px; }

.popup-btn {
    background  : var(--ambre);
    color       : #fff;
    border      : none;
    padding     : 13px 35px;
    border-radius: 6px;
    font-size   : 1rem;
    font-weight : 600;
    font-family : 'Roboto', sans-serif;
    cursor      : pointer;
    transition  : background 0.2s;
}

.popup-btn:hover { background: var(--ambre-hover); }


/* ============================================================
   16b. ATELIER LOCAL
   ============================================================ */

.local-section {
    padding      : 80px 20px;
    background   : var(--beige);
    border-top   : 3px solid var(--noir);
    border-bottom: 3px solid var(--noir);
}

.local-wrapper {
    max-width            : 1400px;
    margin               : 0 auto;
    display              : grid;
    grid-template-columns: 1fr 1fr;
    align-items          : center;
}

.local-image {
    height      : 100%;
    min-height  : 500px;
    border-right: 3px solid var(--noir);
}

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

.local-content { padding: 60px; }

.local-content h2 {
    font-size    : 2.5rem;
    margin-bottom: 25px;
    color        : var(--noir);
}

.local-address {
    display      : flex;
    align-items  : start;
    gap          : 15px;
    background   : var(--ivoire);
    padding      : 20px;
    border-radius: 8px;
    border-left  : 4px solid var(--ambre);
    margin-bottom: 25px;
}

.address-icon         { font-size: 1.8rem; }
.local-address strong { color: var(--noir); font-size: 1.1rem; }
.local-content p      { margin-bottom: 20px; line-height: 1.7; color: #333; }
.local-buttons        { display: flex; gap: 15px; flex-wrap: wrap; margin-top: 30px; }


/* ============================================================
   16c. TÉMOIGNAGES
   ============================================================ */

.testimonials-section { padding: 80px 20px; background: linear-gradient(135deg, #1a1205 0%, #2b1f0a 100%); color: var(--ivoire); }

.testimonials-section .section-header h2       { color: var(--ivoire); }
.testimonials-section .section-header .section-subtitle { color: #bbb; }

.testimonials-grid {
    display              : grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap                  : 30px;
    max-width            : 1200px;
    margin               : 0 auto 40px;
}

.testimonial-card {
    background   : rgba(255,255,255,0.05);
    padding      : 30px;
    border-radius: 8px;
    border       : 1px solid rgba(196,135,60,0.3);
    transition   : 0.3s;
}

.testimonial-card:hover { background: rgba(255,255,255,0.1); transform: translateY(-5px); }

.testimonial-stars  { color: var(--ambre); font-size: 1.5rem; margin-bottom: 15px; }
.testimonial-text   { font-style: italic; line-height: 1.7; margin-bottom: 15px; color: #e2d5b5; }
.testimonial-author { color: var(--ambre); font-weight: 600; }


/* ============================================================
   17. KEYFRAMES
   ============================================================ */

@keyframes fadeIn    { from { opacity: 0; } to { opacity: 1; } }
@keyframes slideUp   { from { transform: translateY(30px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
@keyframes fadeInUp  { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes glow      { 0%, 100% { opacity: 0.5; } 50% { opacity: 1; box-shadow: 0 0 10px var(--ambre); } }


/* ============================================================
   18. RESPONSIVE
   ============================================================ */

@media (max-width: 1024px) {
    .contact-grid { grid-template-columns: 1fr; }
    .map-wrapper iframe { height: 300px; }
}

@media (max-width: 768px) {
    .hero {
        padding              : 60px 15px;
        min-height           : 350px;
        background-attachment: scroll;
    }
    .services-section,
    .methodes-section,
    .formats-section,
    .pourquoi-section,
    .local-section,
    .testimonials-section,
    .cta-section   { padding: 55px 20px; }
    .section-header { margin-bottom: 35px; }

    .local-wrapper  { grid-template-columns: 1fr; }
    .local-image    { min-height: 300px; border-right: none; border-bottom: 3px solid var(--noir); }
    .local-content  { padding: 40px 20px; }
    .local-buttons  { flex-direction: column; }
}

@media (max-width: 600px) {
    .hero h1       { font-size: 2rem; letter-spacing: -1px; }
    .hero-subtitle { font-size: 1rem; padding: 12px 15px; }
    .hero-buttons  { flex-direction: column; align-items: stretch; }
    .cta-buttons   { flex-direction: column; align-items: center; }
    .formats-table { font-size: 0.88rem; }
    .formats-table th,
    .formats-table td { padding: 10px 12px; }
}

@media (max-width: 480px) {
    .nav-container { height: 60px; }
    .logo-img      { height: 36px; }
}

/* ============================================================
   PAGES LÉGALES (mentions-legales, politique-de-confidentialite)
   ============================================================ */

.legal-hero {
    background   : var(--beige);
    padding      : 60px 20px;
    border-bottom: 3px solid var(--noir);
    text-align   : center;
}

.legal-hero h1 {
    font-size    : 2.5rem;
    margin-bottom: 10px;
    color        : var(--noir);
}

.legal-hero p {
    font-size  : 0.95rem;
    color      : #666;
    font-style : italic;
}

.legal-section   { padding: 60px 20px 80px; background: #fff; }
.legal-container { max-width: 800px; }

.legal-block {
    margin-bottom : 45px;
    padding-bottom: 45px;
    border-bottom : 1px solid #eee;
}

.legal-block:last-of-type { border-bottom: none; }

.legal-block h2 {
    font-size    : 1.4rem;
    color        : var(--ambre);
    margin-bottom: 15px;
    padding-left : 15px;
    border-left  : 4px solid var(--ambre);
}

.legal-subheading {
    font-size    : 1.1rem;
    color        : var(--noir);
    margin-top   : 25px;
    margin-bottom: 10px;
    font-family  : 'Roboto', sans-serif;
    font-weight  : 600;
}

.legal-block p {
    color        : #444;
    line-height  : 1.8;
    margin-bottom: 12px;
}

.legal-block p:last-child { margin-bottom: 0; }

.legal-link {
    color          : var(--ambre);
    text-decoration: none;
    font-weight    : 500;
}

.legal-link:hover { text-decoration: underline; }

.legal-list {
    padding-left : 20px;
    margin-bottom: 15px;
    color        : #444;
}

.legal-list li {
    margin-bottom: 8px;
    line-height  : 1.7;
}

.legal-update {
    font-size : 0.85rem;
    color     : #999;
    text-align: right;
    margin-top: 20px;
}

@media (max-width: 768px) {
    .legal-hero h1  { font-size: 2rem; }
    .legal-block h2 { font-size: 1.2rem; }
}
