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

:root {
    --bleu: #1E438C;
    --bleu-clair: #2a5bbf;
    --ocre: #BD8F28;
    --ocre-fonce: #9e7621;
    --blanc: #FFFFFF;
    --noir: #111111;
    --gris-clair: #f5f5f5;
    --gris-moyen: #e0e0e0;
    --ombre: 0 20px 35px rgba(0,0,0,0.05);
    --transition: all 0.3s ease;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--noir);
    background-color: var(--blanc);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    /*font-family: 'Cormorant Garamond', serif;
    font-family: 'Poppins', sans-serif;*/
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    margin-bottom: 1rem;
}

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

.section {
    padding: 5rem 0;
}

/* ===== MENU ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: transparent;
    backdrop-filter: none;
    box-shadow: none;
    transition: transform 0.3s ease-in-out;
    z-index: 1000;
}
.navbar .logo a,
.navbar .nav-links a {
    color: white;
}
.navbar .nav-links a:hover,
.navbar .nav-links a.active {
    color: var(--ocre);
}
.btn-donate {
    background-color: var(--ocre);
    color: white !important;
    padding: 0.5rem 1.2rem !important;
    border-radius: 40px;
    font-weight: 700;
    margin-left: 0.5rem;
}
.btn-donate:hover {
    background-color: var(--ocre-fonce);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
.navbar.scrolled {
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(8px);
}
.navbar-hidden {
    transform: translateY(-100%);
}
.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}
.logo a {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    text-decoration: none;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 700;
}
.logo-icon {
    height: 90px;
    width: auto;
}
.nav-links {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    flex-wrap: nowrap;
}
.nav-links a {
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.burger {
    display: none;
    cursor: pointer;
}
.burger div {
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 5px;
    transition: var(--transition);
}
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}
.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}
@media (max-width: 992px) {
    .nav-links {
        gap: 1rem;
    }
}
@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        right: -100%;
        top: 70px;
        height: calc(100vh - 70px);
        background: rgba(0,0,0,0.95);
        flex-direction: column;
        width: 70%;
        padding: 2rem;
        transition: 0.5s;
        box-shadow: -5px 0 10px rgba(0,0,0,0.3);
        z-index: 999;
        gap: 1.5rem;
        align-items: flex-start;
    }
    .nav-links a {
        color: white;
    }
    .nav-links.nav-active {
        right: 0;
    }
    .nav-links a:hover,
    .nav-links a.active {
        color: var(--ocre);
    }
    .burger {
        display: block;
    }
    .burger.toggle .line1 {
        transform: rotate(-45deg) translate(-5px, 6px);
    }
    .burger.toggle .line2 {
        opacity: 0;
    }
    .burger.toggle .line3 {
        transform: rotate(45deg) translate(-5px, -6px);
    }
}

/* ===== HERO ===== */
.hero {
    height: 100vh;
    min-height: 700px;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    /*background-attachment:scroll;*/
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
}
.hero-content {
    max-width: 800px;
    padding: 2rem;
}
.hero-title {
    font-size: 4rem;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
    text-transform: uppercase;
}
.hero-subtitle {
    font-size: 1.8rem;
    margin-bottom: 2rem;
}
.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    border: 2px solid transparent;
}
.btn-primary {
    background-color: var(--ocre);
    color: white;
}

.uniq-adherer {
    margin-top:20px;
}
.btn-primary:hover {
    background-color: var(--ocre-fonce);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}
.btn-secondary {
    background-color: transparent;
    border-color: white;
    color: white;
}
.btn-secondary:hover {
    background-color: white;
    color: var(--bleu);
    transform: translateY(-3px);
}
.hero-scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}
@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

/* ===== SECTIONS COMMUNES ===== */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}
.section-title {
    font-size: 2.8rem;
    color: var(--bleu);
    text-transform: uppercase;
    letter-spacing: 1px;
}
.title-decor {
    width: 80px;
    height: 3px;
    background: var(--ocre);
    margin: 0.5rem auto;
}

