/* ========================================
   LA LUMIERE COLOREE - CSS MODERNE
   ======================================== */

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

}

:root {
    --primary: #8B5CF6;
    --secondary: #EC4899;
    --accent: #f5ca0b;
    /* Couleur lien */
    --dark: #1F2937;
    /* Couleur Texte */
    --light: #F9FAFB;
    --white: #FFFFFF;
    --gradient: linear-gradient(rgb(255, 0, 157), rgb(162, 0, 255) 120%);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.15);

}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.8;
    color: var(--dark);
    background: var(--light);
    overflow-x: hidden;

}

/* ========================================
   NAVIGATION
   ======================================== */
/* LN Bandeau Blanc ou est écrit Lumière Colorée */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(250, 249, 249, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-md);
    z-index: 1000;
    transition: all 0.3s ease;
}

nav.scrolled {
    padding: 0.3rem 0;
    box-shadow: var(--shadow-lg);
}

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

.logo {
    font-size: 4.8rem;
    /* LN 4.8 */
    font-weight: 200;
    /* LN */
    /* background: var(--primary); */
    background: rgb(172, 26, 254);
    /* LN */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    text-align: center;

}

.nav-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.8rem;
    list-style: none;
}

.nav-links li a {
    display: block;
    padding: 0.6rem 1.2rem;
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    font-size: 0.95rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    position: relative;
    white-space: nowrap;
}

.nav-links li a:hover,
.nav-links li a.active {
    background: var(--gradient);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    position: absolute;
    top: 1.5rem;
    right: 2rem;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: var(--dark);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* ========================================
   HERO SECTION
   ======================================== */

.hero {
    min-height: 60vh;
    background: var(--gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 8rem 2rem 4rem;
    position: relative;
    overflow: hidden;
    margin-top: 100px;
    padding-top: 180px !important;
    /* On pousse le H1 pour qu'il soit bien au centre du rose */

}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(255,255,255,0.1)" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,112C672,96,768,96,864,112C960,128,1056,160,1152,160C1248,160,1344,128,1392,112L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
    background-size: cover;
    animation: wave 12s ease-in-out infinite;
}

/*@keyframes wave {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(-50px); }
}*/
/* LN - Animation du bandeau rose */

.hero-content {
    max-width: 900px;
    position: relative;
    z-index: 1;
    animation: fadeInUp 1s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    text-shadow: 2px 2px 8px rgba(34, 32, 34, 0.2);

}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-button {
    display: inline-block;
    padding: 15px 30px;
    background: var(--gradient); /* C'est ici qu'on appelle ta variable ! */
    color: white !important;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

/* ========================================
   MAIN CONTENT
   ======================================== */

.main-content {
    max-width: 1000px;
    margin: -50px auto 4rem;
    padding: 0 2rem;
    position: relative;
    z-index: 10;
}

.content-card {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: var(--shadow-lg);
    animation: fadeInUp 0.8s ease 0.3s both;
    margin-bottom: 2rem;
}

.lampes-container {
    text-align: center;
    margin: 2rem 0 3rem;
}

.lampes-container img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    transition: transform 0.4s ease;
}

.lampes-container img:hover {
    transform: scale(1.02);
}

.content-card h2 {
    font-size: 2rem;
    color: var(--dark);
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
    padding-bottom: 1rem;
}

.content-card h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient);
    border-radius: 2px;
}

.content-card h3 {
    font-size: 1.3rem !important; /* Taille lisible et élégante */
    margin-top: 2rem !important;
    margin-bottom: 1rem !important;
    font-weight: 600;
    background: linear-gradient(to right, rgb(255, 0, 157), rgb(162, 0, 255));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    letter-spacing: 0.5px;
}





/* --- TITRES DE LISTE / SOUS-POINTS (H4) STYLE "FINESSE" --- */
.content-card h4 {
    display: table !important; 
    font-size: 1rem !important; /* Légèrement plus petit pour la hiérarchie */
    font-weight: 700 !important;
    text-transform: uppercase;
    letter-spacing: 2px !important;
    
    /* Espacement et Décalage vers la droite */
    margin-top: 45px !important;
    margin-bottom: 12px !important;
    margin-left: 30px !important; /* C'est ici qu'on crée le décalage de liste */

    /* Le dégradé forcé */
    background: linear-gradient(to right, rgb(255, 0, 157), rgb(162, 0, 255)) !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    color: transparent !important;
}

