/* --- Styles Page Massages --- */

.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 MAGIC (ZIG-ZAG) --- */
.massage-wrapper {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
    align-items: center; /* Important pour l'alignement vertical */
}

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

/* Contenu Texte */
.massage-content {
    padding: 1rem 0;
}

/* Boite des Bienfaits (Style Carte) */
.bienfaits-box {
    background-color: #fffaf0; /* Fond crème très léger */
    border-left: 4px solid #4C989C;
    padding: 1.5rem;
    margin: 1.5rem 0;
    border-radius: 0 8px 8px 0;
}

.bienfaits-box h4 {
    font-family: 'Lora', serif;
    color: #4C989C;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

/* 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) {
    .massage-wrapper {
        flex-direction: row; /* Côte à côte */
        gap: 4rem;
        align-items: stretch; /* L'image et le texte auront la même hauteur si possible */
    }

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

    .massage-image, 
    .massage-content {
        flex: 1; /* Chaque colonne prend 50% */
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    
    .massage-image img {
        height: 100%; /* L'image essaie de prendre toute la hauteur */
        max-height: 500px; /* Limite pour ne pas être géante */
    }
}

/* --- Styles Communs --- */
.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;
}
.custom-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
}
.custom-list li::before {
    content: '•';
    color: #4C989C;
    font-size: 1.5rem;
    position: absolute;
    left: 0;
    top: -5px;
}

.note {
    font-size: 0.9rem;
    color: #666;
}

/* --- BOUTON RDV & MOBILE --- */
.cta-container {
    text-align: center;
    background: #f9f9f9;
    padding: 3rem;
    border-radius: 12px;
}

.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;
        line-height: 1.4;
        display: block;
        margin: 20px auto 0 auto;
    }
    
    .section-title {
        font-size: 1.3rem;
    }
}