/* ===== ACCUEIL ===== */
.cta-banner {
    background: linear-gradient(135deg, var(--bleu), #0f2a5a);
    border-radius: 20px;
    padding: 4rem 2rem;
    text-align: center;
    color: white;
}
.cta-banner h2 {
    text-transform: uppercase;
}
.highlights-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    text-align: center;
}
.highlight-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--ombre);
    transition: var(--transition);
}
.highlight-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 40px rgba(0,0,0,0.1);
}
.highlight-card i {
    font-size: 2.5rem;
    color: var(--ocre);
    margin-bottom: 1rem;
}
.highlight-card h3 {
    text-transform: uppercase;
}
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}
.news-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--ombre);
    transition: var(--transition);
}
.news-card:hover {
    transform: translateY(-5px);
}
.news-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}
.news-card h3, .news-card p, .news-date {
    padding: 0 1.5rem;
}

.news-card p {
    margin-bottom: 1rem;
}

.news-date {
    color: var(--ocre);
    font-size: 0.9rem;
    margin: 1rem 0 0.5rem;
}
.news-card h3 {
    text-transform: uppercase;
    font-size: 1.2rem;
}
.read-more {
    display: inline-block;
    margin: 1rem 1.5rem 1.5rem;
    color: var(--bleu);
    text-decoration: none;
    font-weight: 600;
}

/* ===== PAGE MOUVEMENT ===== */
.page-hero {
    height: 100vh;
    min-height: 400px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-top: 0;
}
.page-hero-content h1 {
    font-size: 3.5rem;
    text-transform: uppercase;
}
.movement-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
    align-items: center;
}
.movement-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: var(--ombre);
}
.movement-text h2 {
    text-transform: uppercase;
}
.pillars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}
.pillar-card {
    background: var(--gris-clair);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    transition: var(--transition);
}
.pillar-card:hover {
    transform: translateY(-5px);
    background: white;
    box-shadow: var(--ombre);
}
.pillar-card i {
    font-size: 2.5rem;
    color: var(--ocre);
    margin-bottom: 1rem;
}
.pillar-card h3 {
    text-transform: uppercase;
}
.movement-block {
    margin: 2rem 0;
    margin-top: 1.5rem;
}
.movement-block h2 {
    text-transform: uppercase;
}
.doctrine-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}
.doctrine-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--ombre);
    transition: var(--transition);
}
.doctrine-card:hover {
    transform: translateY(-5px);
}
.doctrine-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}
.doctrine-card h3 {
    padding: 1rem 1.5rem 0;
    font-size: 1.3rem;
    text-transform: uppercase;
}
.doctrine-card p {
    padding: 0 1.5rem 1.5rem;
    color: #555;
}

/* ===== PAGE SOUTENIR ===== */

.support-intro p{
    margin-bottom: 15px;
}

.support-intro h2 {
    text-transform: uppercase;
}
.support-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}
.support-card {
    background: var(--gris-clair);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
}
.support-card h3 {
    text-transform: uppercase;
}
.embed-container {
    margin-top: 1.5rem;
    background: white;
    border-radius: 10px;
    overflow: hidden;
}
.embed-iframe {
    width: 100%;
    height: 500px;
    border: none;
}
.donation-block {
    margin-top: 3rem;
    text-align: center;
}
.donation-block h3 {
    text-transform: uppercase;
}