/* Optionnel : Si tu veux que le texte qui suit soit aussi décalé pour tout aligner */
.content-card h4 + p {
    margin-left: 30px !important;
    border-left: 1px solid rgba(162, 0, 255, 0.438); /* Petit trait de rappel discret */
    padding-left: 15px;
    
}

/* On soigne le paragraphe qui suit le H4 */
.feature-item p, .content-card h4 + p {
    margin-top: 0 !important;
    line-height: 1.8;
}

/* On ajuste la première image pour qu'elle ne soit pas trop collée au titre */
.lampes-container {
    margin-bottom: 3rem !important;
}

.content-card p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: #4B5563;
    margin-bottom: 1.5rem;
    text-align: justify;
}

.content-card p:last-child {
    margin-bottom: 0;
}

.content-card ul {
    list-style: none;
    padding-left: 0;
    margin: 1.5rem 0;
}

.content-card ul li {
    padding: 0.8rem 0 0.8rem 2.5rem;
    position: relative;
    line-height: 1.8;
    color: #4B5563;
}

.content-card ul li::before {
    /* content: '✦'; */
    /* LN */
    position: absolute;
    left: 0;
    color: var(--primary);
    font-size: 1.2rem;
}

.highlight {
    background: linear-gradient(120deg, rgba(139, 92, 246, 0.1) 0%,
            /* rgba(236, 72, 153, 0.1) */
            100%);
    color: #362e3b;
    /* LN */
    padding: 0.rem 0.6rem;
    border-radius: 5px;
    font-weight: 500;
}

/* ========================================
   GRILLES (COULEURS, BIENFAITS, ETC.)
   ======================================== */

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

.color-card,
.benefit-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.4s ease;
    box-shadow: var(--shadow-sm);
}

.color-card:hover,
.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.color-circle {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: all 0.4s ease;
}

.color-card:hover .color-circle {
    transform: scale(1.1) rotate(360deg);
}

.color-card h3,
.benefit-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--dark);
}

.color-card p,
.benefit-card p {
    color: #6B7280;
    line-height: 1.8;
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}


/* ========================================
   DECORATIVE CIRCLES
   ======================================== */
.decoration-circles {
    display: flex;
    justify-content: center;
    /* Centre les pastilles */
    flex-wrap: nowrap;
    /* FORCE le maintien sur une seule ligne */
    gap: 0.5rem;
    /* Réduit un peu l'espace entre les ronds sur mobile */
    margin: 4rem 0 2rem;
    padding: 1rem;
    /* Réduit un peu le padding latéral */
    width: 100%;
    /* S'assure que le bloc prend toute la largeur */
}

.circle {
    width: 50px;
    /* LN */
    height: 50px;
    /* LN */
    border-radius: 50%;
    animation: float 3s ease-in-out infinite;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}


