/* Variables Globales (MISES À JOUR) */
:root {
    --color-primary: #1f4f8c;       /* Bleu plus foncé */
    --color-secondary: #006699;
    --color-action-orange: #e84e0f; /* VOTRE ORANGE (CTA) */
    --color-accent-green: #3dab47;  /* VOTRE VERT (Événements) */
    --color-accent-yellow: #ffd500; /* VOTRE JAUNE (Compte à rebours) */
    
    --color-light-blue: #f0f5fb;    /* Fond alterné (très clair) */
    --color-dark: #333333;
    
    --font-heading: 'Nunito', sans-serif;
    --font-body: 'Nunito', sans-serif;
}

/* RESET & TYPOGRAPHIE */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--color-primary); 
    background-color: white;
    scroll-behavior: smooth;
    font-size: 16px; 
    font-weight: 300; 
    font-style: italic;
    /* Assure que le contenu pousse le footer en bas */
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--color-primary);
    line-height: 1.2;
    margin-bottom: 15px;
    font-weight: 500; 
    font-style: italic;
}

h1 { font-size: 2.8rem; }
h2 { font-size: 2.2rem; }
h3 { font-size: 1.8rem; }

p { 
    margin-bottom: 16px; 
    text-align: left;
    font-weight: 300;
    font-style: italic;
    color: var(--color-primary); 
}

a {
    text-decoration: none;
    color: var(--color-secondary);
    transition: color 0.3s;
}
a:hover {
    color: var(--color-action-orange);
}

img {
    max-width: 100%;
    height: auto;
}

/* STRUCTURE & SECTIONS */
.section {
    padding: 60px 20px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}
.section-title {
    text-align: center;
}
.subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 40px;
}
.conteneur-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* BARRE FLOTTANTE RESEAUX SOCIAUX */
#floating-social-bar {
    position: fixed;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.9);
    border: 1px solid #eee;
    border-right: none;
    border-radius: 8px 0 0 8px;
    z-index: 1001;
    display: flex;
    flex-direction: column;
    box-shadow: -2px 2px 10px rgba(0,0,0,0.1);
}
.social-icon-link {
    padding: 12px;
    font-size: 20px;
    color: var(--color-primary);
    transition: background-color 0.3s, color 0.3s;
}
.social-icon-link:hover {
    background-color: var(--color-primary);
    color: white;
}
.social-icon-link:first-child { border-radius: 8px 0 0 0; }
.social-icon-link:last-child { border-radius: 0 0 0 8px; }

/* SECTION HÉROS (Titre principal) */
.background-container {
    background: var(--color-light-blue);
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}
.content {
    flex: 2;
    padding-right: 20px;
}
.content p {
    font-family: var(--font-heading);
    color: var(--color-primary);
    font-weight: 500;
    font-style: italic;
}

/* IMAGE PRINCIPALE (Logo + Marche) */
.image-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 20px 0 20px; 
}
.image-container img {
    width: 100%;
    height: auto;
    display: block;
}
.image-container img:first-child {
    margin-bottom: 20px; 
}


/* COMPTE À REBOURS */
.countdown-wrap {
    background-color: var(--color-accent-yellow); 
    color: var(--color-primary); 
    text-align: center;
    font-size: 2rem;
    font-family: var(--font-heading);
    padding: 25px 20px;
    font-weight: 500;
    font-style: italic;
    max-width: 1200px;
    margin: 0 auto;
}