/* ===== PAGE FAMILLE ROYALE ===== */
.royal-intro {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    margin-bottom: 3rem;
}
.royal-portrait {
    width: 250px;
    border-radius: 10px;
    box-shadow: var(--ombre);
}
.royal-bio h2 {
    text-transform: uppercase;
}
.royal-details h3,
.royal-children h3,
.royal-claim h3 {
    text-transform: uppercase;
}
.children-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 1.5rem;
}
.child-card {
    background: #fafaf5;
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid var(--ocre);
}
.child-card h4 {
    text-transform: uppercase;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--noir);
    color: #ccc;
    padding: 3rem 0 1rem;
    margin-top: 3rem;
}
.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}
.footer h3 {
    color: white;
    text-transform: uppercase;
}
.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}
.social-links a {
    color: white;
    background: rgba(255,255,255,0.1);
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    text-decoration: none;
}
.social-links a:hover {
    background: var(--ocre);
    transform: translateY(-3px);
}
.footer-contact form {
    margin-top: 1rem;
}
.footer-contact .form-group {
    margin-bottom: 0.8rem;
}
.footer-contact input, .footer-contact textarea {
    width: 100%;
    padding: 0.7rem;
    border: 1px solid rgba(255,255,255,0.2);
    background: rgba(255,255,255,0.05);
    border-radius: 8px;
    color: white;
    font-family: inherit;
}
.footer-contact input:focus, .footer-contact textarea:focus {
    outline: none;
    border-color: var(--ocre);
}
.btn-submit {
    background-color: var(--ocre);
    color: white;
    border: none;
    padding: 0.7rem 1.5rem;
    border-radius: 40px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    width: 100%;
}
.btn-submit:hover {
    background-color: var(--ocre-fonce);
}
.form-status {
    margin-top: 0.5rem;
    font-size: 0.8rem;
    display: none;
}
.form-status.success {
    color: #4caf50;
    display: block;
}
.form-status.error {
    color: #f44336;
    display: block;
}
.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: 1px solid #444;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    .hero-subtitle {
        font-size: 1.2rem;
    }
    .section-title {
        font-size: 2rem;
    }
    .highlights-grid {
        grid-template-columns: 1fr;
    }
    .movement-intro-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .pillars-grid {
        grid-template-columns: 1fr;
    }
    .doctrine-grid-modern {
        grid-template-columns: 1fr;
    }
    .royal-intro {
        flex-direction: column;
        text-align: center;
    }
    .royal-portrait {
        width: 80%;
        max-width: 300px;
        margin: 0 auto;
    }
    .page-hero-content h1 {
        font-size: 2.2rem;
    }
}

/* ===== VARIABLES COULEURS ===== */
:root {
    --bleu: #1E438C;          /* RGB 30,67,140 */
    --bleu-clair: #2a5bbf;
    --bleu-fonce: #0f2a5a;
    --ocre: #BD8F28;
    --ocre-fonce: #9e7621;
    --blanc: #FFFFFF;
    --noir: #111111;
    --gris-clair: #f5f5f5;
    --gris-moyen: #e0e0e0;
    --ombre: 0 20px 35px rgba(0,0,0,0.05);
    --transition: all 0.3s ease;
}