.circle:nth-child(1) {
    background: linear-gradient(135deg, #FF00FF, #D100D1);
    animation-delay: 0s; /* Magenta */
}
.circle:nth-child(2) {
    background: linear-gradient(135deg, #EF4444, #DC2626);
    animation-delay: 0.2s; /* Rouge */
}

.circle:nth-child(3) {
    background: linear-gradient(135deg, #F97316, #EA580C);
    animation-delay: 0.4s; /* Rouge */
}

.circle:nth-child(4) {
    background: linear-gradient(135deg, #FBBF24, #F59E0B);
    animation-delay: 0.6s; /* Jaune */
}

.circle:nth-child(5) {
    background: linear-gradient(135deg, #10B981, #059669);
    animation-delay: 0.8s; /* Vert */
}


.circle:nth-child(6) {
    background: linear-gradient(135deg, #5574fc, #465EFB);
    animation-delay: 1.2s;  /* Outremer */
}

.circle:nth-child(7) {
    background: linear-gradient(135deg, #b700ff, #8b00cc);
    animation-delay: 1.4s;  /* Violet */
}



@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }
}

@media (max-width: 480px) {
    .circle {
        width: 30px !important;
        /* On réduit la taille pour que les 7 tiennent */
        height: 30px !important;
    }

    .decoration-circles {
        gap: 8px;
        /* On serre un peu les rangs */
    }
.hero {
        padding-top: 80px !important; /* On remonte encore un peu plus */
        padding-bottom: 2rem !important; /* On réduit le bas aussi */
        min-height: 35vh !important;    /* FORCE le bloc rose à être moins haut (35% de l'écran au lieu de 60%) */
        margin-top: 60px !important;    /* On réduit l'espace blanc au-dessus de la zone rose */
    }

    .hero h1 {
        font-size: 1.6rem !important;
        margin-bottom: 0.5rem !important;
    }
}


/* ========================================
   FOOTER FINAL - LOOK PRO & STABLE
   ======================================== */
footer {
    background: linear-gradient(to bottom, rgb(255, 0, 157) 0%, rgb(162, 0, 255) 100%) !important;
    color: white !important;
    padding: 3rem 1rem !important;
    text-align: center !important;
    width: 100% !important;
    box-sizing: border-box !important;
    margin-top: 50px;
}

.footer-container {
    max-width: 800px;
    margin: 0 auto;
}

/* Texte et Slogan */
footer p {
    color: white !important;
    font-size: 1rem;
    margin: 10px 0 !important;
    line-height: 1.5;
}

/* Le lien LN MORILLAS (Jaune, sans trait) */
footer a {
    color: #ffffff !important;
    text-decoration: none !important; /* On enlève le gros trait moche */
    border-bottom: 1px dotted rgba(255, 255, 255, 0.5) !important; /* Petit pointillé discret */
    font-weight: 500 !important;
    transition: all 0.3s ease;
    padding-bottom: 2px;
}

footer a:hover {
    border-bottom: 1px solid #ffffff !important; /* Le trait devient plein et blanc au survol */
    opacity: 1 !important;
}

/* La partie basse (Mentions légales) */
.footer-legal {
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 0.85rem;
    opacity: 0.8;
}

/* Liens secondaires en blanc */
.footer-legal a {
    color: white !important;
    font-weight: normal;
    text-decoration: underline !important;
}
/* ========================================
   ANIMATIONS
   ======================================== */

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ========================================
   RESPONSIVE
   ======================================== */

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 80px;
        right: -100%;
        flex-direction: column;
        background: white;
        width: 100%;
        max-width: 300px;
        padding: 2rem;
        box-shadow: var(--shadow-lg);
        transition: right 0.4s ease;
        gap: 0;
        border-radius: 0 0 0 20px;
    }

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

    .nav-links li {
        width: 100%;
    }

    .nav-links li a {
        width: 100%;
        padding: 1rem;
        border-radius: 10px;
        margin-bottom: 0.5rem;
    }

    .hero {
        margin-top: 80px;
        min-height: 50vh;
        padding: 6rem 1.5rem 3rem;
    }

    .hero h1 {
        font-size: 2rem;

    }

    .hero p {
        font-size: 1.1rem;
    }

    .main-content {
        margin: -30px auto 3rem;
        padding: 0 1rem;
    }

    .content-card {
        padding: 2rem 1.5rem;
    }

    .content-card h2 {
        font-size: 1.6rem;
    }

    .content-card h3 {
        font-size: 1.3rem;
    }

    .content-card p {
        text-align: left !important;
        font-size: 1.05rem; /* Un tout petit peu plus grand pour le confort */
        line-height: 1.7;
    }

    .colors-grid,
    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .decoration-circles {
        flex-wrap: wrap;
        gap: 0.8rem;
        padding: 1.5rem;
    }

    .circle {
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 480px) {
    /* 1. Logo et Titres */
    .logo {
        font-size: 1.4rem;
    }

    .hero h1 {
        font-size: 1.6rem !important;
        margin-bottom: 0.5rem !important;
    }

    /* 2. Le bandeau Rose */
    .hero {
        padding-top: 80px !important; 
        padding-bottom: 2rem !important;
        min-height: 30vh !important;
        margin-top: 50px !important;
    }

    /* 3. Le Texte (Point 2 corrigé) */
    .content-card p {
        text-align: left !important;
        font-size: 1rem;
    }

    .content-card {
        padding: 1.5rem 1rem;
    }

    /* 4. LES BOITES CONTACT (Le problème du décalage à droite) */
    .contact-wrapper .soin-details-box, 
    .soin-details-box {
        width: 90% !important;      /* On force une largeur relative */
        max-width: 450px;           /* Mais on ne dépasse jamais 450px */
        margin: 20px auto !important; /* On centre avec auto à gauche et à droite */
        padding: 20px 15px !important;
        float: none !important;     /* On annule tout flottement éventuel */
    }

    /* On s'assure que le contenu ne pousse pas les murs */
    .detail-item {
        flex-direction: column;     /* Sur petit tel, on met le label au-dessus de la valeur */
        align-items: center;        /* On centre tout ce petit monde */
        text-align: center;
        gap: 5px;
    }

    .detail-value {
        text-align: center !important;
        font-size: 0.95rem !important;
        word-break: break-word;
    }

    /* 5. Les cercles du bas */
    .circle {
        width: 30px !important;
        height: 30px !important;
    }
}
/* ========================================
   TARIFS
   ======================================== */


.soin-details-box {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 15px;
    padding: 25px;
    margin: 40px auto;
    max-width: 450px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    /* Donne du relief */

}

/* Alignement : Label à gauche, Valeur à droite */
.detail-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.detail-label {
    font-size: 0.85rem;
    color: #a78bfa;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.detail-value {
    font-weight: bold;
    font-size: 1.1rem;
    color: #1F2937;
    text-align: right;
    /* Calé à droite comme tu voulais */
}

.detail-divider {
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(139, 92, 246, 0.6), transparent);
    margin: 15px 0;
}

/* ========================================
   LE BLOC RÉSERVATION 
   ======================================== */

.reservation-phone {
    text-align: center !important;
    /* Force tout le bloc à se centrer */
    margin-top: 25px;
}

.reservation-phone p {
    margin-bottom: 15px !important;
    font-size: 0.95rem;
    color: #4B5563 !important;
    /* Ton gris habituel pour que ce soit lisible */
    text-align: center !important;
    /* Force le texte à se centrer */
    width: 100%;
}

.cta-button-soin {
    text-decoration: none !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 30px;
    /* Un peu plus de confort */
    background: linear-gradient(rgb(255, 0, 157), rgb(162, 0, 255) 100%);
    color: white !important;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(118, 75, 162, 0.4);
}

/* Effet au survol */
.cta-button-soin:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(118, 75, 162, 0.6);
    filter: brightness(1.1);
}

/* ========================================
   CONTACT
   ======================================== */

/* Ta classe d'origine pour les soins */
.content-card {
    background: white;
    /* Ou ton fond habituel */
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    margin-bottom: 2rem;
}

.content-card p {
    font-size: 1.1rem;
    line-height: 1.9;
    /* Ton réglage fétiche */
    color: #4B5563;
    /* Ton gris d'origine */
    margin-bottom: 1.5rem;
    text-align: justify;
}


/* Style des champs pour le formulaire pour ne pas casser le design */
.custom-input {
    width: 100%;
    padding: 0.8rem;
    margin-bottom: 1rem;
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
}

.btn-lumiere {
    background: linear-gradient(90deg, rgb(255, 0, 157), rgb(162, 0, 255));
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
}

/* Pour centrer ton nom et ton adresse dans la box */
.detail-label {
    display: block;
    text-align: center;
    width: 100%;
    /* Utilisation de ton gris fétiche */
    color: #4B5563;
    /* Application de ton line-height pour la cohérence, 
       un peu réduit (1.6) pour que l'adresse ne soit pas trop étirée */
    line-height: 1.6;
    font-size: 1rem;
}

/* Pour s'assurer que le nom en gras garde aussi la bonne couleur */
.detail-label strong {
    color: #4B5563;
    font-weight: 700;
}

/* Pour que les champs du formulaire soient élégants dans la box */
.input-light {
    width: 100%;
    border: none;
    /* On utilise rgba pour contrôler l'opacité du trait */
    /* 0, 0, 0 est noir | 0.1 est l'opacité (10%) */
    border-bottom: 1px solid rgba(75, 85, 99, 0.2);

    margin-bottom: 15px;
    padding: 10px 0;
    font-family: inherit;
    font-size: 1rem;
    color: #4B5563;
    background: transparent;
    outline: none;
}

.input-light:focus {
    border-bottom: 1px solid rgb(162, 0, 255);
    /* Ton violet au clic */
}

/* Pour espacer un peu les deux boîtes sur ta page contact */
.contact-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    /* Centre les boîtes horizontalement */
    gap: 30px;
    width: 100%;
    margin-top: 2rem;
}

/* On force la largeur sur les boîtes spécifiques à cette page */
.contact-wrapper .soin-details-box {
    width: 100%;
    max-width: 500px;
    /* Tu peux ajuster ce chiffre selon tes préférences */
    min-width: 300px;
    /* Sécurité pour les petits écrans */
    box-sizing: border-box;
    /* Pour que le padding ne dépasse pas */
}

/* ========================================
    FAQ
   ======================================== */


/* Alignement de la FAQ sur la même largeur que tes contacts */
.faq-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    /* Réduction de l'espace entre les boites */
    margin-top: 2rem;
}