/* BLOC IMAGE + TEXTE (Sylvain Pothier-Leroux) */
.image-texte-bloc {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 30px;
    background-color: var(--color-primary);
    color: white;
    border-radius: 8px;
    max-width: 1200px; 
    margin: 40px auto 0 auto;
    padding: 40px 20px; 
}
.colonne-texte {
    flex: 1;
    min-width: 300px;
    max-width: 65ch;
}
.colonne-texte p {
    color: white;
}
.colonne-image {
    flex: 1; 
    min-width: 300px;
    display: flex;
    justify-content: center; 
    align-items: flex-start;
}
.colonne-image img {
    width: 90%; 
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.text-block-accroche {
    text-align: left;
    font-size: 26px; 
    font-weight: 500;
    color: white; 
    font-family: var(--font-heading);
    font-style: italic;
}

.signature-block {
    text-align: center;
    margin-top: 20px;
}
.signature-block img {
    max-width: 400px; 
    height: auto;
    display: inline-block;
}

/* BLOC LOGO + TEXTE (Les Puces) */
.conteneur-page {
    background-color: var(--color-light-blue);
    border-radius: 8px;
    max-width: 1200px;
    margin: 40px auto 0 auto;
    padding: 10px 20px 0 20px; 
}
.logo-grid-section {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
    padding: 15px 0;
    border-bottom: 1px solid #dce8f5; 
}
.logo-grid-section:last-child {
    border-bottom: none;
}
.logo-col {
    flex: 0 0 100px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.logo-col img {
    width: 100px;
    height: auto;
}
.text-col {
    flex: 1 1 300px;
    text-align: left;
    display: flex; /* AJOUT : Active Flexbox */
    flex-direction: column; /* AJOUT : Aligne verticalement */
    justify-content: center; /* AJOUT : Centre le contenu verticalement */
    min-height: 105px; /* AJOUT : Force tous les blocs à la même hauteur */
}
.text-col p {
    font-size: 16px;
    margin-bottom: 8px;
}
.puce-titre {
    font-size: 20px;
    font-weight: 500;
    font-style: italic;
    color: var(--color-primary);
    font-family: var(--font-heading);
    margin-bottom: 10px;
}

/* BLOC TEXTE + IMAGE (Générique) */
.main-content {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    align-items: flex-start; /* Aligne en haut */
    max-width: 1200px;
    margin: 40px auto 0 auto;
    padding: 0 20px;
}

/* ▼▼▼ CORRECTION DU DÉCALLAGE ▼▼▼ */

/* Règle générale pour les blocs */
.image-block {
    flex: 0.7; /* PAR DÉFAUT : image petite */
    min-width: 250px;
}
.text-block {
    flex: 1.3; /* PAR DÉFAUT : texte large */
    min-width: 250px;
    text-align: left;
}

/* Règle SPÉCIFIQUE pour le bloc DC_SP (pour le remettre à 50/50) */
/* Cible le 3ème .main-content de la page */
.main-content:nth-of-type(3) .image-block,
.main-content:nth-of-type(3) .text-block {
    flex: 1; /* Rétablit l'équilibre 50/50 */
}

/* Règle générale pour TOUTES les images dans ces blocs */
.image-block img {
    height: auto;
    object-fit: contain; 
    display: block; 
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    cursor: zoom-in;
    transition: transform 0.3s ease-in-out;
    max-width: 100%; 
    margin: 0; /* Aligne TOUTES les images à gauche par défaut */
}

/* Règle SPÉCIFIQUE pour l'image du jardin (pour la CENTRER) */
.image-block-jardin img {
    max-height: 400px;
    object-fit: contain;
    margin: 0 auto; /* Centre l'image du jardin */
}
/* ▲▲▲ FIN DE LA CORRECTION DU DÉCALLAGE ▲▲▲ */


/* Effet au survol */
.image-block img:hover {
    transform: scale(1.03); 
}
/* Effet au clic (mode plein écran simplifié) */
.image-block img.is-fullscreen {
    position: fixed; 
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1.2); 
    max-width: 90vw; 
    max-height: 90vh; 
    z-index: 9999; 
    background-color: rgba(255, 255, 255, 0.95); 
    padding: 10px;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.3);
    cursor: zoom-out; 
}

.text-block ul {
    list-style-type: none;
    padding-left: 0;
}
.styled-list li {
    position: relative;
    padding-left: 0; 
    margin-bottom: 10px;
    font-size: 1.1rem;
    color: var(--color-primary);
    font-weight: 500;
    font-style: italic;
    list-style-type: none; /* Assure la suppression */
}
.styled-list li::before {
    content: none; /* Puces supprimées */
}