/* Bouton don dans le menu */
.btn-donate {
    background-color: var(--ocre);
    color: white !important;
    padding: 0.5rem 1.2rem !important;
    border-radius: 40px;
    font-weight: 700;
    margin-left: 0.5rem;
    transition: all 0.3s ease;
}
.btn-donate:hover {
    background-color: white;
    color: var(--ocre) !important;
    transform: translateY(0px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Boutons principaux (plus de bleu) */
.btn-primary {
    background-color: var(--bleu);
    color: white;
}
.btn-primary:hover {
    background-color: var(--bleu-clair);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

/* Section header : couleur bleue pour le titre */
.section-title {
    color: var(--bleu);
}

/* Titres et décors */
.title-decor {
    background: var(--bleu);  /* au lieu de ocre */
}

/* Cartes des piliers, highlights, etc. */
.highlight-card i,
.pillar-card i,
.small-card i {
    color: var(--bleu); /* au lieu de ocre */
}

/* Lecture plus */
.read-more {
    color: var(--bleu);
}

/* Footer : surlignage hover des liens sociaux */
.social-links a:hover {
    background: var(--bleu);
}

/* Bouton d'envoi formulaire */
.btn-submit {
    background-color: var(--bleu);
}
.btn-submit:hover {
    background-color: var(--bleu-clair);
}

/* Ajout de la nouvelle mise en page pour la page Soutenir */
.adhesion-block {
    background: var(--gris-clair);
    padding: 2rem;
    border-radius: 20px;
    margin-bottom: 3rem;
    text-align: center;
}
.adhesion-block h3 {
    font-size: 1.8rem;
    text-transform: uppercase;
    margin-bottom: 1rem;
}
.small-blocks-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}
.small-card {
    background: var(--gris-clair);
    padding: 1.5rem;
    border-radius: 20px;
    text-align: center;
    transition: var(--transition);
}
.small-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--ombre);
}
.small-card i {
    font-size: 2rem;
    margin-bottom: 1rem;
}
.small-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    text-transform: uppercase;
}
.small-card .btn {
    margin-top: 1rem;
    padding: 0.4rem 1rem;
    font-size: 0.9rem;
}
.donation-block {
    background: var(--gris-clair);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
}
.donation-block h3 {
    font-size: 1.8rem;
    text-transform: uppercase;
}
.embed-container {
    margin-top: 1.5rem;
    background: white;
    border-radius: 10px;
    overflow: hidden;
}
.embed-iframe {
    width: 100%;
    height: 500px;
    border: none;
}

/* Responsive pour petits écrans */
@media (max-width: 768px) {
    .small-blocks-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .embed-iframe {
        height: 400px;
    }
    .adhesion-block h3,
    .donation-block h3 {
        font-size: 1.5rem;
    }
}

:root {
    --bleu: #1E438C;
    --bleu-clair: #2a5bbf;
    --bleu-fonce: #0f2a5a;
    --ocre: #BD8F28;
    --ocre-fonce: #9e7621;
    --blanc: #FFFFFF;
    --noir: #111111;
    --gris-clair: #f5f5f5;
    --gris-moyen: #e0e0e0;
    --ombre: 0 20px 35px rgba(0,0,0,0.05);
    --transition: all 0.3s ease;
}

/* Boutons primaires (ex: "Découvrir le mouvement") : bleu */
.btn-primary {
    background-color: var(--bleu);
    color: white;
}
.btn-primary:hover {
    background-color: var(--bleu-clair);
}

/* Bouton « Faire un don » dans le menu : ocre */
.btn-donate {
    background-color: var(--ocre);
    color: white !important;
}
.btn-donate:hover {
    background-color: white;
    color: var(--ocre) !important;
}

/* Trait sous les titres : ocre */
.title-decor {
    background: var(--ocre);
}

/* Icônes des cartes : ocre */
.highlight-card i,
.pillar-card i,
.small-card i {
    color: var(--ocre);
}

/* Liens du menu au survol : ocre */
.nav-links a:hover,
.nav-links a.active {
    color: var(--ocre);
}

/* Couleur du texte des dates dans les actualités */
.news-date {
    color: var(--ocre);
}

/* ===== COMPTEURS ===== */
.counters {
    /*background: linear-gradient(135deg, var(--bleu-fonce), var(--bleu));*/
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    text-align: center;
}
.counters-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}
.counter-item {
    padding: 1rem;
}
.counter-number {
    font-size: 5rem;
    font-weight: 700;
    font-family: 'Manrope', sans-serif;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}
.counter-label {
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .counters-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    .counter-number {
        font-size: 3.5rem;
    }
    .counter-label {
        font-size: 0.8rem;
    }
}

.titre-blanc {
    color:var(--blanc);
    font-size:xx-large;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;          /* espacement entre les boutons */
    flex-wrap: wrap;    /* pour passer à la ligne sur mobile */
    margin-top: 2rem;
}

.hero-buttons .btn {
    margin: 0;          /* supprime les marges individuelles qui pourraient gêner */
}

