/* Variables de couleurs */
:root {
    --primary-yellow: #FFF5B8;      /* Jaune pastel */
    --primary-orange: #FFB347;      /* Orange doux */
    --secondary-orange: #FF8C42;    /* Orange plus soutenu */
    --text-dark: #2D2D2D;           /* Gris foncé */
    --text-light: #666666;          /* Gris moyen */
    --white: #FFFFFF;
    --light-blue: #ebfcf9;
    --bg-light: rgba(255, 254, 245, 0);
    --shadow: rgba(255, 179, 71, 0.2);
    --nav-bar: rgba(255, 255, 255, 0.95);    
    --vert-d-eau: #e2f6cd;
    --gris-leger: rgba(255, 255, 255, 0.95);
    --bleu-leger: #cff4ec;
    --orange3: #ff792e;
    --vert-d-eau_2: rgba(226, 246, 205, 0.5);
    --gris-leger_2: rgba(255, 255, 255, 0.5);
    --bleu-leger_2: rgba(207, 244, 236, 0.5);
    --blanc-trans: rgba(255, 255, 255, 0.5);
    --bg-before: rgba(255, 245, 184, 0.3);

    



}
/* Variables de polices */


/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-image: url('images/background.avif');
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 100vh;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 245, 184, 0.3);
    z-index: -1;
}

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

.container1 {
    max-width: 1300px;
    margin: 1rem auto;
    padding: 0 20px;
    border-style: solid;
    border-width: 0.1rem 0.1rem 0.1rem 0.1rem;
    border-color :  grey;
    border-radius: 0.5rem;
    box-shadow: 0.8rem 0.8rem rgba(0, 0, 0, 0.20);

}


/* Navigation */
.navbar {
    background: var(--nav-bar);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px var(--shadow);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

.logo {
    font-size: 2vw;
    font-weight:lighter;
    color: var(--text-dark);
    font-family: didot-w01-italic,"Times New Roman", Times, serif;
    font-style: italic;
}

.logo a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: lighter;
    transition: color 0.3s ease;
}

.logo a:hover {
    color: var(--text-light);
}



.nav-links {
    display: flex;
    font-size: 1.5vw;
    list-style: none;
    gap: 1rem;
}

.nav-links li {
    margin-top: 1rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: lighter;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--secondary-orange);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 3vw;
    cursor: pointer;
}



/* ============================================
   NOUVELLE SECTION IDENTITÉ (PREMIER BLOC)
   ============================================ */
.identity-section {
    margin: 2rem auto; /* Espace sous la navbar fixe */
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: 1400px;
    justify-items: center;
}

.identity-section h1 {
    font-weight: 500;
    font-size: 1.5rem;
}


/* Partie Gauche : Identité + Contacts */
.identity-left {
    grid-column: 1;
    background: var(--light-blue);
    backdrop-filter: blur(10px);
    padding-top: 1rem;
    height: 100%;
    align-items: center;
    margin: auto;
}

.identity-left div {
    margin: auto;
}


.identity-title {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin: auto;    
}

.titre-profession {
    max-width: 50%;
    color: var(--text-dark);
    font-size: 2.3rem;
    font-weight: 300;
    margin: 2rem;
}


.photo-praticienne {
    width: 80%;
    object-fit: cover;
}

.praticienne-info h2 {
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    margin-left: 10%;
    text-align: left;
}


.contacts {
    margin-bottom: 2rem;
    grid-column: 1 / -1;
}


.contact-item0 {
    justify-content: center; 
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 3rem;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.contact-item0 .call strong {
    color: var(--text-light);
    text-align: center;
    margin: auto;
    font-size: 1.8rem 
;
}

.orange_links {
    text-decoration-line:none; 
    color: var(--orange3);
}

.contact-item {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
    justify-content: center; 
    text-align: center;
    gap: 1rem;
    margin: auto;
    padding: 3rem;
    border-radius: 10px;
}



.contact-item .details strong {
    display: block;
    text-align: center;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
    font-size: 2rem;   
}

.contact-item .details .a, .p {
    color: var(--text-light);
    text-align: center;
    font-size: 3rem;
;
}

.logo_handicap {
    margin-right: 1rem;
}

/* Partie Droite : Image Reposante */
.identity-right {
    grid-column: 2;
    position: relative;
    overflow: hidden;
    height:100%;
}

.relaxing-image {
    width: 100%;
    height: 100%;
    position: relative;
}

.img-relaxante {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    padding: 3rem 2rem 2rem;
}

.quote {
    color: var(--white);
    font-size: 1.5rem;
    font-style: italic;
    text-align: center;
    line-height: 1.8;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    font-weight: bold;
}

/* Boutons */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    border: none;
    text-align: center;
}