/* SECTION PRESSE & YOUTUBE */
.section-presse {
    text-align: center;
    max-width: 1200px;
    margin: 40px auto 0 auto;
    padding: 0 20px;
}
.section-presse h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 40px;
}
.bloc-presse, .bloc-video {
    flex: 1;
    min-width: 300px;
    border: 1px solid #ccc;
    padding: 15px;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.ratio-wrapper-16-9 {
    display: block;
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    background-color: #eee;
    overflow: hidden;
    border-radius: 5px;
}
.ratio-wrapper-16-9 img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* YOUTUBE DOUBLE CLIC RGPD */
.youtube-double-click {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    background-color: #000;
    border-radius: 5px;
    overflow: hidden;
    cursor: pointer;
}
.youtube-double-click .play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 56px;
    background-color: red;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: transform 0.2s;
}
.youtube-double-click:hover .play-button {
    transform: translate(-50%, -50%) scale(1.1);
}
.youtube-double-click .play-button::before {
    content: '';
    border-left: 20px solid white;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
}
.youtube-double-click .video-title {
    position: absolute;
    top: 10px;
    left: 10px;
    color: white;
    background-color: rgba(0,0,0,0.6);
    padding: 5px 10px;
    border-radius: 5px;
    z-index: 2;
    font-size: 0.9em;
    font-weight: 500;
    font-style: italic;
}
.youtube-double-click .rgpd-consent-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
    z-index: 10;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}
.youtube-double-click .rgpd-consent-overlay p {
    color: white;
    text-align: center;
    font-weight: 300;
    font-style: italic;
}
.youtube-double-click.show-consent .rgpd-consent-overlay {
    opacity: 1;
    pointer-events: all;
}
.youtube-double-click iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 5;
}

/* SECTION CONTACT */
.content-page-contact {
    background-color: var(--color-light-blue);
    padding-top: 40px;
    padding-bottom: 40px;
    border-radius: 8px;
    max-width: 1200px;
    margin: 40px auto 0 auto;
    padding: 40px 20px;
}
.contact-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    text-align: left;
    max-width: 1000px; 
    margin: 0 auto;
}
.formulaire-section, .calendrier-section {
    flex: 1;
    min-width: 300px;
}
.form-group {
    margin-bottom: 20px;
}
.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
    font-style: italic;
}
.form-group input[type="text"], 
.form-group input[type="email"], 
.form-group textarea, 
.form-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--color-primary);
    font-weight: 300;
    font-style: italic;
}
.rgpd-consent {
    display: flex;
    align-items: start;
    gap: 10px;
    font-size: 0.9em;
}
.rgpd-consent input {
    width: auto;
    margin-top: 5px;
    flex-shrink: 0;
}

.calendrier-event {
    border-left: 4px solid var(--color-accent-green); 
    padding-left: 15px;
    margin-bottom: 20px;
}
.calendrier-event strong {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--color-accent-green); 
    font-size: 1.4rem; 
    font-weight: 500;
    font-style: italic;
}
.calendrier-event strong i {
    color: var(--color-accent-green);
}
.calendrier-event p {
    margin-top: 5px;
    color: var(--color-primary);
    font-weight: 500;
    font-style: italic;
    font-size: 1.1rem; 
}

/* BOUTONS (CTA) */
.cta-button {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    text-transform: uppercase;
    transition: background-color 0.3s, transform 0.3s;
    cursor: pointer;
    border: none;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 500;
    font-style: italic;
}
.primary-cta {
    background-color: var(--color-action-orange); 
    color: white;
}
.primary-cta:hover {
    background-color: #c4430d; 
    transform: translateY(-2px);
}