.faq-box {
    width: 100%;
    max-width: 500px;
    /* Même largeur que tes boîtes Contact */
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 1rem 1.5rem;
    /* Réduit la marge interne (haut/bas à 1rem) */
    margin-bottom: 0 !important;
    /* Annule la marge par défaut des soins */
    margin-top: 0 !important;

}

/* Style de la question */
summary.detail-label {
    list-style: none;
    /* Enlève la petite flèche par défaut si tu veux */
    outline: none;
    padding: 10px 0;
}

/* Style de la réponse (on reprend tes réglages fétiches) */
.faq-answer {
    font-size: 1rem;
    line-height: 1.9;
    /* Ton réglage d'écartement des lignes */
    color: #4B5563;
    /* Ton gris habituel */
    text-align: justify;
    padding: 15px 0;
}

/* Petit effet : on cache le trait de séparation quand c'est fermé */
details[open] .detail-divider {
    display: block;
}

details .detail-divider {
    display: none;
}

.faq-intro {
    max-width: 450px;
    /* Même largeur que tes boîtes */
    margin: 0 auto 2rem auto;
    text-align: center;
    /* Pour équilibrer avec tes boîtes centrées */
}

.faq-intro p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: #4B5563;
    font-style: italic;
    /* Optionnel : pour différencier l'intro des réponses */
}

