/* ============================================================
   STYLE.CSS — VERSION NETTOYÉE
   Corrections :
   - Doublons .btn-white, .btn-green-flat supprimés
   - Boutons consolidés en 2 classes principales : .btn-primary + .btn-secondary
   - .learn-more / .learn-more-link conservés (rôles distincts)
   - .short-hr unifié (suppression de .short-hr-center, remplacé par modificateur)
   - .msg-btn et .message-link a fusionnés en .msg-btn
   - .learn-more.white et :active inutile supprimés
   - life-gallery mobile corrigé (2 colonnes au lieu de 1)
   - Numérotation des sections corrigée
   ============================================================ */

/* --- 1. POLICES & VARIABLES --- */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&family=Shadows+Into+Light&display=swap');

:root {
    --green-main: #7a8e52;
    --green-dark: #5a6d38;
    --text-dark: #333333;
    --text-light: #666666;
    --white: #ffffff;
    --bg-outside: #f4f4f4;
}

/* --- 2. STRUCTURE BOXED (1600px) --- */
html { background-color: var(--bg-outside); }

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

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    max-width: 1600px;
    margin: 0 auto;
    background-color: var(--white);
    box-shadow: 0 0 50px rgba(0,0,0,0.08);
    overflow-x: hidden;
    position: relative;
}

.container { max-width: 1250px; margin: 0 auto; padding: 0 20px; }
a { text-decoration: none; transition: 0.3s; }
ul { list-style: none; }