/* FOOTER */
.footer {
    background-color: var(--color-primary);
    color: white;
    padding: 40px 20px;
    font-size: 0.9rem;
    margin-top: 40px;
}
.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}
.footer-section {
    flex: 1;
    min-width: 250px;
}
.footer-section h4 {
    color: var(--color-action-orange); 
    margin-bottom: 15px;
    font-size: 1.2rem;
}
.footer-section p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: white;
}
.footer-section i {
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}
.social-links a {
    color: white;
    margin-right: 15px;
    display: inline-block;
    transition: color 0.3s;
}
.social-links a svg {
    width: 28px;
    height: 28px;
    fill: currentColor; 
}
.social-links a:hover {
    color: var(--color-action-orange); 
}
.footer-section.social-links {
    text-align: left;
}
.footer-section.dons-link {
    text-align: right;
}
.legal-links a {
    color: rgba(255, 255, 255, 0.8);
    margin: 0 5px;
    text-decoration: underline;
}
.legal-links a:hover {
    color: white;
}
.legal-note {
    font-size: 0.8rem;
    opacity: 0.7;
    margin-top: 15px;
    color: white;
}
.footer-section .cta-button {
    background-color: white;
    color: var(--color-primary);
    font-size: 0.9rem;
    padding: 10px 15px;
}
.footer-section .cta-button:hover {
    background-color: #eeeeee;
    color: var(--color-primary);
    transform: translateY(-2px);
}


/* AJOUT : Section "Notre Projet" */
.separator-block {
    display: flex;
    flex-wrap: wrap; 
    justify-content: center;
    align-items: center;
    gap: 30px;
    background-color: var(--color-light-blue);
    max-width: 1200px;
    margin: 40px auto 0 auto;
    padding: 40px 20px;
    border-radius: 8px;
}
.separator-icon img {
    max-width: 100px; /* Picto réduit */
    height: auto;
}
.separator-text {
    flex: 1;
    min-width: 300px;
}
.separator-text h2 {
    font-size: 2.5rem; 
    margin-bottom: 10px;
}
.separator-text p {
    font-size: 1.2rem;
    font-weight: 500; 
    font-style: italic;
    color: var(--color-primary);
}

/* ================================================== */
/* STYLES POUR LA SECTION VIDÉO SIMPLE (NOUVEAU)      */
/* ================================================== */

/* SECTION VIDEO SIMPLE (Sans cadre, centrée) */
.simple-video-section {
    width: 100%;
    /* On garde la largeur max idéale pour un Short vertical */
    max-width: 450px; 
    margin: 40px auto; /* Centrage horizontal */
    padding: 0 20px; /* Petit padding latéral pour éviter que ça colle sur mobile */
}

.video-container-center {
    width: 100%;
}

.video-wrapper-vertical {
    position: relative;
    /* Ratio 133.33% (4:3 vertical) comme demandé pour réduire la hauteur */
    padding-bottom: 133.33%; 
    height: 0;
    overflow: hidden;
    background: transparent; /* Pas de fond noir */
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2); /* Ombre légère */
    /* z-index ajouté pour s'assurer que la vidéo est cliquable */
    z-index: 1;
}

.video-wrapper-vertical iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
    /* Force la vidéo au premier plan pour le clic */
    z-index: 10;
    pointer-events: auto;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    body { font-size: 15px; }
    h1 { font-size: 2.2rem; }
    h2 { font-size: 1.8rem; }
    h3 { font-size: 1.5rem; }

    /* Padding mobile unifié */
    .background-container, .image-container, .image-texte-bloc, .main-content, .section-presse, .conteneur-page, .content-page-contact {
        padding-left: 20px;
        padding-right: 20px;
    }

    .background-container {
        padding: 30px 20px;
    }
    .content p[style*="font-size: 44px"] { font-size: 28px !important; }
    .content p[style*="font-size: 32px"] { font-size: 18px !important; }

    .image-texte-bloc {
        flex-direction: column; 
    }
    .colonne-image img {
        width: 100%; 
    }

    .logo-grid-section {
        flex-direction: column;
        text-align: center;
        gap: 10px;
        padding: 20px 0;
    }
    .text-col {
        text-align: center;
    }
    .text-col h3, .text-col p, .text-col li { 
        text-align: center; 
    }
    .puce-titre { font-size: 20px; }

    .main-content {
        flex-direction: column;
    }
    .text-block ul { padding-left: 0; }
    .text-block li { padding-left: 0; text-align: left; }
    .styled-list li::before { display: none; }
    
    /* ▼▼▼ CORRECTION PUCE MOBILE ▼▼▼ */
    .styled-list li { 
        list-style-type: none; /* Supprime la puce */
        margin-left: 0;      /* Supprime la marge */
        font-weight: 300;
        font-style: italic;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    .footer-section p {
        justify-content: center;
    }
    .footer-section.social-links,
    .footer-section.dons-link {
        text-align: center;
    }
    
    #floating-social-bar {
        display: none; 
    }

    /* ▼▼▼ CORRECTION ALIGNEMENT MOBILE ▼▼▼ */
    .colonne-image,
    .colonne-texte,
    .bloc-presse, 
    .bloc-video,
    .image-block,
    .text-block {
        width: 100%;
        min-width: 100%;
        flex: 1 1 100%; /* Force la pleine largeur */
    }

    .colonne-image {
        justify-content: center;
    }
    
    .colonne-image img {
        width: 100%;
    }

    /* VIDÉO PLEIN ÉCRAN SUR MOBILE */
    .simple-video-section {
        width: 100%;
        max-width: 100vw;
        padding: 0; /* Pas de padding pour coller aux bords */
        margin: 20px 0;
    }
    
    .video-wrapper-vertical {
        border-radius: 0; /* Pas d'arrondi */
        /* Ratio optimisé pour mobile */
        padding-bottom: 133.33%; 
    }
}
/*
/* ==================================================
/* STYLES PAGE POLITIQUE DE CONFIDENTIALITÉ
/* ================================================== */

