/* --- Styles Page Coach Jeunes --- */

.principe-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 2rem;
    font-family: 'Raleway', sans-serif;
    color: #333;
    line-height: 1.6;
}

/* Intro Centrée */
.intro-global {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem auto;
}
.justify-center {
    justify-content: center;
}
.text-center {
    text-align: center;
}

/* --- LE WRAPPER ZIG-ZAG (Comme pour Massages) --- */
.coaching-wrapper {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
    align-items: center;
}

/* Images */
.coaching-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    object-fit: cover; /* Remplit le cadre sans déformation */
}

/* Contenu Texte */
.coaching-content {
    padding: 1rem 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Boite d'info (Style Carte) */
.info-box {
    background-color: #f9fbfb; /* Fond très léger, teinte bleutée */
    border-left: 4px solid #ba5a87; /* Couleur rose/mauve pour changer du vert, ou gardez #4C989C */
    padding: 1.5rem;
    margin: 1.5rem 0;
    border-radius: 0 8px 8px 0;
}

.info-box h4 {
    font-family: 'Lora', serif;
    color: #ba5a87; /* Accordé à la bordure */
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

/* Liens vers le site externe */
.link-external {
    display: inline-block;
    margin-top: 1rem;
    color: #4C989C;
    font-weight: 700;
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.link-external:hover {
    color: #d4a017;
    border-bottom: 2px solid #d4a017;
    transform: translateX(5px); /* Petit mouvement vers la droite */
}

/* Séparateur élégant */
.separator {
    border: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, #ddd, transparent);
    margin: 4rem 0;
}

/* --- RESPONSIVE ORDI (Zig Zag actif) --- */
@media (min-width: 992px) {
    .coaching-wrapper {
        flex-direction: row; /* Côte à côte */
        gap: 4rem;
        align-items: center; /* Force la même hauteur */
    }

    /* Inverse l'ordre pour la classe .reverse */
    .coaching-wrapper.reverse {
        flex-direction: row-reverse;
    }

    .coaching-image, 
    .coaching-content {
        flex: 1; /* 50% chacun */
    }
}

/* --- Styles Communs (Titres, Listes) --- */
.section-title {
    font-family: 'Lora', serif;
    font-size: 1.5rem;
    color: #4C989C;
    margin: 0;
}

.title-with-icon {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 1rem;
}

.pissenlit-icon {
    width: 35px;
}

.custom-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.custom-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}
.custom-list li::before {
    content: '•';
    color: #ba5a87; /* Puce colorée */
    font-size: 1.5rem;
    position: absolute;
    left: 0;
    top: -5px;
}

/* --- BOUTON FINAL & MOBILE --- */
.cta-container {
    text-align: center;
    background: #f9f9f9;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.btn-rdv {
    display: inline-block;
    background-color: #4c989c;
    color: #fff !important;
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    margin-top: 20px;
    transition: 0.3s;
}

.btn-rdv:hover {
    transform: scale(1.05);
    background-color: #d4a017;
}

/* MOBILE SPECIFIQUE */
@media (max-width: 768px) {
    .btn-rdv {
        padding: 12px 15px !important;
        font-size: 0.9rem !important;
        width: 100%;
        max-width: 300px;
        white-space: normal;
        display: block;
        margin: 20px auto 0 auto;
    }
    
    .section-title {
        font-size: 1.3rem;
    }
    
    .principe-container {
        padding: 1rem;
    }
/* Réduit l'espace autour de la ligne de séparation */
    .separator {
        margin: 1.5rem 0 !important; /* C'était 4rem (très grand) */
    }

    /* Réduit l'espace entre le texte et le bas du bloc */
    .coaching-wrapper {
        margin-bottom: 1rem !important; /* C'était 3rem */
        gap: 1rem !important; /* Rapproche l'image du texte */
    }

    /* Réduit la marge interne du contenu textuel */
    .coaching-content {
        padding-bottom: 0 !important;
    }

    /* Optionnel : Si vous trouvez que le lien est trop loin du texte au-dessus */
    .link-external {
        margin-top: 0.5rem !important;
    }


}