.btn-primary {
    background: var(--secondary-orange);
    color: var(--white);
    display: block;
    width: 100%;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px var(--shadow);
}

/* Sections suivantes */

section {
    padding: 6rem 0;
}

section h1 {
    text-align: center;
    font-size: 2.5rem;
;
    color: var(--text-dark);
}

.about,
.services,
.public,
.contact {
    background: var(--bg-light);
    backdrop-filter: blur(3px);
    border-radius: 0px;
    margin: 0rem auto;
    max-width: 1400px;
    padding: 3rem 0rem;
}


/* Public concerné - TROIS COLONNES ÉGALES */
.public {
    background: var(--bg-light);
}

.public-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 colonnes de taille égale */
    gap: 0rem;
    padding: 0rem;
}

.public-card {
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(2px);
    padding: 3rem;
    display: flex;
    flex-direction: column;
}

.public-card-bg1 {
    background-color: var(--vert-d-eau);
}

.public-card-bg2 {
    background-color: var(--gris-leger);
}

.public-card-bg3 {
    background-color: var(--bleu-leger);
}


.public-card p {
    font-style: italic;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    line-height: 1.8;
    text-align: center;
    flex-grow: 0; /* Le texte prend l'espace disponible */
}

.public-card li {
    margin-bottom: 0rem;
    color: var(--text-light);
    list-style-position: inside;
}

.public-author {
    font-weight: 600;
    color: var(--secondary-orange);
    text-align: right;
    padding-top: 1rem;
    border-top: 2px solid var(--primary-yellow);
}

.public-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: normal;
    transition: color 0.3s ease;
}

.public-links a:hover {
    color: var(--text-light);
}


.public_img {
    height:auto;
    width:15%;
}


.public_bouton {
    content:"->";
    font-size: 5rem;
    padding: 1rem;
    text-align: center;
    text-decoration-line:none; 
    color: var(--orange3);
}




/*  DEFINITIONS - FORMATION - PRATIQUE */

.dfp {
    background-image: url("images/background.avif");
    background-repeat: no-repeat;
    background-size: cover;
    margin: 2rem auto;
    max-width: 1400px;
    padding: 2rem 0rem;
    color:var(--text-dark);
    font-weight: 500;
}

.dfp-grid0 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
}

.dfp-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, auto));
    gap: 2rem;
}

.dfp-card {
    background: rgba(255, 255, 255, 0);
    backdrop-filter: blur(2px);
    padding: 0.5rem;
    border-radius: 0px;
    text-align: center;
    position: relative;
    font-size: 1.2rem;
}

.img-zen {
    width: 100%;
    height: 22%;
    object-fit: cover;
    display: block;
    margin-bottom: 1rem;
}





.texte-zen {
    color:var(--text-dark);
}

.dfp h2 {
    color:var(--text-dark);
    font-size: 2rem;
    font-family: 'Poppins', sans-serif;
}

.dfp h3 {
    color:var(--text-dark);
    font-size: 1.5rem;
    font-family: 'Poppins', sans-serif;
}



.dfp-card ul {
    margin-top: 1.5rem;
}

.dfp-card li {
    margin-bottom: 0.5rem;
    color: var(--text-light);
    text-align:left;
    color:black;
}

.dfp-card p {
    line-height: 2;
    font-family: 'Poppins', sans-serif;
}


.dfp-note {
    text-align: center;
    margin-top: 2rem;
    color: var(--text-light);
    font-size: 0.9rem;
}



/* A PROPOS */

.about {
    margin: 2rem auto;
    max-width: 1400px;
    padding-top: 4rem;
    color:black;
}


.about-grid {
    background: var(--blanc-trans);
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, auto));
    gap: 4rem;
    padding: 4rem;
}