/* Assure que le contenu pousse le footer en bas */
body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}
main {
    flex-grow: 1; /* Permet au contenu principal de "pousser" le footer */
}


/* --- Header --- */
.policy-header {
    width: 100%;
    padding: 20px 0;
    text-align: center;
    background-color: #ffffff;
    border-bottom: 2px solid #f0f0f0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    
    /* AJOUT: Centrer le conteneur du logo */
    display: flex;
    justify-content: center;
}

/* AJOUT: Un conteneur pour le logo qui s'aligne avec le texte */
.policy-header a {
    max-width: 900px; /* Doit être la MÊME max-width que .policy-container */
    width: 100%;
    display: block;
    padding: 0 40px; /* Doit être le MÊME padding que .policy-container */
    box-sizing: border-box; /* Important */
}
/* --- Contenu (le texte) --- */
.policy-container {
    max-width: 900px; /* Largeur confortable pour la lecture */
    margin: 40px auto; /* Centre le conteneur */
    padding: 20px 40px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    line-height: 1.7; /* Interligne confortable */
    color: #333;
}

.policy-container h1 {
    color: #2c3e50; /* Couleur sombre */
    margin-bottom: 10px;
    font-size: 2.5em;
}

.policy-container .last-updated {
    font-style: italic;
    color: #777;
    margin-bottom: 30px;
}

.policy-container h2 {
    color: #16a085; /* Couleur des titres (à adapter à votre charte) */
    margin-top: 35px;
    margin-bottom: 15px;
    border-bottom: 1px solid #eee;
    padding-bottom: 8px;
    font-size: 1.8em;
}

.policy-container h3 {
    color: #34495e;
    margin-top: 25px;
    margin-bottom: 10px;
    font-size: 1.4em;
}

.policy-container p, 
.policy-container li {
    font-size: 16px;
    margin-bottom: 15px;
}

.policy-container ul,
.policy-container ol {
    padding-left: 30px;
}

.policy-container strong {
    color: #000;
}

/* --- Footer --- */
.policy-footer {
    width: 100%;
    text-align: center;
    padding: 40px 20px;
    background-color: #1f4f8c; /* Fond sombre (à adapter) */
    color: #ffffff;
    margin-top: 40px; /* Espace avant le footer */
}

.policy-footer h3 {
    margin: 0 0 20px 0;
    font-size: 24px;
    font-weight: 600;
}

.policy-social-links {
    margin-bottom: 30px;
}

.policy-social-links a {
    color: #ffffff;
    font-size: 24px; /* Taille des icônes */
    margin: 0 15px;
    text-decoration: none;
    transition: color 0.3s ease, transform 0.3s ease;
}

.policy-social-links a:hover {
    color: #1abc9c; /* Couleur au survol (à adapter) */
    transform: scale(1.1);
}