/* --- 3. HEADER & MENU --- */
header {
    background: var(--white);
    padding: 4px 0;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo img {
    height: 85px;
    width: auto;
    display: block;
}

.nav-links {
    display: flex;
    gap: 28px;
    align-items: center;
}

.nav-links a {
    color: var(--text-dark);
    font-weight: 700;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    text-transform: uppercase;
    position: relative;
    padding: 5px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--green-main);
    transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links a.active {
    color: var(--green-main);
}

.nav-links a i {
    color: var(--green-main);
    margin-right: 8px;
    font-size: 1rem;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.menu-burger {
    display: none;
    background: none;
    border: none;
    font-size: 1.6rem;
    color: var(--green-main);
    cursor: pointer;
}

/* --- 4. HERO SECTION --- */
.hero {
    height: 75vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero .container {
    position: relative;
    z-index: 10;
    margin-left: 0;
    padding-left: 10%;
}

.hero h1 {
    font-family: 'Shadows Into Light', cursive;
    font-size: 4.5rem;
    color: #ffffff;
    line-height: 1.1;
    margin-bottom: 20px;
    text-shadow: 2px 2px 12px rgba(0,0,0,0.5);
}

.hero p {
    color: #ffffff;
    max-width: 550px;
    margin-bottom: 35px;
    font-size: 1.2rem;
    text-shadow: 1px 1px 5px rgba(0,0,0,0.3);
}

.hero-btns {
    display: flex;
    gap: 15px;
}

/* --- VAGUES HERO --- */
.hero-wave {
    position: absolute;
    left: 0;
    width: 100%;
    line-height: 0;
    z-index: 5;
}

.hero-wave svg {
    display: block;
    width: 100%;
    height: 40px;
}

.hero-wave path {
    fill: #ffffff !important;
    fill-opacity: 1;
}

.wave-top { top: -1px; }
.wave-bottom { bottom: -1px; }

/* --- 5. BIENVENUE --- */
.welcome { padding: 80px 0; }
.welcome-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 60px; align-items: center; }
.subtitle { color: var(--green-main); font-weight: 700; text-transform: uppercase; font-size: 0.9rem; }
.welcome h2 { font-size: 2.8rem; margin: 10px 0; font-weight: 700; }

/*
 * .short-hr — filet vert décoratif
 * Modificateur : .short-hr--center pour centrer (ex : sous les titres de section)
 */
.short-hr {
    width: 60px;
    height: 3px;
    background: var(--green-main);
    border: none;
    margin: 20px 0;
    border-radius: 2px;
}

.short-hr--center {
    margin: 15px auto 45px;
}

.welcome-gallery { display: grid; grid-template-columns: 1.6fr 1fr; gap: 15px; position: relative; }
.welcome-gallery img { width: 100%; border-radius: 25px; object-fit: cover; height: 100%; }
.side-imgs { display: grid; grid-template-rows: 1fr 1fr; gap: 15px; }

/* --- 6. ACTIVITÉS --- */
.activities-section {
    background: #f8faf5;
    padding-top: 80px;
    padding-bottom: 80px;
    position: relative;
    z-index: 15;
}

.activities-container {
    background: var(--white);
    padding: 60px 40px;
    border-radius: 40px;
    box-shadow: 0 15px 45px rgba(0,0,0,0.07);
    position: relative;
}

.section-title-hand {
    font-family: 'Shadows Into Light', cursive;
    text-align: center;
    font-size: 3.5rem;
    color: var(--text-dark);
}

.grid-activities {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.activity-card {
    background: var(--white);
    border: 1px solid #f0f0f0;
    border-radius: 25px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    position: relative;
}

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

.card-top {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.card-icon {
    width: 45px;
    height: auto;
    flex-shrink: 0;
    display: block;
    margin-top: 4px;
}

.card-titles h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.card-titles p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 15px;
    line-height: 1.4;
}

/* Lien texte "En savoir plus" dans les cards */
.learn-more-link {
    color: var(--green-main);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: 0.3s;
}

.learn-more-link:hover {
    color: var(--green-dark);
}

.card-img-container img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.activity-card:hover .card-img-container img {
    transform: scale(1.05);
}

/* --- Titre Bienvenue --- */
.welcome-title {
    font-size: 2.8rem;
    font-weight: 700;
    margin: 10px 0 5px;
    line-height: 1.2;
}

/* Mot "Bienvenue" en vert cursif */
.handwritten-green {
    font-family: 'Shadows Into Light', cursive;
    color: var(--green-main);
    font-weight: 400;
    font-size: 1.1em;
}

/* "au" en police normale, taille réduite */
.classic-font {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 0.75em;
    color: var(--text-dark);
}

/* Décorations image (fer à cheval, cœur) */
.horseshoe-decor {
    width: 180px;
    opacity: 0.12;
    position: absolute;
    bottom: -30px;
    right: -30px;
    pointer-events: none;
    z-index: 0;
}

.heart-decor {
    width: 50px;
    position: absolute;
    top: -20px;
    right: -10px;
    pointer-events: none;
    z-index: 2;
}

/* Évite qu'une image manquante génère un espace ou un débordement */
img {
    max-width: 100%;
}

/* Position relative sur welcome-text pour caler le fer à cheval */
.welcome-text {
    position: relative;
    overflow: hidden;
}

/* --- Centrage bouton galerie --- */
.btn-center {
    text-align: center;
    margin-top: 40px;
}

/* --- 6b. SECTION VALEURS (Ambiance familiale, Respect du cheval...) --- */
.values-section {
    background: #f8faf5;
    padding: 20px 0 50px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.value-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.value-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green-main);
    font-size: 3.5rem;
    flex-shrink: 0;
}

.value-item h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
}

.value-item p {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.4;
    max-width: 180px;
    margin: 0 auto;
}

/* --- 7. VIE AU CLUB --- */
.club-life { padding: 80px 0; }
.life-gallery { display: grid; grid-template-columns: repeat(5, 1fr); gap: 15px; margin-bottom: 45px; }
.life-gallery img { width: 100%; height: 220px; object-fit: cover; border-radius: 20px; }

/* --- 8. FOOTER --- */
.site-footer { background: var(--green-main); color: var(--white); padding: 70px 0 0; margin-top: 50px; }
.footer-content { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 50px; padding-bottom: 50px; }

.brand-wrapper { display: flex; align-items: center; gap: 25px; }
.footer-logo { height: 80px; width: auto; filter: brightness(0) invert(1); }
.footer-brand .slogan { font-family: 'Shadows Into Light', cursive; font-size: 1.4rem; line-height: 1.3; max-width: 220px; }

.footer-column h4 { font-size: 0.95rem; margin-bottom: 20px; display: flex; align-items: center; gap: 12px; font-weight: 700; text-transform: uppercase; }
.footer-column h4 i { width: 22px; text-align: center; font-size: 1.1rem; }
.footer-column p { padding-left: 34px; font-size: 0.95rem; margin-bottom: 10px; line-height: 1.5; }
.footer-column a { color: var(--white); }

.social-icons { display: flex; gap: 15px; padding-top: 10px; }
.social-icons a { background: rgba(255,255,255,0.2); width: 45px; height: 45px; display: flex; align-items: center; justify-content: center; border-radius: 50%; color: var(--white); font-size: 1.3rem; }
.social-icons a:hover { background: var(--white); color: var(--green-main); transform: translateY(-4px); }

/* Bouton message footer (fusion de .msg-btn et .message-link a) */
.msg-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
    background: rgba(255,255,255,0.15);
    color: var(--white);
    padding: 10px 18px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
    transition: background 0.3s;
}