.about-card {
    background: rgba(255, 255, 255, 0);
    padding: 0.5rem;
    border-radius: 0px;
    text-align: left;
    position: relative;
    font-size: 1.1rem;
}

.img-about1 {
    width: 90%;
    object-fit: cover;
    display: block;
    margin-bottom: 1rem;
    text-align: center;
}


.img-about2 {
    width: 80%;
    object-fit: cover;
    display: block;
    margin: 0 2rem 0 2rem;
    text-align: center;
}


.texte-about {
    color:black;
}

.about h1 {
    color:black;
    font-family: 'libre baskerville',Garamon, serif;
    font-size:x-large;
}

.about p {
    color:black;
    font-weight: 200;
}




/* DEONTOLOGIE */

.deont {
    margin: 2rem auto;
    max-width: 1400px;
    padding-top: 4rem;
    color:black;
}


.deont-grid {
    background: var(--blanc-trans);
    display: flex;
    justify-content: center;;
}

.deont-card {
    background: rgba(255, 255, 255, 0);
    border-radius: 0px;
    text-align: left;
    position: center;
    font-size: 1.1rem;
}


.texte-deont {
    color:black;
}

.deont h1 {
    color:black;
    font-family: 'libre baskerville',Garamon, serif;
    font-size: x-large;
    margin-bottom: 1rem
}

.deont p {
    color: black;
    font-weight: 200;
    margin: 2rem;
    max-width: clamp(45ch, min(70vw, 70ch), 80ch);
}





/* PRISES EN CHARGE */

.pec {
    background: rgb(255,255,255,0);
    max-width: 1400px;
    color:black;
    margin: auto;
}


.pec-grid {
    display: grid;
    grid-template: 1, 3;
}

.pec-title {
    background: rgba(0, 0, 0, 0);
    padding-top: 1rem;
    border-radius: 0px;
    text-align: center;
    position: relative;
    font-size: 1.1rem;
    padding-left: 10rem;
    padding-right: 10rem;
}

.pec-items {
    text-align: center;
    position: relative;
    font-size: 1.1rem;
    padding-left: 10rem;
    padding-right: 10rem;
}

.pec-item1 {
    background: var(--vert-d-eau_2);
    }

.pec-item2 {
    background: var(--gris-leger_2);
}

.pec-item3 {
    background: var(--bleu-leger_2);
 }

.pec h1 {
    color:black;
    font-family: 'libre baskerville',Garamon, serif;
    font-size: 2.5rem;
    font-weight: normal;
    margin-top: 1rem;
}

.pec h2 {
    color:black;
    font-family: 'libre baskerville',Garamon, serif;
    font-size: 2rem;
    font-weight: normal;
    margin-top: 1rem;    
}

.pec p {
    color:black;
    font-weight: 200;
    text-align: left;
    font-size: 1rem;
}



/* PLAN */

.plan {
    margin: 2rem auto;
    max-width: 1400px;
    padding-top: 4rem;
    color:black;
}


.plan-grid {
    background: var(--blanc-trans);
    display: flex;
    justify-content: center;;
    gap: 4rem;
}

.plan-card {
    background: rgba(255, 255, 255, 0);
    border-radius: 0px;
    text-align: left;
    position: center;
    font-size: 1.1rem;
}


.texte-plan {
    color:black;
}

.plan h1 {
    color:black;
    font-family: 'libre baskerville',Garamon, serif;
    font-size: x-large;
    margin-bottom: 1rem
}

.plan p {
    color: black;
    font-weight: normal;
    margin: 0rem 3rem 0rem 3rem;
    max-width: clamp(45ch, min(70vw, 70ch), 80ch);
}