.faq-category-title {
    color: #4B5563;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-style: italic;
    margin-top: 2.5rem;
    /* Espace avant le titre */
    margin-bottom: 1rem;
    /* Espace après le titre */
    width: 100%;
    max-width: 450px;
    text-align: center;
    opacity: 0.8;
}

/* On réduit encore l'espace au-dessus du tout premier titre */
.faq-intro+.faq-category-title {
    margin-top: 1rem;
}

/* Conclusion FAQ */
.faq-conclusion {
    max-width: 450px;
    margin: 4rem auto 2rem auto;
    /* Bel espace après la FAQ */
    text-align: center;
}

.faq-conclusion p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: #4B5563;
    margin-bottom: 2rem;
    /* On peut le mettre en italique pour le différencier */
    font-style: italic;
}

.final-cta {
    margin-top: 20px;
}

/* Petit effet de rebond pour attirer l'oeil sur le bouton final */
.final-cta .cta-button-soin {
    transition: transform 0.3s ease;
}

.final-cta .cta-button-soin:hover {
    transform: scale(1.05);
}

.dispo-text {
    font-size: 1.1rem !important;
    /* Un peu plus petit que le paragraphe principal */
    color: #4B5563;
    margin-top: -1rem;
    /* On rapproche cette ligne de la précédente */
    margin-bottom: 2rem;
}

.dispo-text strong {
    color: rgb(162, 0, 255);
    /* Une petite touche de ton violet pour souligner tes jours d'ouverture */
}

/* ========================================
    PAstilles Couleurs Bienfaits
   ======================================== */

/* Style de base des pastilles (inspiré de tes cercles de décoration) */
.pastille {
    display: inline-block;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    margin-right: 12px;
    vertical-align: middle;
    /* Aligne la pastille avec le texte du titre */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    /* Petit relief léger */
}


/* Liste en 2 colonnes/

/* Tes variantes de couleurs (tu peux ajuster les codes couleurs) */
.magenta {
    background-color: #ff4df6;
}

.ecarlate {
    background-color: #ff4d88;
}

.rouge {
    background-color: #ff4d4d;
}

.orange {
    background-color: #ff944d;
}

.jaune {
    background-color: #ffdb4d;
}