.title-royalty {
    margin-top: 25px;
}

/* ===== ARTICLES SIMILAIRES ===== */
.related-articles {
    margin-top: 3rem;
}
.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}
.related-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--ombre);
    transition: var(--transition);
}
.related-card:hover {
    transform: translateY(-5px);
}
.related-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
}
.related-date {
    color: var(--ocre);
    font-size: 0.9rem;
    margin: 1rem 1.5rem 0.5rem;
}
.related-card h3 {
    padding: 0 1.5rem;
    font-size: 1.2rem;
    text-transform: uppercase;
}
.related-card p {
    padding: 0 1.5rem;
    margin-bottom: 1rem;
    color: #555;
}
.related-card .read-more {
    margin: 0 1.5rem 1.5rem;
}

/* ===== PAGE ARTICLE ===== */
.article-container {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    border-radius: 24px;
    box-shadow: var(--ombre);
    padding: 3rem;
}

.article-meta {
    font-size: 0.9rem;
    color: var(--ocre);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2rem;
    text-align: center;
}

.article-body {
    font-family: 'Manrope', sans-serif;
    font-size: 1.1rem;
    line-height: 1.7;
    color: #2c3e4f;
}

.article-body h2,
.article-body h3 {
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    margin: 2rem 0 1rem;
    color: var(--bleu);
}

.article-body p {
    margin-bottom: 1.5rem;
}

.article-body img {
    max-width: 100%;
    height: auto;
    border-radius: 16px;
    margin: 2rem 0;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.article-body blockquote {
    border-left: 4px solid var(--ocre);
    padding-left: 1.5rem;
    margin: 1.5rem 0;
    font-style: italic;
    color: #4a5568;
}

.article-body ul,
.article-body ol {
    margin: 1rem 0 1.5rem 2rem;
}

/* ===== ARTICLES SIMILAIRES ===== */
.related-articles {
    margin-top: 5rem;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.related-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--ombre);
    transition: all 0.3s ease;
}

.related-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 30px rgba(0,0,0,0.1);
}

.related-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.related-date {
    color: var(--ocre);
    font-size: 0.8rem;
    margin: 1rem 1.5rem 0.5rem;
    text-transform: uppercase;
}

.related-card h3 {
    font-size: 1.2rem;
    margin: 0 1.5rem 0.8rem;
    font-weight: 600;
    line-height: 1.4;
}

.related-card p {
    margin: 0 1.5rem 1rem;
    font-size: 0.9rem;
    color: #4a5568;
}

.related-card .read-more {
    display: inline-block;
    margin: 0 1.5rem 1.5rem;
    font-weight: 600;
    text-decoration: none;
    color: var(--bleu);
    transition: color 0.2s;
}

.related-card .read-more:hover {
    color: var(--ocre);
}

/* Responsive */
@media (max-width: 768px) {
    .article-container {
        padding: 1.5rem;
    }
    .article-body {
        font-size: 1rem;
    }
    .related-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* Cartes cliquables */
.news-card {
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}
.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/* Suppression du bouton "Lire la suite" */
.read-more {
    display: none;
}

/* Pagination */
.pagination {
    margin-top: 3rem;
    text-align: center;
}
.pagination-controls {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}
.page-btn {
    background: var(--gris-clair);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-weight: 600;
    cursor: pointer;
    transition: 0.2s;
}
.page-btn.active {
    background: var(--bleu);
    color: white;
}
.page-btn:hover {
    background: var(--ocre);
    color: white;
}

.back-to-news {
    margin-bottom: 2rem;
    text-align: left;
}
.back-to-news .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.read-more {
    display: none;
}

h1 {
    padding-left: 30px;
    padding-right: 30px;
}

.back-to-news {
    margin-bottom: 2rem;
}
.back-to-news .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

#backButton {
    color: var(--bleu-clair);
    margin-bottom: 10px;
}