.plan-iframe {
    width: 36rem;
    height: 60rem;
    max-width: 100%;
    margin: 0 auto;
    margin-bottom: 5vh;
    display: block;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 20px 25px -5px, rgba(0, 0, 0, 0.04) 0px 10px 10px -5px;
    background: linear-gradient(white, white) padding-box, linear-gradient(to right, #2988e6, #57bff5) border-box;
    border: 0.2rem solid transparent;
    border-radius: 0.5rem;
}


/* FOOTER - Mise à jour avec réseaux sociaux */
.footer {
    background: rgba(0, 0, 0, 0);
    backdrop-filter: blur(10px);
    color: var(--white);
    padding: 1rem 0 1rem;
    margin-top: 4rem;
#    border-top: 3px solid var(--primary-orange);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.footer-logo h3 {
    font-size: 1.5rem;
    color: var(--primary-yellow);
    margin-bottom: 0.5rem;
}

.footer-logo p {
    color: rgba(0, 0, 0, 0.7);
    font-size: 0.95rem;
    margin: 0;
}

/* Styles des boutons réseaux sociaux */
.social-links {
    display: flex;
    gap: 1rem;
}

.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 20%;
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-dark);
    transition: all 0.3s ease;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-btn svg {
    width: 22px;
    height: 22px;
}

/* Effets au survol par réseau */
.social-btn.facebook:hover {
    transform: translateY(-3px);
}


/* Pied de page inférieur */
.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
}

.footer-bottom p {
    margin: 0.25rem 0;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}


/* Responsive Footer */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
}

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

/* ============================================
   TABLETTES
   ============================================ */
@media (max-width: 992px) {


    .identity-section {
        margin: 2rem auto; /* Espace sous la navbar fixe */
        display: grid;
        grid-template-columns: 1fr;
    }


    .identity-right {
        grid-column: 1;
    }
    .identity-left {
        grid-column: 1;   
    }

    .identity-title {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-evenly;
    }

    .photo-praticienne {
        width: 80%;
    }

    /* Responsive pour la section "public" */
    .public-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 colonnes sur tablette */
    }

}

.pec-items {
    padding-left: 4rem;
    padding-right: 4rem;
}

.pec-title {
    padding-left: 5rem;
    padding-right: 5rem;
}

/* ============================================
   petites tablettes
   ============================================ */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--nav-bar);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 1rem;
        box-shadow: 0 5px 10px var(--shadow);
    }

    .nav-links.active {
        display: flex;
        right: 0;
        text-align: right;
        line-height: 0; 
    }
        
    .logo {
        font-size: 4vw;
        font-weight:lighter;
        color: var(--text-dark);
        font-family: didot-w01-italic,"Times New Roman", Times, serif;
        font-style: italic;
    }


    .nav-links {
        font-size: 4vw;
    }

    .menu-toggle {
        display: block;
        margin-right: 0.5rem;
    }


    .praticienne-info 2 {
        font-size: 1.5rem;
    }

    .contact-item {
        flex-direction: column;
        gap: 0.5rem;
    }

    .public-grid {
        grid-template-columns: 1fr; /* 1 colonne sur mobile */
    }

}


/* ============================================
   Téléphones
   ============================================ */
@media (max-width: 480px) {



    .quote {
        font-size: 0.95rem;
        padding: 1rem;
    }

    section {
        padding: 4rem 0;
    }
}






@media (prefers-color-scheme: dark) {
/* Variables de couleurs */
    :root {
        --primary-yellow: #403c20;      /* Jaune pastel */
        --primary-orange: #563d19;      /* Orange doux */
        --secondary-orange: #3e2211;    /* Orange plus soutenu */
        --text-dark: #2d2d2d;           /* Gris foncé */
        --text-light: #3c3b3b;          /* Gris moyen */
        --white: #e0e0e0;
        --light-blue: #9eafb2;
        --bg-light: rgba(60, 60, 60, 0);
        --shadow: rgba(133, 94, 38, 0.2);
        --nav-bar: rgba(158, 156, 156, 0.95);
        --vert-d-eau: #91958f;
        --gris-leger: rgba(148, 146, 146, 0.95);
        --bleu-leger: #939897;
        --vert-d-eau_2: rgba(50, 51, 48, 0.5);
        --gris-leger_2: rgba(81, 72, 72, 0.5);
        --bleu-leger_2: rgba(65, 76, 74, 0.5);    
        --orange3: #946043;
        --blanc-trans: rgba(128, 128, 128, 0.5);
        --bg-before: rgba(177, 171, 129, 0.3);

    }
    
    body {
        background-image: url('images/background_dark.avif');
    }

 
    .dfp {
        background-image: url("images/background_dark.avif");
    }


    .billes {
        content: url('images/billes_dark.avif');     
    }

    .bougies {
        content: url('images/bougies_dark.avif');
    }


}