/* Variables & Reset */
:root {
    --primary: #111111;
    --accent: #B85D19;     /* Terre cuite / Ocre de Corse */
    --accent-dark: #8A430F;
    --light-bg: #F9F9F9;
    --white: #ffffff;
    --text: #333333;
    --text-light: #666666;
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

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

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

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    color: var(--primary);
}

/* Header */
.main-header {
    background: var(--white);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
}

.main-header nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.3rem;
    letter-spacing: 1px;
    color: var(--primary);
}

.logo span {
    color: var(--accent);
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li a {
    text-decoration: none;
    color: var(--text);
    margin: 0 15px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
}

.nav-links li a:hover, .nav-links li a.active {
    color: var(--accent);
}

/* Buttons */
.btn-primary, .btn-primary-dark {
    display: inline-block;
    background: var(--accent);
    color: var(--white);
    padding: 14px 32px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 3px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background: var(--accent-dark);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(184, 93, 25, 0.3);
}

.btn-primary-dark {
    background: var(--primary);
}

.btn-primary-dark:hover {
    background: #333;
}

.btn-secondary {
    display: inline-block;
    border: 2px solid var(--white);
    color: var(--white);
    padding: 12px 30px;
    font-weight: 600;
    text-decoration: none;
    margin-left: 15px;
    border-radius: 3px;
    transition: var(--transition);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary);
}

.btn-cta-small {
    background: var(--accent);
    color: var(--white);
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 3px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: var(--transition);
}

.btn-cta-small:hover {
    background: var(--accent-dark);
}

/* Hero Section */
.hero {
    height: 85vh;
    background: url('https://images.unsplash.com/photo-1536924940846-227afb31e2a5?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
    display: flex;
    align-items: center;
    position: relative;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to right, rgba(17, 17, 17, 0.9) 0%, rgba(17, 17, 17, 0.4) 100%);
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
    color: var(--white);
}

.badge {
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 20px;
    display: block;
}

.hero h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 25px;
    color: var(--white);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    font-weight: 300;
    color: #e0e0e0;
}

/* Layout Grids */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; }

/* Sections Styling */
section { padding: 100px 0; }

.section-title {
    font-size: 2.8rem;
    margin-bottom: 30px;
}

.section-title.center { text-align: center; margin-bottom: 60px; }

.about-text p { margin-bottom: 20px; color: var(--text-light); font-size: 1.05rem; }

