/* 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);
}
/* 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.jpg');
    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;
    padding: 0 20px;
}

.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: rgba(255, 255, 255, 0.95);
    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: 1.8rem;
    font-weight: normal;
    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: 500;
    transition: color 0.3s ease;
}

.logo a:hover {
    color: var(--text-light);
}



.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--secondary-orange);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
}



/* ============================================
   NOUVELLE SECTION IDENTITÉ (PREMIER BLOC)
   ============================================ */
.identity-section {
    padding: 6rem 0;
    margin-top: 60px; /* Espace sous la navbar fixe */
}

.identity-grid {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Deux colonnes égales */
#    gap: 4rem;
    align-items: center;
}

/* Partie Gauche : Identité + Contacts */
.identity-left {
    background: var(--light-blue);
    backdrop-filter: blur(10px);
    padding-top: 1rem;
    height: 100%;
}

.praticienne-photo {
    margin-bottom: 2rem;
    text-align: center;
}

.photo-praticienne {
    width: 600px;
    height: 200px;
    text-align: center;
    object-fit: cover;
;
}

.praticienne-info h3 {
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    text-align: left;
}

.titre-profession {
    color: var(--text-dark);
    font-size: 1.1rem;
    text-align: left;
    margin-bottom: 2rem;
    font-weight: 500;
}

.contacts {
    margin-bottom: 2rem;
}


.contact-item0 {
    display: flex;
    align-items: flex-start;
    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: 0;
    font-size: 1.8rem 
;
}


.contact-item {
    display: flex;
    align-items: flex-start;
    justify-content: center; 
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 3rem;
    border-radius: 10px;
}


.contact-item .icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.contact-item .details strong {
    display: block;
    text-align: center;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
    font-size: 1.5rem    
}

.contact-item .details p {
    color: var(--text-light);
    text-align: center;
    margin: 0;
    font-size: 1.2rem 
;
}



/* Partie Droite : Image Reposante */
.identity-right {
    position: relative;
    overflow: hidden;
    height:100%;
}

.relaxing-image {
    width: 100%;
    height: 100%;
    position: relative;
}

.img-relaxante {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.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.1rem;
    font-style: italic;
    text-align: center;
    line-height: 1.8;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* 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 h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--text-dark);
}

.about,
.services,
.public,
#.dfp,
.contact {
    background: var(--bg-light);
    backdrop-filter: blur(3px);
    border-radius: 0px;
    margin: 0rem auto;
    max-width: 1400px;
#    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    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 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;
    color:orange;
    text-align: center;
    text-decoration: none; 
}


/* Responsive pour la section "public" */
@media (max-width: 992px) {
    .public-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 colonnes sur tablette */
    }
}

@media (max-width: 768px) {
    .public-grid {
        grid-template-columns: 1fr; /* 1 colonne sur mobile */
    }
}





/*  DEFINITIONS - FORMATION - PRATIQUE */

.dfp {
    background-image: url("images/background.jpg");
    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);
    text-size:2rem;
}

.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: rgb(255,255,255,0.5);
    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%;
    height: 45%;
    object-fit: cover;
    display: block;
    margin-bottom: 1rem;
    text-align: center;
}

.img-about2 {
    width: 80%;
    height: 60%;
    object-fit: cover;
    display: block;
    margin: 0 2rem 0 2rem;
    text-align: center;
}

.texte-about {
    color:black;
}

.about h2, h3 {
    color:black;
    font-family: 'libre baskerville',Garamon, serif;
}

.about p {
    color:black;
    font-weight: 200;
}




/* DEONTOLOGIE */

.deont {
    margin: 2rem auto;
    max-width: 1400px;
    padding-top: 4rem;
    color:black;
}


.deont-grid {
    background: rgb(255,255,255,0.5);
    display: flex;
    justify-content: center;;
    gap: 4rem;
}

.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 h2, h3 {
    color:black;
    font-family: 'libre baskerville',Garamon, serif;
}