.msg-btn:hover { background: rgba(255,255,255,0.25); }

.footer-column .contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    padding-left: 34px;
    white-space: nowrap;
}

.contact-name {
    font-weight: 700;
    min-width: 55px;
    font-size: 0.9rem;
}

.contact-link {
    color: var(--white);
    opacity: 0.9;
    font-size: 0.9rem;
    transition: 0.3s;
}

.contact-link i {
    font-size: 0.75rem;
    margin-right: 5px;
    color: rgba(255,255,255,0.7);
}

.contact-link:hover {
    opacity: 1;
    color: var(--white);
}

/* Copyright bar */
.footer-bottom {
    background: var(--green-dark);
    padding: 12px 0;
    font-size: 0.75rem;
    border-top: 1px solid rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.6);
}

.bottom-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.legal-links a {
    color: rgba(255,255,255,0.6);
    margin-left: 20px;
    transition: 0.3s;
}

.legal-links a:hover { color: var(--white); }

/* --- 9. BOUTONS ---
 *
 * Deux classes principales :
 *   .btn-primary  — bouton vert plein (actions principales, CTA)
 *   .btn-secondary — bouton blanc (actions secondaires, Hero)
 *
 * Modificateur de taille (optionnel) :
 *   .btn--lg      — padding plus généreux pour les sections Hero / CTA
 *
 * Pour un lien-bouton inline dans du contenu (ex: bas de card) :
 *   .learn-more   — bouton vert standalone dans une section
 *   .learn-more-link — lien texte vert (sans fond)
 */

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--green-main);
    color: var(--white);
    padding: 12px 28px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-primary:hover {
    background: var(--green-dark);
    transform: translateY(-1px);
    color: var(--white);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    color: var(--text-dark);
    padding: 12px 28px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-secondary:hover {
    background: #f0f0f0;
    transform: translateY(-1px);
}

/* Alias pour compatibilité — même style que .btn-secondary */
.btn-white {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    color: var(--text-dark);
    padding: 12px 28px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-white:hover {
    background: #f0f0f0;
    transform: translateY(-1px);
    color: var(--text-dark);
}

/* Modificateur taille large (Hero, sections CTA) */
.btn--lg {
    padding: 15px 32px;
    font-size: 1rem;
}

/* Alias pour compatibilité — même style que .btn-primary */
.btn-green-flat {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--green-main);
    color: var(--white);
    padding: 12px 28px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-green-flat:hover {
    background: var(--green-dark);
    transform: translateY(-1px);
    color: var(--white);
}

/* Alias pour compatibilité — même style que .short-hr--center */
.short-hr-center {
    width: 60px;
    height: 3px;
    background: var(--green-main);
    border: none;
    margin: 15px auto 45px;
    border-radius: 2px;
}

/* Alias pour compatibilité — même style que .msg-btn */
.message-link a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
    background: rgba(255,255,255,0.15);
    color: var(--white);
    padding: 10px 18px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
    transition: background 0.3s;
}

.message-link a:hover { background: rgba(255,255,255,0.25); }

/* Alias pour compatibilité — même style que .btn-primary */
.btn-green {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--green-main);
    color: var(--white);
    padding: 12px 28px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-green:hover {
    background: var(--green-dark);
    transform: translateY(-1px);
    color: var(--white);
}

/* Bouton vert standalone dans le contenu */
.learn-more {
    display: inline-block;
    background-color: var(--green-main);
    color: var(--white);
    padding: 12px 28px;
    border-radius: 10px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    margin-top: 15px;
}

.learn-more:hover {
    background-color: var(--green-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(122, 142, 82, 0.3);
    color: var(--white);
}

/* --- 11. SOUS-MENU DÉROULANT --- */
.has-dropdown {
    position: relative;
}

/* Flèche chevron */
.dropdown-arrow {
    font-size: 0.7rem;
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.has-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}/* Le sous-menu — affiché via JS avec classe .is-open */
.dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
    min-width: 260px;
    z-index: 999;
    padding: 8px 0;
    list-style: none;
}

.has-dropdown.is-open .dropdown {
    display: block;
    animation: fadeDown 0.2s ease;
}

/* Pont invisible au dessus du dropdown */
.dropdown::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 0;
    width: 100%;
    height: 20px;
    background: transparent;
}