.related-card {
    cursor: pointer;
}

#article-hero {
    margin-bottom: -30px;
}

.adhesion-block {
    display: block !important;
}

/*body .adhesion-block {
    display: block !important;
}

.adhesion-block:not(#\9) {
    display: block !important;
}*/

/* ===== MENU ===== */
.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1rem 1rem 1rem;
    max-width: 1400px;
    margin: 0 auto;
}

.nav-links {
    margin-top: -1rem;
}

/* Point d'arrêt pour le burger : désormais à 992px au lieu de 768px */
@media (max-width: 992px) {
    .nav-links {
        position: fixed;
        right: -100%;
        /*top: 85px;*/
        top: 0px;
        height: calc(100vh - 70px);
        background: rgba(0,0,0,0.95);
        flex-direction: column;
        width: 70%;
        padding: 2rem;
        transition: 0.5s;
        box-shadow: -5px 0 10px rgba(0,0,0,0.3);
        z-index: 998;
        gap: 1.5rem;
        align-items: flex-start;
        padding-top: 3rem; /*1.5*/
        height:100%;

    }
    .nav-links a {
        color: white;
    }
    .nav-links.nav-active {
        right: 0;
    }
    .nav-links a:hover,
    .nav-links a.active {
        color: var(--ocre);
    }
    .burger {
        display: block;
    }
    .burger.toggle .line1 {
        transform: rotate(-45deg) translate(-5px, 6px);
    }
    .burger.toggle .line2 {
        opacity: 0;
    }
    .burger.toggle .line3 {
        transform: rotate(45deg) translate(-5px, -6px);
    }

    .btn-donate {
        margin-left: -5px;
        margin-top: -5px;
    }
}

@media (min-width: 993px) and (max-width: 1200px) {
    .nav-links {
        gap: 1rem;
    }
    /*.nav-links a {
        font-size: 0.9rem;
    }*/
}

.embed-container {
    padding: 0rem;
}

.adhesion-block, .donation-block{
    padding-left: 1rem;
    padding-right: 1rem;
}

/*@media (max-width: 992px) {
    .donation-block, .adhesion-block, .small-blocks-grid {
        margin-left: -1rem;
        margin-right: -1rem;
    }
}*/

#achats:hover {
    transform: translateY(0px);
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.support-intro {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    border-radius: 24px;
    box-shadow: var(--ombre);
    padding: 2.5rem;
    margin-bottom: 2rem;
    margin-top: -2rem; /*remplacer*/
}

.support-intro {
    font-family: 'Manrope', sans-serif;
    font-size: 1.1rem;
    line-height: 1.7;
    color: #2c3e4f;
}

.support-intro h2,
.support-intro h3 {
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    /*margin: 2rem 0 1rem;*/
    color: var(--bleu);
    /*text-align: center;*/
}

.support-intro p {
    margin-bottom: 1rem;
}

#burger {
    z-index: 999;
}

#insta-agir {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    gap:0.2rem;
    color: var(--bleu);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s ease;
    border-bottom: 1px solid transparent;
}
#insta-agir::before {
    content: "\f16d";
    font-family: "Font Awesome 6 Brands";
    font-weight: 400;
    font-size: 1rem;
}
#insta-agir:hover {
    color: var(--ocre);
    border-bottom-color: var(--ocre);
    transform: translateY(-1px);
}

/* Image carte antennes */ 

.movement-antennes-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
    align-items: center;
}
.movement-antennes-grid .movement-image {
    order: 1; /* l'image apparaît à gauche */
}
.movement-antennes-grid .movement-block {
    order: 2; /* le texte apparaît à droite */
}
/* Responsive : sur mobile, on repasse en colonne et l'image passe au-dessus */
@media (max-width: 768px) {
    .movement-antennes-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .movement-antennes-grid .movement-image {
        order: 2;
        margin-bottom: 0.5rem;
        margin-top: -2rem;
    }
    .movement-antennes-grid .movement-block {
        order: 1;
    }
}