.deont p {
    color: black;
    font-weight: 200;
    margin: 3rem;
    max-width: clamp(45ch, min(70vw, 70ch), 80ch);
}





/* PRISES EN CHARGE */

.pec {
    background: rgb(255,255,255,0);
    max-width: 1400px;
    color:black;
}


.pec-grid {
    display: grid;
    grid-template: 1, 3;
}

.pec-grid0 {
    background: rgba(0, 0, 0, 0);
    padding-top: 1rem;
    border-radius: 0px;
    text-align: center;
    position: relative;
    font-size: 1.1rem;
    margin: auto;
    padding-left: 10rem;
    padding-right: 10rem;
}


.pec-grid1 {
    background: rgba(226, 246, 205, 0.5);
    text-align: center;
    position: relative;
    font-size: 1.1rem;
    margin: auto;
    padding-left: 10rem;
    padding-right: 10rem;
}

.pec-grid2 {
    background: rgba(255, 255, 255, 0.5);
    text-align: center;
    position: relative;
    font-size: 1.1rem;
    margin: auto;
    padding-left: 10rem;
    padding-right: 10rem;
}

.pec-grid3 {
    background: rgba(207, 244, 236, 0.5);
    text-align: center;
    position: relative;
    font-size: 1.1rem;
    margin: auto;
    padding-left: 10rem;
    padding-right: 10rem;
}


.texte-pec {
    color:black;
}

.pec h2 {
    color:black;
    font-family: 'libre baskerville',Garamon, serif;
    font-size: 2rem;
    font-style: italic;
    font-weight: 300;
}

.pec h3 {
    color:black;
    font-family: 'libre baskerville',Garamon, serif;
    font-size: 3rem;
    font-weight: normal;
}

.pec p {
    color:black;
    font-weight: 200;
    text-align: center;
    font-size: 1rem;
    max-width: clamp(45ch, min(90vw, 90ch), 90ch);
}



/* PLAN */

.plan {
    margin: 2rem auto;
    max-width: 1400px;
    padding-top: 4rem;
    color:black;
}


.plan-grid {
    background: rgb(255,255,255,0.5);
    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 h2, h3 {
    color:black;
    font-family: 'libre baskerville',Garamon, serif;
}

.plan p {
    color: black;
    font-weight: normal;
    margin: 0rem 3rem 0rem 3rem;
    max-width: clamp(45ch, min(70vw, 70ch), 80ch);
}






/* CONTACT */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.info-item {
    margin-bottom: 2rem;
}

.info-item h4 {
    color: var(--secondary-orange);
    margin-bottom: 0.5rem;
}

.info-item p {
    color: var(--text-light);
}




/* 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
   ============================================ */
@media (max-width: 992px) {
    .identity-grid {
        grid-template-columns: 1fr; /* Une colonne sur tablette/mobile */
        gap: 2rem;
    }

    .identity-right {
        height: 350px;
    }

    .identity-left {
        padding: 2rem;
    }

    .photo-praticienne {
        width: 140px;
        height: 140px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 1rem;
        box-shadow: 0 5px 10px var(--shadow);
    }

    .nav-links.active {
        display: flex;
    }

    .menu-toggle {
        display: block;
    }

    .identity-section {
        padding: 4rem 0;
    }

    .identity-right {
        height: 300px;
    }

    .photo-praticienne {
        width: 120px;
        height: 120px;
    }

    .praticienne-info h3 {
        font-size: 1.5rem;
    }

    .contact-item {
        flex-direction: column;
        gap: 0.5rem;
    }

    .about,
    .deont,
    .public,
    .dfp,
    .plan,
    .contact {
        margin: 2rem 1rem;
        max-width: calc(100% - 2rem);
        padding: 2rem 1rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .identity-right {
        height: 250px;
    }

    .quote {
        font-size: 0.95rem;
        padding: 1rem;
    }

    section {
        padding: 4rem 0;
    }
}