/* Le hover CSS est géré par JS — cette règle est supprimée */

@keyframes fadeDown {
    from { opacity: 0; transform: translateX(-50%) translateY(-6px); }
    to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}

.dropdown li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    color: var(--text-dark);
    font-size: 0.88rem;
    font-weight: 600;
    text-transform: none;
    transition: background 0.2s, color 0.2s;
    white-space: nowrap;
}

.dropdown li a::after { display: none; } /* Pas de soulignement vert */

/* Lien actif dans le sous-menu */
.dropdown li a.active {
    color: var(--green-main);
    background: #f4f8ee;
    font-weight: 700;
}

.dropdown li a i {
    color: var(--green-main);
    font-size: 0.85rem;
    width: 16px;
    text-align: center;
    margin-right: 0;
}

.dropdown li a:hover {
    background: #f4f8ee;
    color: var(--green-main);
}

.dropdown li:not(:last-child) {
    border-bottom: 1px solid #f0f0f0;
}

/* --- 12. RESPONSIVE --- */

/* Taille max globale sur toutes les images */
img { max-width: 100%; height: auto; }

/* --- Tablette large (1100px) --- */
@media (max-width: 1100px) {
    .nav-links { gap: 15px; }
    .nav-links a { font-size: 0.85rem; }
}

/* --- Tablette (992px) --- */
@media (max-width: 992px) {
    /* Menu burger */
    .menu-burger { display: block; }
    .nav-links {
        position: absolute; top: 100%; left: 0; width: 100%;
        background: var(--white); flex-direction: column;
        padding: 30px; gap: 20px; text-align: center;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        display: none;
    }
    .nav-links.active { display: flex; }

    /* Sous-menu mobile */
    .has-dropdown.is-open .dropdown {
        display: block;
        position: static;
        transform: none;
        box-shadow: none;
        border-radius: 8px;
        background: #f4f8ee;
        padding: 5px 0;
        animation: none;
        min-width: unset;
        width: 100%;
    }

    .has-dropdown.is-open .dropdown-arrow { transform: rotate(180deg); }
    .dropdown li a { justify-content: center; }

    /* Hero */
    .hero { height: 60vh; }
    .hero h1 { font-size: 3rem; }
    .hero p { font-size: 1rem; }

    /* Activités : 2 colonnes */
    .grid-activities { grid-template-columns: repeat(2, 1fr); }

    /* Valeurs : 2 colonnes */
    .values-grid { grid-template-columns: repeat(2, 1fr); gap: 25px; }

    /* Footer : 2 colonnes */
    .footer-content { grid-template-columns: 1fr 1fr; }

    /* Galerie bienvenue */
    .welcome-gallery { grid-template-columns: 1fr; }
    .side-imgs { grid-template-columns: repeat(2, 1fr); grid-template-rows: unset; }
}