#doctrine-titre {
    margin-top: -1.8rem;
}

#strong-agir {
    font-weight: 500;
}

/* Citation élégante pour Louis XX */

.royal-quote {
    margin: 2rem auto;
    max-width: 700px;
    text-align: center;
    font-family: 'Manrope', sans-serif;
    font-weight: 400;
    font-size: 1.5rem;
    line-height: 1.5;
    color: #4a5568;
    border-top: 1px solid rgba(189, 143, 40, 0.3);
    border-bottom: 1px solid rgba(189, 143, 40, 0.3);
    padding: 1rem 0;
}
.royal-quote p {
    font-style: italic;
    margin-bottom: 0.5rem;
}
.royal-quote cite {
    font-style: normal;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--ocre);
}
@media (max-width: 768px) {
    .royal-quote {
        padding: 0.8rem 0;
    }
}

.royal-family {
    margin-bottom: -3rem;
}

#bon-a-savoir {
    margin-top: 2rem;
    margin-bottom: -3rem;
}

#don, #adhesion {
    transition: var(--transition);
}

#don:hover, #adhesion:hover {
    transform: translateY(0px);
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

#adhesion {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    gap:0.2rem;
    color: var(--bleu);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s ease;
    border-bottom: 1px solid transparent;
}

#adhesion:hover {
    color: var(--ocre);
    border-bottom-color: var(--ocre);
    transform: translateY(-1px);
    box-shadow: none;
}

#titre-h3-adhesion {
    color: var(--noir) !important;
}

#intro-dons {
    margin-top: 1rem;
    margin-bottom: -1rem;
}

#bon-a-savoir {
    margin-top: 4rem;
}

#p-soustitre {
    padding-left: 2rem;
    padding-right: 2rem;
}
/*
@media (max-width: 992px) {
    .nav-links {
        position: fixed;
        right: -100%;
        top: 70px;
        width: 70%;
        height: calc(100vh - 70px);
        background: rgba(0,0,0,0.95);
        flex-direction: column;
        padding: 2rem;
        transition: 0.5s;
        box-shadow: -5px 0 10px rgba(0,0,0,0.3);
        z-index: 999;
        gap: 1.5rem;
        align-items: flex-start;
        overflow-y: auto;
    }
    .nav-links.nav-active {
        right: 0;
    }
    .burger {
        display: block;
    }
    .burger.toggle .line1 {
        transform: rotate(-45deg) translate(-5px, 6px);
    }
    .burger.toggle .line2 {
        opacity: 0;
    }
    .burger.toggle .line3 {
        transform: rotate(45deg) translate(-5px, -6px);
    }
    .btn-donate {
        margin-left: 0;
        margin-top: 0;
    }
}*/

/* Correction du débordement horizontal et du menu burger */
html, body {
    overflow-x: hidden;
    max-width: 100%;
}

.nav-links {
    right: -100%;
    transition: right 0.3s ease;
}

.nav-links.nav-active {
    right: 0;
}

@media (max-width: 992px) {
    .burger {
        display: block;
        margin-left: auto;
    }
    .nav-links {
        position: fixed;
        /*top: 70px;*/
        width: 80%;
        height: calc(100vh - 70px);
        height: 100%;
        background: rgba(0,0,0,0.95);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        align-items: flex-start;
        overflow-y: auto;
        z-index: 999;
        padding-top: 4rem;
    }
    .nav-links a {
        color: white;
    }
    .nav-links a:hover,
    .nav-links a.active {
        color: var(--ocre);
    }
}

.footer-legal {
    margin-top: 1.5rem;
    font-size: 0.8rem;
    text-align: center;
}
.footer-legal a {
    color: #ccc;
    text-decoration: none;
    margin: 0 0.2rem;
}
.footer-legal a:hover {
    color: var(--ocre);
}