/* Bouton de retour */
.btn-back-home {
    display: inline-block;
    background-color: #e84e0f; /* Couleur du bouton (à adapter) */
    color: #ffffff;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-back-home:hover {
    background-color: #16a085; /* Plus foncé au survol */
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}
/* Bouton RGPD */
.btn-RGPG {
    display: inline-block;
    background-color: #e84e0f; /* Couleur du bouton (à adapter) */
    color:#ffffff;/* #e84e0f; */
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-RGPD:hover {
    background-color: #16a085; /* Plus foncé au survol */
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}
/*
/* CORRECTION : Lien RGPD dans le footer
/* ================================================== */

/* Cible le lien dans le h4 de la section de droite */
.footer-section.dons-link h4 a {
    color: inherit; /* Le lien hérite de la couleur du h4 (donc orange) */
    text-decoration: none; /* Enlève le soulignement */
    font-family: inherit; /* Assure la même police */
    font-weight: inherit; /* Assure le même poids */
    font-style: inherit; /* Assure le même style italique */
}

/* Optionnel : ajoute un léger feedback au survol */
.footer-section.dons-link h4 a:hover {
    text-decoration: underline;
    color: white; /* Ou une autre couleur de survol si vous préférez */
}
/*
/* ==================================================
/* STYLES PAGE ÉQUIPE
/* ================================================== */

.team-grid {
    display: grid;
    /* Crée une grille responsive : 
       - auto-fill: crée autant de colonnes que possible
       - minmax(150px, 1fr): chaque colonne fait au minimum 150px
         et au maximum 1 fraction (elles se partagent l'espace)
    */
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 30px; /* Espace entre les cartes */
    margin-top: 50px;
    padding: 10px;
}

.team-card {
    text-align: center;
    background-color: var(--color-light-blue); /* Fond bleu très clair */
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.team-card img {
    width: 100%;
    height: 150px; /* Force une hauteur fixe */
    object-fit: cover; /* S'assure que l'image couvre la zone */
    border-radius: 50%; /* Photos en cercle, c'est plus moderne */
    border: 3px solid white;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    margin-bottom: 15px;
}

.team-name {
    font-family: var(--font-heading);
    font-weight: 500;
    font-style: italic;
    font-size: 1.1rem;
    color: var(--color-primary);
}
/*
/* ==================================================
/* BLOC APPEL À L'ACTION (CTA) VERT - PAGE ÉQUIPE
/* ================================================== */

.cta-bloc-green {
    /* Utilise le vert de votre charte graphique */
    background-color: var(--color-accent-green); 
    color: white; /* Texte blanc comme demandé */
    
    padding: 50px 30px; /* Marge interne généreuse */
    margin: 40px auto 0 auto; /* Espace le bloc */
    max-width: 1200px; /* Garde la même largeur que les autres blocs */
    border-radius: 8px; /* Bords arrondis */
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.cta-bloc-green h3 {
    color: white;
    font-size: 2.2rem; /* Plus grand pour plus d'impact */
    margin-bottom: 10px;
}

.cta-bloc-green p {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 25px;
    text-align: center; /* Force le centrage */
    opacity: 0.95; /* Léger retrait pour le sous-titre */
}

/*
/* ==================================================
/* BLOC APPEL À L'ACTION (CTA) BLEU - PAGE ÉQUIPE
/* (Remplace .cta-bloc-green)
/* ================================================== */

.cta-bloc-blue {
    /* Utilise le BLEU principal de votre charte graphique */
    background-color: var(--color-primary); 
    color: white; /* Texte blanc */
    
    padding: 30px 20px; /* Padding (un peu réduit) */
    margin: 40px auto 0 auto;
    max-width: 1200px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.cta-bloc-blue h3 {
    color: white;
    font-size: 1.2rem; /* TAILLE RÉDUITE (avant 2.2rem) */
    margin-bottom: 10px;
}

.cta-bloc-blue p {
    color: white;
    font-size: 1.1rem; /* TAILLE RÉDUITE (avant 1.2rem) */
    margin-bottom: 16px;
    text-align: center;
    opacity: 0.95; 
}