/* --- Mobile (768px) --- */
@media (max-width: 768px) {
    /* Hero */
    .hero { height: 55vh; }
    .hero h1 { font-size: 2.2rem; }
    .hero p { font-size: 0.95rem; max-width: 100%; }
    .hero-btns { flex-direction: column; gap: 10px; }
    .hero .container { padding-left: 5%; padding-right: 5%; }

    /* Logo */
    .logo img { height: 55px; }

    /* Espacement général du contenu */
    .container { padding: 0 20px; }
    .welcome { padding: 50px 0; }
    .welcome-grid { grid-template-columns: 1fr; gap: 30px; }
    .welcome-gallery { grid-template-columns: 1fr; }
    .welcome-title { font-size: 2rem; }
    .side-imgs { grid-template-columns: repeat(2, 1fr); grid-template-rows: unset; }
    .welcome-gallery img { max-height: 280px; object-fit: cover; }

    /* Activités : 1 colonne */
    .grid-activities { grid-template-columns: 1fr; }
    .activities-container { padding: 40px 20px; border-radius: 25px; }
    .card-img-container img { height: 180px; }

    /* Valeurs : 2 colonnes */
    .values-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .value-icon { font-size: 2.5rem; }

    /* Vie au club : 2 colonnes */
    .life-gallery { grid-template-columns: repeat(2, 1fr); }
    .life-gallery img { height: 160px; }

    /* Footer */
    .footer-content { grid-template-columns: 1fr; text-align: center; gap: 30px; }
    .brand-wrapper { flex-direction: column; align-items: center; text-align: center; }
    .footer-column h4 { justify-content: center; }
    .footer-column p { padding-left: 0; }
    .footer-column .contact-item { padding-left: 0; justify-content: center; }
    .social-icons { justify-content: center; }
    .bottom-flex { flex-direction: column; gap: 10px; text-align: center; }
    .legal-links a { margin-left: 10px; }

    /* Titres sections */
    .section-title-hand { font-size: 2.5rem; }
}

/* --- Petit mobile (480px) --- */
@media (max-width: 480px) {
    .hero { height: 50vh; }
    .hero h1 { font-size: 1.8rem; }

    /* Valeurs : 1 colonne */
    .values-grid { grid-template-columns: 1fr; }

    /* Activités */
    .grid-activities { grid-template-columns: 1fr; }

    /* Boutons pleine largeur */
    .hero-btns .btn-primary,
    .hero-btns .btn-white { width: 100%; justify-content: center; }

    .section-title-hand { font-size: 2rem; }
    .welcome-title { font-size: 1.7rem; }

    /* Footer */
    .footer-content { gap: 25px; }
}
/* --- STYLE PAGE STAGES (LISTE) --- */
.stages-list {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.stage-item {
    display: flex;
    align-items: center;
    background: #ffffff;
    padding: 20px 30px;
    border-radius: 20px;
    border: 1px solid #eee;
    transition: all 0.3s ease;
}

.stage-item:hover {
    transform: translateX(10px);
    border-color: var(--green-main);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

/* Le carré date à gauche */
.stage-date {
    background-color: var(--green-main);
    color: white;
    min-width: 100px;
    height: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    margin-right: 30px;
}

.stage-date .day {
    font-size: 1.4rem;
    font-weight: 700;
}

.stage-date .month {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Infos au centre */
.stage-info {
    flex-grow: 1;
}

.stage-info h3 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.stage-info p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Bouton à droite */
.stage-action .btn-green-flat {
    padding: 10px 20px;
    font-size: 0.8rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .stage-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    .stage-date {
        margin-right: 0;
    }
    .stage-item:hover {
        transform: translateY(-5px);
    }
}