#cookie-banner {
    font-size: 0.8rem;
}
@media (max-width: 768px) {
    .cookie-banner-content {
        flex-direction: column;
        text-align: center;
    }
}

.footer-legal {
    margin-top: 1.5rem;
    font-size: 0.8rem;
    text-align: left;
}
.footer-legal a {
    color: #ccc;
    text-decoration: none;
    margin: 0 0.2rem;
}
.footer-legal a:hover {
    color: var(--ocre);
}
@media (max-width: 768px) {
    .footer-legal {
        text-align: center;
    }
}

.required-mention {
    font-size: 0.7rem;
    color: #999;
    margin-top: 0.5rem;
    text-align: right;
}

/* ===== BANDEAU COOKIES MODERNE ===== */
#cookie-banner {
    background: rgba(0, 0, 0, 0.9) !important;
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-family: 'Manrope', sans-serif;
}
.cookie-banner-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    margin-top: 1rem;
    margin-bottom: 1rem;
}
.cookie-banner-content p {
    flex: 1;
    margin: 0;
    font-size: 0.85rem;
    line-height: 1.4;
    color: #e0e0e0;
}
.cookie-buttons {
    display: flex;
    gap: 0.8rem;
}
.cookie-btn {
    padding: 0.5rem 1.2rem;
    border-radius: 40px;
    font-weight: 500;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
}
.cookie-btn.accept {
    background: var(--ocre);
    color: white;
}
.cookie-btn.accept:hover {
    background: var(--ocre-fonce);
    transform: translateY(-2px);
}
.cookie-btn.refuse {
    background: transparent;
    color: #ccc;
    border: 1px solid #555;
}
.cookie-btn.refuse:hover {
    background: rgba(255,255,255,0.1);
    color: white;
    border-color: #888;
}
@media (max-width: 768px) {
    .cookie-banner-content {
        flex-direction: column;
        text-align: center;
    }
    .cookie-buttons {
        justify-content: center;
    }
}

/* ===== CASE À COCHER PERSONNALISÉE DANS LE FORMULAIRE ===== */
.footer-contact .form-group.checkbox-group {
    margin: 1rem 0;
}
.footer-contact .checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    cursor: pointer;
    font-size: 0.8rem;
    color: #ddd;
}
.footer-contact .checkbox-label input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    border: 1px solid var(--ocre);
    border-radius: 4px;
    background: rgba(255,255,255,0.05);
    cursor: pointer;
    position: relative;
    transition: all 0.2s;
}
.footer-contact .checkbox-label input[type="checkbox"]:checked {
    background: var(--ocre);
    border-color: var(--ocre);
}
.footer-contact .checkbox-label input[type="checkbox"]:checked::after {
    content: "✓";
    position: absolute;
    top: 0;
    left: 4px;
    color: white;
    font-size: 14px;
    font-weight: bold;
}
.footer-contact .checkbox-label a {
    color: var(--ocre);
    text-decoration: none;
}
.footer-contact .checkbox-label a:hover {
    text-decoration: underline;
}
.required-mention {
    font-size: 0.7rem;
    text-align: right;
    color: #aaa;
    margin-top: 0.5rem;
}

.legal-content h2{
    margin-top: 2rem;
}

.legal-content {
    margin-top: -3rem;
    margin-bottom: -2rem;
}

.checkbox-label a {
    margin-left: -0.3rem;
    font-size: small;
}

#cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 99999; /* très haut pour passer au-dessus de tout */
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-family: 'Manrope', sans-serif;
    box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.2);
}

#sites-cookies {
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    gap:0.2rem;
    color: var(--bleu);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s ease;
    border-bottom: 1px solid transparent;
}

#sites-cookies:hover {
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    color: var(--ocre);
    border-bottom-color: var(--ocre);
    transform: translateY(-1px);
    box-shadow: none;
}