.pomme {
    background-color: #bbff4d;
}

.vert {
    background-color: #4dff4d;
}

.turquoise {
    background-color: #4dffe1;
}

.cyan {
    background-color: #4dcdff;
}

.outremer {
    background-color: #4d94ff;
}

.bleu {
    background-color: #504dff;
}

.violet {
    background-color: #a200ff;
}

/* Ta couleur fétiche */

.liste-couleurs {
    display: grid;
    grid-template-columns: 1fr;
    /* Par défaut : 1 seule colonne (pour mobile) */
    gap: 10px 60px;
    /* Espace entre les lignes et les colonnes */
    margin-top: 20px;
}

/* Quand l'écran est plus large que 768px (Tablettes et Ordinateurs) */
@media (min-width: 768px) {
    .liste-couleurs {
        grid-template-columns: 1fr 1fr;
        /* On passe à 2 colonnes égales */
    }
}

/* Lien site */
a {
    color: rgb(162, 0, 255);
    /* Violet pour le lien */
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

a:hover {
    color:  rgb(255, 0, 157); 
    /* Passage au rose au survol */


    /*  Le Footer stylisé (Ton dégradé rose/violet)*/

    footer {
        background: linear-gradient(135deg, rgb(255, 0, 157) 0%, rgb(162, 0, 255) 100%);
        color: white;
        padding: 3rem 1rem 1.5rem 1rem;
        text-align: center;
        margin-top: 4rem;
    }

    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-around;
        gap: 2rem;
    }

    footer h3 {
        color: white;
        /* On surcharge le style h3 général pour le footer */
        background: none;
        border: none;
        padding: 0;
        margin-bottom: 1rem;
        font-size: 1.2rem;
    }

    footer a {
        color: white;
        text-decoration: underline;
        transition: opacity 0.3s;
    }

    footer a:hover {
        opacity: 0.8;
    }

    .footer-legal {
        width: 100%;
        margin-top: 2rem;
        padding-top: 1.5rem;
        border-top: 1px solid rgba(255, 255, 255, 0.2);
        font-size: 0.9rem;
        opacity: 0.9;
    }

    /* Positionnement du menu parent */
    .nav-links li {
        position: relative;
        display: inline-block;
    }

    /* Style du menu déroulant (le contenu) */
    .dropdown-content {
        display: none;
        /* Caché par défaut */
        position: absolute;
        background-color: #ffffff;
        min-width: 160px;
        box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.1);
        /* Ombre légère pour la profondeur */
        z-index: 1000;
        border-radius: 4px;
        padding: 10px 0;
        list-style: none;
        top: 100%;
        /* S'affiche juste en dessous du texte */
        left: 0;
    }

    /* Liens à l'intérieur du menu déroulant */
    .dropdown-content li a {
        color: #333 !important;
        /* Texte sombre pour bien lire sur le blanc */
        padding: 10px 20px;
        text-decoration: none;
        display: block;
        font-size: 0.95rem;
        transition: background 0.3s;
    }

    /* Effet au survol d'un lien du sous-menu */
    .dropdown-content li a:hover {
        background-color: #f1f1f1;
        color: rgb(255, 0, 157) !important;
        /* Rappel de ton Rose */
    }

    /* AFFICHAGE AU SURVOL : La magie se passe ici */
    .dropdown:hover .dropdown-content {
        display: block;
    }

    /* ========================================
    Sous Menu
   ======================================== */

    /* 1. Le parent doit être une base stable */
    .nav-links li {
        position: relative;
        /* Très important : c'est l'ancre du sous-menu */
    }

    /* 2. Le sous-menu doit flotter AU-DESSUS du reste sans pousser le contenu */
    .dropdown-content {
        display: none;
        position: absolute;
        /* Il sort du flux, il ne pousse plus le H1 */
        top: 100%;
        /* Il commence pile au bas de la barre de navigation */
        left: 0;
        background-color: white;
        min-width: 180px;
        box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
        z-index: 9999;
        /* Il passe devant le H1 et le bandeau rose */
        padding: 0;
        margin: 0;
        list-style: none;
    }

    /* 3. On empêche la nav de masquer ce qui dépasse */
    #navbar,
    .nav-container {
        overflow: visible !important;
    }

    /* CACHER LE SOUS-MENU PAR DÉFAUT */
    .dropdown-content {
        display: none !important;
    }

    /* NE L'AFFICHER QUE SUR LES PAGES DE SOINS */
    .page-soins .dropdown:hover .dropdown-content {
        display: block !important;
        position: absolute;
        top: 100%;
        background: white;
        z-index: 9999;
    }

    /* --- PROTECTION DU BANDEAU ROSE --- */
    .page-soins .hero {
        margin-top: 0 !important;
        padding-top: 160px !important;
        /* On pousse le H1 vers le bas pour qu'il respire */
        min-height: 40vh;
    }

    /* --- STRUCTURE DU SOUS-MENU --- */
    .page-soins .dropdown {
        position: relative;
        /* Base pour le positionnement du menu */
    }

    .page-soins .dropdown-content {
        display: none;
        position: absolute;
        top: 100%;
        /* S'affiche pile sous le lien "Nos Soins" */
        left: 0;
        background: white;
        min-width: 180px;
        box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.15);
        border-radius: 8px;
        padding: 10px 0;
        list-style: none;
        z-index: 9999;
        /* Toujours au-dessus du bandeau rose */
    }

    /* --- AFFICHAGE AU SURVOL --- */
    .page-soins .dropdown:hover .dropdown-content {
        display: block;
    }

    /* --- STYLE DES LIENS DU SOUS-MENU --- */
    .page-soins .dropdown-content li a {
        color: #333 !important;
        padding: 10px 20px;
        font-size: 0.9rem;
        display: block;
        background: none !important;
        /* On enlève le dégradé ici pour la lisibilité */
    }

    .page-soins .dropdown-content li a:hover {
        color: rgb(255, 0, 157) !important;
        background: #f8f8f8 !important;
    }