.stats { display: flex; gap: 40px; margin-top: 40px; padding-top: 30px; border-top: 1px solid #eee; }
.stat-item strong { display: block; font-size: 1.3rem; color: var(--primary); font-family: 'Playfair Display', serif;}
.stat-item span { color: var(--accent); font-weight: 600; font-size: 0.9rem; }

.img-responsive {
    width: 100%;
    height: auto;
    border-radius: 4px;
}

.shadow {
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* Pillars Cards */
.pillars { background-color: var(--light-bg); }

.card {
    padding: 50px 40px;
    background: var(--white);
    border-radius: 4px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
    transition: var(--transition);
}

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

.card i {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 25px;
}

.card h3 { margin-bottom: 15px; font-size: 1.5rem; }
.card p { color: var(--text-light); }

/* Agenda Section */
.agenda { background: var(--white); }
.agenda-list { display: flex; flex-direction: column; gap: 20px; }
.agenda-item {
    display: flex;
    align-items: center;
    padding: 30px;
    background: var(--light-bg);
    border-left: 4px solid var(--accent);
    border-radius: 0 4px 4px 0;
    transition: var(--transition);
}
.agenda-item:hover { background: #f0f0f0; }
.agenda-date {
    text-align: center;
    padding-right: 30px;
    margin-right: 30px;
    border-right: 1px solid #ddd;
    min-width: 120px;
}
.agenda-date .day { display: block; font-size: 2.5rem; font-weight: 700; color: var(--primary); line-height: 1; }
.agenda-date .month { text-transform: uppercase; font-size: 0.9rem; font-weight: 600; color: var(--accent); }
.agenda-details h3 { font-size: 1.4rem; margin-bottom: 10px; }
.agenda-details p { color: var(--text-light); margin-bottom: 10px; }
.agenda-details .location { font-size: 0.9rem; font-weight: 600; color: var(--primary); }

/* CTA Banner */
.cta-banner {
    background: var(--accent);
    color: var(--white);
    text-align: center;
    padding: 80px 0;
}

.cta-banner h2 { color: var(--white); }
.cta-banner p { font-size: 1.2rem; margin-bottom: 40px; }

.newsletter-form {
    display: flex;
    justify-content: center;
    gap: 10px;
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-form input {
    padding: 15px 20px;
    width: 100%;
    border: none;
    border-radius: 3px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
}

/* Footer */
.main-footer {
    background: var(--primary);
    color: var(--white);
    padding: 80px 0 30px;
}

.main-footer h4 {
    color: var(--white);
    margin-bottom: 25px;
    font-size: 1.2rem;
}

.main-footer p { color: #aaaaaa; font-size: 0.95rem; margin-bottom: 10px; }
.main-footer .rna { font-family: monospace; color: var(--accent); margin-top: 15px; }

.main-footer a { color: #aaaaaa; text-decoration: none; transition: var(--transition); }
.main-footer a:hover { color: var(--accent); }

.main-footer ul { list-style: none; }
.main-footer ul li { margin-bottom: 10px; }

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    color: var(--white);
    border-radius: 50%;
    font-size: 1.1rem;
    margin-right: 10px;
}
.social-icons a:hover { background: var(--accent); }

.footer-bottom {
    margin-top: 60px;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px;
    text-align: center;
    font-size: 0.85rem;
    color: #777777;
}

/* Responsive */
@media (max-width: 992px) {
    .grid-2, .grid-4 { grid-template-columns: 1fr 1fr; }
    .hero h1 { font-size: 3rem; }
}

@media (max-width: 768px) {
    .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
    .nav-links, .btn-cta-small { display: none; }
    .hero h1 { font-size: 2.5rem; }
    .hero { height: 70vh; }
    .hero-btns { display: flex; flex-direction: column; gap: 15px; }
    .btn-secondary { margin-left: 0; text-align: center; }
    .btn-primary { text-align: center; }
    .agenda-item { flex-direction: column; text-align: center; padding: 20px; }
    .agenda-date { margin: 0 0 20px 0; padding: 0 0 20px 0; border-right: none; border-bottom: 1px solid #ddd; }
    .newsletter-form { flex-direction: column; }
}

/* =========================================
   STYLE SPECIFIQUE POUR L'INDEX (SPLASH PAGE)
   ========================================= */

.splash-body {
    margin: 0;
    padding: 0;
    overflow: hidden; /* Empêche le défilement sur la page d'entrée */
    background-color: var(--primary);
}

.splash-screen {
    height: 100vh;
    width: 100vw;
    /* Image de fond très artistique/abstraite pour l'entrée */
    background: url('https://images.unsplash.com/photo-1543857778-c4a1a3e0b2eb?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    text-align: center;
}

.splash-overlay {
    position: absolute;
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%;
    /* Un dégradé sombre pour faire ressortir le texte */
    background: radial-gradient(circle, rgba(17,17,17,0.4) 0%, rgba(17,17,17,0.9) 100%);
    z-index: 1;
}

.splash-content {
    position: relative;
    z-index: 2;
    padding: 0 20px;
    animation: fadeIn 2s ease-out forwards; /* Petite animation d'apparition */
}

.splash-title {
    font-size: 5rem;
    color: var(--white);
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.splash-title span {
    color: var(--accent);
}

.splash-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    font-weight: 300;
    color: #e0e0e0;
    margin-bottom: 50px;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.btn-enter {
    display: inline-block;
    padding: 15px 40px;
    border: 1px solid var(--accent);
    color: var(--white);
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    letter-spacing: 2px;
    text-decoration: none;
    transition: var(--transition);
    background: rgba(184, 93, 25, 0.1);
    backdrop-filter: blur(5px);
}

.btn-enter:hover {
    background: var(--accent);
    color: var(--white);
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(184, 93, 25, 0.4);
}

.splash-legal {
    position: absolute;
    bottom: 30px;
    z-index: 2;
    color: rgba(255, 255, 255, 0.5);
    font-family: monospace;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

/* Animation d'apparition */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsive pour mobile */
@media (max-width: 768px) {
    .splash-title { font-size: 3rem; }
    .splash-subtitle { font-size: 0.9rem; letter-spacing: 2px; }
}

/* =========================================
   STYLES SPECIFIQUES POUR ACCUEIL.HTML (LONG PAGE)
   ========================================= */

/* Utilitaires */
.bg-light { background-color: var(--light-bg); }
.bg-dark { background-color: var(--primary); color: var(--white); }
.bg-accent { background-color: var(--accent); color: var(--white); }
.section-intro { font-size: 1.2rem; color: var(--text-light); max-width: 700px; margin: 0 auto 50px auto; line-height: 1.8; }
.section-intro.center { text-align: center; }
.mt-20 { margin-top: 20px; }
.full-width { width: 100%; }
.align-start { align-items: flex-start; }

/* Correction Nav links pour page interne */
.logo a { color: inherit; text-decoration: none; }
.logo a span { color: var(--accent); }

/* Hero Interne (Plus petit que le splash, mais percutant) */
.hero-internal {
    height: 70vh;
    background: url('https://images.unsplash.com/photo-1572947650440-e8a97ef053b2?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
    display: flex;
    align-items: center;
    position: relative;
    text-align: center;
}
.hero-internal .hero-content { margin: 0 auto; }
.hero-internal h1 { font-size: 3.5rem; }
.scroll-down-btn {
    display: inline-block;
    margin-top: 40px;
    color: var(--white);
    font-size: 2rem;
    animation: bounce 2s infinite;
    transition: var(--transition);
}
.scroll-down-btn:hover { color: var(--accent); }

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-20px); }
    60% { transform: translateY(-10px); }
}

/* Edito Section */
.edito-image-wrapper { position: relative; }
.edito-img { border-radius: 4px; box-shadow: 0 15px 30px rgba(0,0,0,0.1); }
.image-caption {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--white);
    padding: 15px 25px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    font-style: italic;
    color: var(--accent);
    font-size: 0.9rem;
    font-weight: 600;
}
.edito-subtitle { font-size: 1.5rem; color: var(--accent); margin-bottom: 25px; font-weight: 400; font-style: italic; }
.edito-text p { margin-bottom: 20px; font-size: 1.1rem; line-height: 1.8; color: #444; text-align: justify; }
.signature { margin-top: 40px; border-left: 3px solid var(--accent); padding-left: 20px; }
.signature .name { font-family: 'Playfair Display', serif; font-size: 1.4rem; font-weight: 700; color: var(--primary); margin-bottom: 5px; }
.signature .role { font-size: 0.9rem; color: var(--text-light); text-transform: uppercase; letter-spacing: 1px; }

/* Rich Cards (Actions) */
.card-rich {
    padding: 45px 35px;
    background: var(--white);
    border-radius: 8px;
    border-top: 4px solid var(--accent);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: var(--transition);
}
.card-rich:hover { transform: translateY(-10px); box-shadow: 0 20px 40px rgba(0,0,0,0.1); }
.card-icon {
    width: 70px; height: 70px;
    background: rgba(184, 93, 25, 0.1);
    border-radius: 50%;
    display: flex; justify-content: center; align-items: center;
    font-size: 1.8rem; color: var(--accent);
    margin-bottom: 25px;
}
.card-rich h3 { font-size: 1.4rem; margin-bottom: 20px; }
.card-rich p { color: var(--text-light); line-height: 1.7; font-size: 0.95rem; text-align: justify; }

/* Focus Section */
.focus-section { padding: 120px 0; background: linear-gradient(rgba(17,17,17,0.9), rgba(17,17,17,0.9)), url('https://images.unsplash.com/photo-1601625902128-6617decfbd4a?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover fixed; }
.focus-content { max-width: 800px; margin: 0 auto; text-align: center; }
.focus-label { display: inline-block; padding: 5px 15px; background: var(--accent); color: var(--white); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 20px; border-radius: 20px; }
.focus-title { font-size: 3rem; color: var(--white); margin-bottom: 30px; }
.focus-text-block p { font-size: 1.2rem; color: #ddd; margin-bottom: 25px; line-height: 1.8; }
.focus-text-block em { color: var(--white); font-weight: 600; font-style: normal; border-bottom: 1px solid var(--accent); }

/* Timeline Agenda */
.agenda-timeline { max-width: 900px; margin: 0 auto; position: relative; }
.agenda-timeline::before { content: ''; position: absolute; left: 50px; top: 0; bottom: 0; width: 2px; background: #eee; }
.timeline-item { display: flex; margin-bottom: 50px; position: relative; }
.timeline-item:last-child { margin-bottom: 0; }
.timeline-date { width: 100px; flex-shrink: 0; background: var(--white); z-index: 2; text-align: center; padding: 15px 0; border: 2px solid var(--accent); border-radius: 8px; height: max-content; }
.timeline-date .day { display: block; font-size: 2rem; font-weight: 700; color: var(--primary); line-height: 1; margin-bottom: 5px; }
.timeline-date .month { display: block; font-size: 1rem; font-weight: 600; color: var(--accent); text-transform: uppercase; }
.timeline-date .year { display: block; font-size: 0.8rem; color: var(--text-light); margin-top: 5px; }
.timeline-content { margin-left: 50px; background: var(--light-bg); padding: 35px; border-radius: 8px; width: 100%; position: relative; }
.timeline-content::before { content: ''; position: absolute; left: -10px; top: 30px; border-width: 10px 10px 10px 0; border-style: solid; border-color: transparent var(--light-bg) transparent transparent; }
.timeline-content h3 { font-size: 1.6rem; margin-bottom: 15px; }
.event-meta { font-size: 0.9rem; color: var(--accent); font-weight: 600; margin-bottom: 15px; }
.event-meta i { margin-right: 5px; }
.event-desc { color: var(--text-light); margin-bottom: 20px; line-height: 1.7; }
.tag { display: inline-block; padding: 4px 12px; background: var(--white); border: 1px solid #ddd; border-radius: 20px; font-size: 0.8rem; font-weight: 600; color: var(--primary); margin-right: 10px; }

/* Adhesion Section */
.adhesion-section h2 { color: var(--white); font-size: 2.5rem; margin-bottom: 30px; }
.adhesion-text p { font-size: 1.1rem; margin-bottom: 20px; color: #f0f0f0; }
.benefit-list { list-style: none; margin-top: 30px; }
.benefit-list li { margin-bottom: 15px; font-size: 1.05rem; display: flex; align-items: flex-start; }
.benefit-list li i { color: var(--primary); margin-right: 15px; margin-top: 5px; font-size: 1.2rem; }
.adhesion-form-box { background: var(--white); padding: 40px; border-radius: 8px; color: var(--text); box-shadow: 0 20px 40px rgba(0,0,0,0.2); }
.adhesion-form-box h3 { font-size: 1.8rem; margin-bottom: 25px; text-align: center; }

/* =========================================
   STYLES SPECIFIQUES : ASSOCIATION.HTML
   ========================================= */

/* Bannière d'en-tête pour les pages internes */
.page-header {
    padding: 120px 0 80px;
    color: var(--white);
    margin-bottom: 60px;
}
.page-title {
    font-size: 3.5rem;
    margin-bottom: 15px;
    color: var(--white);
}
.page-subtitle {
    font-size: 1.2rem;
    font-weight: 300;
    letter-spacing: 1px;
    color: #e0e0e0;
}

/* Section Manifeste & Images décalées */
.manifesto-section { padding: 60px 0 100px; }
.manifesto-text p { font-size: 1.1rem; margin-bottom: 25px; line-height: 1.8; color: #444; }
.manifesto-images { position: relative; min-height: 500px; }
.radius-lg { border-radius: 8px; }
.img-offset-1 {
    width: 70%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    border: 10px solid var(--white);
}
.img-offset-2 {
    width: 65%;
    position: absolute;
    bottom: 20px;
    right: 0;
    z-index: 1;
}

/* Boîtes de Valeurs */
.values-section { padding: 100px 0; }
.value-box {
    padding: 40px;
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}
.value-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}
.value-number {
    font-family: 'Playfair Display', serif;
    font-size: 5rem;
    font-weight: 900;
    color: rgba(184, 93, 25, 0.1); /* Couleur accent en très transparent */
    position: absolute;
    top: -10px;
    right: -10px;
    line-height: 1;
}
.value-box h3 { margin-bottom: 20px; font-size: 1.5rem; position: relative; z-index: 2; }
.value-box p { color: var(--text-light); position: relative; z-index: 2; line-height: 1.7; }

/* Cadre Légal */
.status-section { padding: 100px 0; }
.max-w-800 { max-width: 800px; margin: 0 auto; }
.text-large { font-size: 1.2rem; color: var(--text-light); margin-bottom: 30px; }
.legal-box {
    background: var(--light-bg);
    padding: 40px;
    border-radius: 8px;
    border-left: 4px solid var(--accent);
    text-align: left;
}
.legal-list { list-style: none; }
.legal-list li { margin-bottom: 20px; font-size: 1.05rem; }
.legal-list li:last-child { margin-bottom: 0; }
.legal-list i { color: var(--accent); margin-right: 15px; font-size: 1.2rem; width: 20px; text-align: center; }
.btn-secondary.dark-border { border-color: var(--primary); color: var(--primary); }
.btn-secondary.dark-border:hover { background: var(--primary); color: var(--white); }

/* Responsive Adjustments */
@media (max-width: 768px) {
    .page-title { font-size: 2.5rem; }
    .manifesto-images { min-height: auto; display: flex; flex-direction: column; gap: 20px; margin-top: 40px; }
    .img-offset-1, .img-offset-2 { position: static; width: 100%; border: none; }
    .legal-box { padding: 25px; }
}
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-weight: 600; margin-bottom: 8px; font-size: 0.9rem; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 12px 15px; border: 1px solid #ddd; border-radius: 4px; font-family: 'Montserrat', sans-serif; font-size: 1rem; background: #fdfdfd; transition: var(--transition); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--accent); background: var(--white); }
.form-note { font-size: 0.8rem; color: #888; text-align: center; margin-top: 15px; }

/* Responsive Updates */
@media (max-width: 992px) {
    .agenda-timeline::before { left: 40px; }
    .timeline-date { width: 80px; }
    .timeline-date .day { font-size: 1.5rem; }
    .timeline-content { margin-left: 30px; }
}

@media (max-width: 768px) {
    .hero-internal h1 { font-size: 2.2rem; }
    .edito-image-wrapper { margin-bottom: 40px; }
    .image-caption { position: relative; bottom: 0; right: 0; text-align: center; }
    .agenda-timeline::before { display: none; }
    .timeline-item { flex-direction: column; }
    .timeline-date { width: 100%; margin-bottom: 20px; display: flex; justify-content: center; align-items: center; gap: 10px; padding: 10px; border-radius: 4px; }
    .timeline-date .day { margin-bottom: 0; }
    .timeline-date .year { margin-top: 0; font-size: 1rem; }
    .timeline-content { margin-left: 0; }
    .timeline-content::before { display: none; }
    .adhesion-form-box { padding: 25px; }
}

/* =========================================
   STYLES SPECIFIQUES : ACTIVITES.HTML
   ========================================= */

.action-row {
    padding: 100px 0;
}
.align-center {
    align-items: center;
}
.action-icon {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 20px;
    display: inline-block;
    padding: 15px;
    background: rgba(184, 93, 25, 0.1);
    border-radius: 8px;
}
.action-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 20px;
}
.action-list {
    list-style: none;
    margin-top: 25px;
}
.action-list li {
    margin-bottom: 15px;
    font-size: 1.05rem;
    display: flex;
    align-items: flex-start;
}
.action-list li i {
    color: var(--primary);
    margin-right: 15px;
    margin-top: 6px;
    font-size: 1rem;
}

/* Inversion de la grille sur desktop pour l'effet Zig-Zag */
@media (min-width: 769px) {
    .desktop-reverse {
        direction: rtl; /* Inverse l'ordre d'affichage horizontalement */
    }
    .desktop-reverse > * {
        direction: ltr; /* Rétablit la lecture normale du texte (gauche à droite) */
    }
}

/* Ajustements pour mobile */
@media (max-width: 768px) {
    .action-row { padding: 60px 0; }
    .action-image { order: -1; margin-bottom: 30px; } /* L'image passe toujours au-dessus du texte sur mobile */
    .desktop-reverse { direction: ltr; }
}

/* =========================================
   STYLES SPECIFIQUES : AGENDA.HTML
   ========================================= */

.agenda-page-section { padding: 80px 0; }
.max-w-900 { max-width: 900px; margin: 0 auto; }
.mb-40 { margin-bottom: 40px; }

/* Filtres factices (pour l'UI) */
.agenda-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}
.filter-btn {
    padding: 8px 20px;
    border: 1px solid #ccc;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-light);
    cursor: pointer;
    transition: var(--transition);
    background: var(--white);
}
.filter-btn:hover, .filter-btn.active {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

/* Cartes d'événements */
.events-container { display: flex; flex-direction: column; gap: 30px; }
.event-card {
    display: flex;
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: var(--transition);
    border-left: 4px solid transparent;
}
.event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    border-left-color: var(--accent);
}

/* Bloc Date */
.event-date-box {
    background: var(--primary);
    color: var(--white);
    padding: 30px 20px;
    min-width: 140px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.event-date-box .day { font-size: 3rem; font-weight: 700; line-height: 1; font-family: 'Playfair Display', serif; }
.event-date-box .month { font-size: 1.1rem; text-transform: uppercase; font-weight: 600; color: var(--accent); margin: 5px 0; }
.event-date-box .year { font-size: 0.9rem; color: #aaa; }

/* Informations de l'événement */
.event-info { padding: 30px; flex-grow: 1; }
.event-tags { margin-bottom: 15px; }
.event-info .tag {
    display: inline-block;
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-right: 10px;
}
.tag-expo { background: #e3f2fd; color: #1565c0; }
.tag-conf { background: #f3e5f5; color: #7b1fa2; }
.tag-atelier { background: #e8f5e9; color: #2e7d32; }
.tag-free { background: #fff3e0; color: #e65100; border: 1px solid #ffe0b2; }

.event-title { font-size: 1.6rem; margin-bottom: 10px; color: var(--primary); }
.event-meta { font-size: 0.95rem; color: var(--text-light); margin-bottom: 15px; font-weight: 500; }
.event-meta i { color: var(--accent); }
.event-desc { font-size: 1rem; line-height: 1.7; color: #555; margin-bottom: 20px; }

.btn-link {
    color: var(--accent);
    font-weight: 600;
    text-decoration: none;
    font-size: 1rem;
    transition: var(--transition);
}
.btn-link i { margin-left: 5px; transition: transform 0.3s; }
.btn-link:hover { color: var(--primary); }
.btn-link:hover i { transform: translateX(5px); }

/* Responsive Adjustments */
@media (max-width: 768px) {
    .event-card { flex-direction: column; }
    .event-date-box { min-width: auto; padding: 20px; flex-direction: row; gap: 15px; align-items: baseline; }
    .event-date-box .day { font-size: 2rem; }
    .event-info { padding: 20px; }
    .event-title { font-size: 1.4rem; }
}

/* =========================================
   STYLES SPECIFIQUES : CONTACT.HTML
   ========================================= */

.contact-page-section { padding: 80px 0 120px; }
.mb-40 { margin-bottom: 40px; }
.mt-40 { margin-top: 40px; }

/* Bloc d'informations gauche */
.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}
.info-icon {
    width: 50px;
    height: 50px;
    background: rgba(184, 93, 25, 0.1);
    color: var(--accent);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    font-size: 1.2rem;
    margin-right: 20px;
    flex-shrink: 0;
}
.info-item h3 { font-size: 1.2rem; margin-bottom: 5px; color: var(--primary); }
.info-item p { color: var(--text-light); line-height: 1.6; }
.info-item a { color: var(--text-light); text-decoration: none; transition: var(--transition); }
.info-item a:hover { color: var(--accent); }

.support-box {
    background: var(--light-bg);
    padding: 30px;
    border-left: 4px solid var(--accent);
    border-radius: 0 8px 8px 0;
}
.support-box h3 { font-size: 1.2rem; margin-bottom: 10px; }
.support-box p { font-size: 0.95rem; color: var(--text-light); }

/* Formulaire droite */
.contact-form-box {
    background: var(--white);
    padding: 40px;
    border-top: 5px solid var(--primary);
}
.form-title { font-size: 1.8rem; margin-bottom: 30px; }

.grid-2-gap-15 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.main-contact-form .form-group { margin-bottom: 25px; }
.main-contact-form label { display: block; font-weight: 600; margin-bottom: 8px; font-size: 0.9rem; color: var(--text); }
.main-contact-form input, 
.main-contact-form select, 
.main-contact-form textarea { 
    width: 100%; 
    padding: 14px 15px; 
    border: 1px solid #ddd; 
    border-radius: 4px; 
    font-family: 'Montserrat', sans-serif; 
    font-size: 1rem; 
    background: #fdfdfd; 
    transition: var(--transition); 
}
.main-contact-form input:focus, 
.main-contact-form select:focus, 
.main-contact-form textarea:focus { 
    outline: none; 
    border-color: var(--accent); 
    background: var(--white); 
    box-shadow: 0 0 0 3px rgba(184, 93, 25, 0.1);
}

.full-width { width: 100%; }

/* Responsive Adjustments */
@media (max-width: 768px) {
    .grid-2-gap-15 { grid-template-columns: 1fr; gap: 0; }
    .contact-form-box { padding: 25px; }
}