/* ========================================
   ANDROID + IPHONE
   ======================================== */
@media (max-width: 480px) {
    /* 1. On verrouille la largeur de l'écran */
    html, body {
        overflow-x: hidden !important;
        width: 100vw !important;
        position: relative !important;
    }

    /* 2. On simplifie les containers pour Safari */
    .contact-wrapper, .main-content, .faq-wrapper {
        display: block !important; 
        width: 100% !important;
        padding: 0 10px !important;
        margin: 0 !important;
    }

    /* 3. La Boîte (L'opération chirurgicale) */
    .soin-details-box, 
    .contact-wrapper .soin-details-box,
    .faq-box {
        display: block !important;
        width: auto !important; /* Laisse les marges définir la largeur */
        min-width: 0 !important;
        max-width: 100% !important;
        margin: 20px 5px !important; /* Crée l'espace à gauche et à droite */
        padding: 20px 15px !important;
        
        /* Correctifs iPhone */
        box-sizing: border-box !important;
        -webkit-box-sizing: border-box !important;
        float: none !important;
        position: static !important;
    }

    /* 4. On empile le contenu pour éviter que le texte ne "pousse" les murs */
    .detail-item {
        display: block !important; /* On casse le mode ligne */
        text-align: center !important;
    }

    .detail-label, .detail-value {
        display: block !important;
        width: 100% !important;
        text-align: center !important;
        margin-bottom: 5px;
    }
}
/* --- STYLE DES TITRES DE CARACTÉRISTIQUES (H4) --- */
.feature-item h4 {
    font-size: 1.05rem;           /* Taille équilibrée */
    font-weight: 600;
    text-transform: uppercase;    /* Pour le côté pro et statutaire */
    letter-spacing: 1.5px;        /* C'est ici qu'on gagne en finesse */
    color: rgb(162, 0, 255);      /* Ton violet signature */
    margin-top: 35px !important;  /* Grand espace au-dessus pour respirer */
    margin-bottom: 12px !important; /* Espace avec le texte en dessous */
    display: block;
}

/* On réduit un peu l'espace pour le tout premier titre de la liste */
.feature-item:first-of-type h4 {
    margin-top: 20px !important;
}

/* On soigne le texte qui suit le titre */
.feature-item p {
    margin-bottom: 20px;
    line-height: 1.7;             /* Aération du texte pour le confort visuel */
}

/* --- AJUSTEMENT DES ANCRES (Évite que la barre de menu cache les titres) --- */
[id] {
    scroll-margin-top: 100px;
}

