/* CSS Reset */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    height: 100%;
    font-family: Montserrat, sans-serif;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    max-width: 1440px;
    margin: 0 auto;
    scroll-behavior: smooth;
}

img {
    max-width: 100%;
    display: block;
}

span {
    font-weight: bold;
}

a {
    text-decoration: none;
    color: inherit;
    -webkit-tap-highlight-color: transparent;
    /* enlève le carré bleu Android */
}

button {
    -webkit-tap-highlight-color: transparent;
    /* pareil pour les boutons */
}

/* Accessibilité clavier uniquement */
a:focus-visible,
button:focus-visible {
    outline: 2px solid #145A32;
    /* couleur de focus pour clavier */
    outline-offset: 2px;
}

h1 {
    font-size: 2em;
    font-family: "Playfair Display SC", serif;
}

h2 {
    font-size: 1.5em;
    font-family: "Playfair Display SC", serif;
    margin-bottom: 2.5em;
}








/* NAV BAR */

/* NAV BAR */

.nav-bar {
    max-width: 1440px;
    display: flex;
    justify-content: space-between;
    padding: 20px 35px;
    align-items: center;
    border-radius: 20px;
    box-shadow:
        inset 0 4px 12px rgba(255, 255, 255, 0.4),
        inset 2px -6px 5px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    position: fixed;
    width: 100%;
    z-index: 999;
}

.nav-bar__branding {
    display: flex;
    align-items: center;
}

.nav-bar__branding img {
    width: 50px;
    height: 40px;
    object-fit: contain;
}

.nav-bar__main-menu,
.nav-bar__sub-menu {
    display: flex;
    list-style: none;
}

.nav-bar__main-menu a,
.nav-bar__sub-menu a {
    text-decoration: none;
    color: inherit;
    padding: 10px 20px;
}

.nav-bar__main-menu a:hover,
.nav-bar__sub-menu a:hover {
    background-color: #E38833;
    box-shadow:
        inset 2px 4px 6px rgba(255, 255, 255, 0.4),
        inset -2px -4px 6px rgba(0, 0, 0, 0.2),
        0 8px 20px rgba(227, 136, 51, 0.15),
        0 2px 4px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    color: #fff;
    border-radius: 50px;
}

.nav-bar__main-menu a:active,
.nav-bar__sub-menu a:active {
    transform: scale(0.95);
    /* Slightly shrink the button */
    box-shadow:
        inset 2px 4px 8px rgba(0, 0, 0, 0.3),
        /* Deeper inset shadow for pressed effect */
        inset -2px -4px 8px rgba(255, 255, 255, 0.2);
    /* Reduced highlight */
    background-color: #d17a2e;
    /* Slightly darker shade for pressed state */
    backdrop-filter: blur(10px);
    /* Slightly reduced blur for realism */
    -webkit-backdrop-filter: blur(10px);
}

.nav-bar__main-menu--active {
    border: solid 2px #E38833;
    border-radius: 15px;
}

.nav-bar__main-menu--active:hover {
    border-color: transparent;
}


.nav-bar__sub-menu {
    display: none;
    flex-direction: column;
    padding: 10px;
    position: fixed;
    margin: 8px;
    right: 50px;
    border-radius: 20px;
    background: #ded2c8d4;
    box-shadow:
        inset 2px 4px 6px rgba(255, 255, 255, 0.4),
        inset -2px -4px 6px rgba(0, 0, 0, 0.2),
        0 8px 20px rgba(227, 136, 51, 0.15),
        0 2px 4px rgba(0, 0, 0, 0.2);

}

.nav-bar__sub-menu:hover {
    display: flex;

}

.nav-bar__sub-menu li {
    padding: 10px;
}

.nav-bar__main-menu li:hover .nav-bar__sub-menu {
    display: flex;
}


.hero-banner {
    position: relative;
    display: grid;
    grid-template-columns: repeat(24, 1fr);
    align-items: center;
    justify-items: center;
    height: 100vh;
    background-color: #DED2C8;
}

.hero-banner__image {
    grid-column: 1 / -1;
    grid-row: 1;
}

.hero-banner__image img {
    object-fit: contain;
    height: 100vh;
    width: 100%;
    padding-top: 10vh;
    display: block;
}


.hero-banner__title {
    grid-column: 1 / -1;
    grid-row: 1;
    z-index: 2;
    justify-self: center;
    align-self: start;
    margin-top: 11vh;
    text-align: center;
    background-color: #DED2C8;

}


.hero-banner__title h1 {

    color: #A45200;
}


.hero-banner__cards-container {
    width: 100%;
    height: 100vh;
    grid-column: 1 / 12;
    grid-row: 1;
    align-self: end;
    display: grid;
    grid-template-rows: repeat(24, 1fr);
    align-items: center;
    justify-items: center;

}

.hero-banner__card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0 35px;
    padding: 0 10px;
    border-radius: 0 20px 20px 0;
    width: 100%;
    height: 90px;

    background: rgba(255, 255, 255, 0.15);
    /* translucent glass base */
    border: 1px solid rgba(255, 255, 255, 0.3);

    /* inset shadows for curved edges */
    box-shadow:
        inset 0 6px 10px rgba(255, 255, 255, 0.6),
        /* light highlight on top */
        inset 0 -6px 10px rgba(0, 0, 0, 0.15);
    /* outer shadow for depth */

    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);

}

.hero-banner__first-card {
    text-align: center;
    grid-row-start: 8;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.8em;


}

.hero-banner__second-card {
    text-align: center;
    grid-row-start: 19;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.8em;
}

.hero-banner__card--small {
    font-size: 0.2em;
    font-style: italic;
    text-align: start;
    position: absolute;
    bottom: -135%;
    left: 25px;
}


/* Animations hero-banner */


@keyframes slideInLeft {
    from {
        opacity: 0.2;
        transform: translateX(-100%);
    }

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

.hero-banner__first-card,
.hero-banner__second-card {
    animation: slideInLeft 0.8s ease-out forwards;
}

/* general responsive  */

@media screen and (min-width: 768px) {
    .hero-banner__title {

        grid-column: 1 / 12;
        grid-row: 1;
        z-index: 2;
        justify-self: end;
        text-align: center;
        align-self: center;
        background-color: transparent;
    }

    .hero-banner__cards-container {
        height: auto;
        grid-column: 1 / -1;
        grid-template-rows: repeat(1, 1fr);
        grid-template-columns: repeat(24, 1fr);
    }

    .hero-banner__card {
        border-radius: 20px 20px 0 0;
        width: 300px;
        height: 200px;
    }

    .hero-banner__first-card {
        grid-column-start: 4;
        font-size: 32px;
        padding: 15px;
        grid-row-start: 1;
    }

    .hero-banner__second-card {
        grid-column-start: 20;
        font-size: 32px;
        padding: 15px;
        grid-row-start: 1;
    }

    .hero-banner__card--small {
        bottom: 10px;
        left: 0;
    }

    #burger-menu {
        display: none;
    }

    .nav-bar__main-menu {
        display: flex;
    }

    @keyframes slideInLeft {
        from {
            opacity: 0.2;
            transform: translateY(100%);
        }

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

}

/* tablet responsive  */

@media screen and (min-width: 768px) and (max-width: 1024px) {
    .hero-banner__title h1 {
        font-size: 2.3em;
    }

    .hero-banner__card {
        font-size: 1em;
    }
}

/* desktop responsive  */
@media screen and (min-width: 1025px) {
    .hero-banner__title h1 {
        font-size: 3.1em;
    }

    .hero-banner__card {
        font-size: 1.3em;
    }
}

/* burger menu acitvation  mobile menu  nav */

@media screen and (max-width: 767px) {
    body.menu-open .nav-bar {
        height: 90vh;
    }

    body.menu-open .nav-bar__main-menu {
        display: flex;
        position: absolute;
        top: 0;
        left: 0;
        flex-direction: column;
        width: 100%;
        height: 90vh;
        align-items: center;
        justify-content: center;
        z-index: 999;
        font-size: 1.5em;

    }

    body.menu-open .nav-bar__main-menu li {
        margin: 10px;
    }

    body.menu-open .nav-bar__branding {
        display: none;
    }

    #burger-menu {
        position: absolute;
        top: 30px;
        right: 35px;
        display: block;
        font-size: 24px;
        cursor: pointer;
        z-index: 999;
    }

    .nav-bar__main-menu {
        display: none;
    }

    .nav-bar__sub-menu {
        font-size: 0.8em;
        width: 97%;
        left: 0;
        top: 55px;
        background: #ded2c8f8;
    }

    .nav-bar__sub-menu a {
        display: block;
        padding: 8px 0;
        line-height: 1.2;
        text-align: center;
        margin: 0px;
    }
}


/* SECTION 1 */

.section1 {
    position: relative;
    background-color: #F4E5DB;
    border-radius: 0px 0px 200px 200px;
    padding: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: auto;
    padding-top: 100px;
    z-index: 990;
}

.section1__image img {
    transform: translateY(57%);
    /* width: 204px;
    height: 116px; */
    border-radius: 60px;
    align-items: center;
    box-shadow: 0 19px 38px rgba(0, 0, 0, 0.30), 0 15px 12px rgba(0, 0, 0, 0.22);
}



.section1__body {
    background-color: #EBCFBD;
    border-radius: 25px;
    padding: 150px 25px 50px 25px;

}

.section1__content {
    margin-top: 2.5em;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section1__flower {
    opacity: 0.5;
    scale: 0.9;
}

/* RESPONSIVE SECTION 1 */
/* general responsive  */
@media screen and (min-width: 768px) {

    .section1 {
        border-radius: 0 0 500px 500px;

    }


    .section1__content {
        flex-direction: row-reverse;
        justify-content: center;
        align-items: center;
    }

    .section1__body {
        width: 50%;
        margin-right: 20px;
        padding: 25px;
        background-color: transparent;
    }

    .section1__image img {
        transform: translateY(0%);
        border-radius: 180px;
        max-height: 30vh;
    }

    .section1 h2 {
        font-size: 2em;
    }
}


/* SECTION 2 */

.section2 {
    position: relative;
    background-color: #EBCFBD;
    border-radius: 0px 0px 200px 200px;
    padding-top: 500px;
    margin-top: -500px;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: auto;
    z-index: 9;
}



.section2__image img {
    transform: translateY(62%);
    /* width: 204px;
    height: 116px; */
    border-radius: 60px;
    align-items: center;
    box-shadow: 0 19px 38px rgba(0, 0, 0, 0.30), 0 15px 12px rgba(0, 0, 0, 0.22);
}

.section2__content {
    margin-top: 1.5em;
    display: flex;
    flex-direction: column;
    align-items: center;
}


.section2__body {
    background-color: #D9D9D9;
    border-radius: 25px;
    padding: 150px 25px 50px 25px;
    margin: 15px;
}

.section2__body a {
    font-style: italic;
    text-decoration: underline;
}

.section2 h3 {
    margin-top: 1.7em;
    margin-bottom: 1em;
    font-size: 1.1em;
    font-weight: 600;
}

.section2 h2 {
    font-size: 1.4em;
}

.section2__flower {
    opacity: 0.5;
    scale: 0.9;
}

.fa-arrow-right {
    font-size: 20px;
    vertical-align: middle;
    margin-left: 5px;
}


/* RESPONSIVE SECTION 2 */
/* RESPONSIVE GENERAL*/

@media screen and (min-width: 768px) {
    .section2__content {
        flex-direction: row;
        justify-content: center;
        align-items: center;
    }

    .section2__body {
        width: 50%;
        margin-right: 20px;
        padding: 25px;
        background-color: transparent;
    }

    .section2__image img {
        transform: translateY(0%);
        border-radius: 150px;
        max-height: 40vh;
    }

    .section2 {
        padding: 600px 25px 25px 25px;
        border-radius: 0 0 500px 500px;
    }
}


/* SECTION 3 */

.section3 {
    position: relative;
    background-color: #D9D9D9;
    border-radius: 0px 0px 200px 200px;
    padding-top: 500px;
    margin-top: -500px;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 8;
}

.section3__body {
    background-color: #F4E5DB;
    border-radius: 25px;
    padding: 50px 25px 50px 25px;
    margin: 150px 15px 15px 15px;

}



.section3__body h3 {
    margin-top: 1.7em;
    margin-bottom: 1em;
    font-size: 1.1em;
    font-weight: 600;

}

/* SECTION 3 RESPONSIVE */
/* RESPONSIVE GENERALE */
@media screen and (min-width: 768px) {
    .section3 {
        border-radius: 0 0 500px 500px;
    }


    .section3__body {
        width: 70%;
        background-color: transparent;
    }

    .section3__body h2 {
        text-align: center;
        margin-bottom: 4em;
    }
}




/* SECTION 4 */


.section4 {
    position: relative;
    background-color: #F4E5DB;
    padding: 600px 15px 15px 15px;
    margin-top: -500px;
    border-radius: 0px 0px 200px 200px;


}

.section4 h2 {
    text-align: center;
}

.section4__cards-container {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    column-gap: 40px;
    row-gap: 150px;

}


.section4__card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.section4__card--link {
    flex-grow: 1;
    display: flex;
    flex-direction: column;

}


.section4__card-head {
    position: relative;
    overflow: hidden;
    height: auto;
}


/* image normale */
.section4__card-image img {
    display: block;
    width: 100%;
    border-radius: 30px 30px 0 0;
    object-fit: cover;
    aspect-ratio: 16 / 9;
}

/* la wave est un vrai élément frère, positionné par-dessus */
.wave-overlay {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    aspect-ratio: 400 / 90;
    /* adapte au ratio réel de ta wave */
    background: url('./Images/Desktop/wavecards.svg') no-repeat bottom center;
    background-size: cover;
    z-index: 5;
    pointer-events: none;
}



.section4__card-body {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.section4__card-body h3 {
    text-align: center;
    margin-bottom: 30px;
    min-height: 3.6em;
    /* environ 2 lignes */
    line-height: 1.2em;
    display: flex;
    align-items: center;
    /* centre verticalement */
    justify-content: center;
}


.section4__card-body p {
    margin-bottom: 50px;
    padding-left: 10px;
}

.section4__card-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    border-top: solid 1px black;
}

.section4__card-time {
    text-align: center;
    border-right: 1px solid black;
    width: 50%;
    padding-top: 15px;

}

.section4 .button {
    background-color: #E38833;
    font-family: Montserrat, sans-serif;
    margin-top: 15px;
    border: none;
    padding: 15px 20px;
    border-radius: 35px;
    margin-left: 15px;
    cursor: pointer;
    color: #000;
    font-weight: 500;
    /* Identique au button */
    font-size: 16px;
    /* Ajouté pour correspondre à la taille de police par défaut du button */
    line-height: 1;
    /* Assure un espacement vertical identique */
    display: inline-block;
    /* Nécessaire pour que le span se comporte comme un bouton */
    text-align: center;
    box-sizing: border-box;
    /* Assure que le padding est calculé de la même manière */
}

.section4 .button:hover {
    background-color: #E38833;
    box-shadow:
        inset 2px 4px 6px rgba(255, 255, 255, 0.4),
        inset -2px -4px 6px rgba(0, 0, 0, 0.2),
        0 8px 20px rgba(227, 136, 51, 0.15),
        0 2px 4px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    color: #fff;
}

.section4 .button:active {
    transform: scale(0.95);
    /* Slightly shrink the button */
    box-shadow:
        inset 2px 4px 8px rgba(0, 0, 0, 0.3),
        /* Deeper inset shadow for pressed effect */
        inset -2px -4px 8px rgba(255, 255, 255, 0.2);
    /* Reduced highlight */
    background-color: #d17a2e;
    /* Slightly darker shade for pressed state */
    backdrop-filter: blur(10px);
    /* Slightly reduced blur for realism */
    -webkit-backdrop-filter: blur(10px);
}

/* SECTION 4 RESPONSIVE */
/* RESPONSIVE GENERALE */

@media screen and (min-width: 768px) {
    .section4 {
        border-radius: 0 0 500px 500px;

    }

    .section4__cards-container {
        grid-template-columns: repeat(3, 1fr);
        column-gap: 40px;
    }
}

/* SECTION 5 */

.section5 {
    background-color: #D9D9D9;
    padding-top: 600px;
    margin-top: -500px;
    display: grid;
    grid-template-columns: repeat(24, 1fr);
    grid-template-rows: auto auto auto auto;
}

.section5__content {
    grid-column: 1/-1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section5__body {
    background-color: #DFB396;
    border-radius: 25px;
    padding: 150px 25px 50px 25px;
    margin: 15px;
    z-index: 2;

}

.section5__image img {
    position: relative;
    transform: translateY(60%);
    object-fit: cover;
    object-position: center 70%;
    width: 204px;
    height: 116px;
    border-radius: 50px 19px 50px 0;
    align-items: center;
    box-shadow: 0 19px 38px rgba(0, 0, 0, 0.30), 0 15px 12px rgba(0, 0, 0, 0.22);
    z-index: 3;
}


.section5 .button {
    background-color: #145A32;
    font-family: Montserrat;
    margin-top: 15px;
    border: none;
    padding: 15px 20px;
    border-radius: 35px;
    margin-left: 15px;
    cursor: pointer;
    color: #fff;
    font-weight: 500;
}

.section5 .button:hover {
    background-color: #E38833;
    box-shadow:
        inset 2px 4px 6px rgba(255, 255, 255, 0.4),
        inset -2px -4px 6px rgba(0, 0, 0, 0.2),
        0 8px 20px rgba(227, 136, 51, 0.15),
        0 2px 4px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    color: #fff;

}

.section5 .button:active {
    transform: scale(0.95);
    /* Slightly shrink the button */
    box-shadow:
        inset 2px 4px 8px rgba(0, 0, 0, 0.3),
        /* Deeper inset shadow for pressed effect */
        inset -2px -4px 8px rgba(255, 255, 255, 0.2);
    /* Reduced highlight */
    background-color: #d17a2e;
    /* Slightly darker shade for pressed state */
    backdrop-filter: blur(10px);
    /* Slightly reduced blur for realism */
    -webkit-backdrop-filter: blur(10px);
}


.section5__flower-top {
    grid-row-start: 2;
    margin-bottom: -140px;
    align-self: self-start;
    grid-column-start: 1;
    grid-column-end: -1;
    opacity: 0.5;
    transform: rotate(180deg);
    z-index: 1;


}


.section5__flower-bottom {
    grid-row-start: -1;
    grid-column-start: 1;
    grid-column-end: -1;
    opacity: 0.5;
    margin-top: -20px;
    z-index: 1;

}


.section5 h2 {
    grid-column: 1/-1;
    text-align: center;
}


.section5__button {
    display: flex;
    justify-content: flex-end;
}

/* SECTION 5 RESPONSIVE */
/* RESPONSIVE GENERALe */


@media screen and (min-width: 768px) {

    .section5__content {
        grid-column: 3/23;
    }

    .section5__body {
        padding: 150px 50px 50px 50px;
    }

    .section5__flower-bottom {
        grid-column: 5/-1;
        transform: translateX(-40px);
    }

    .section5__flower-top {
        grid-column-start: 5;
        grid-column-end: -1;
        transform: rotate(180deg) translateX(40px);

    }
}

/* Footer */
footer {
    background-color: #2c3e50;
    /* Suppression de l'opacité pour un fond solide */
    color: #ecf0f1;
    padding: 30px 15px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 16px;
    text-align: center;
}

.footer__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 100%;
    margin-bottom: 20px;
}

.footer__menu,
.footer__contact {
    width: 100%;
    margin-bottom: 20px;
}

.footer__menu h3,
.footer__contact h3 {
    font-size: 18px;
    margin-bottom: 12px;
    border-bottom: 2px solid #f39c12;
    /* Orange plus clair pour meilleur contraste */
    padding-bottom: 5px;
}

.footer__menu ul {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    max-width: 300px;
}

.footer__menu ul li {
    margin-bottom: 10px;
}

.footer__menu ul li a {
    color: #ecf0f1;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer__menu ul li a:hover {
    color: #f39c12;
    /* Orange plus clair pour meilleur contraste */
    text-decoration: underline;
}

.footer__contact p {
    margin: 8px 0;
}

.footer__contact a {
    color: #f39c12;
    /* Orange plus clair pour meilleur contraste */
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer__contact a:hover {
    color: #ecf0f1;
    text-decoration: underline;
}

.footer__social i {
    margin-right: 8px;
}

.footer__copyright {
    font-size: 14px;
    color: #d1d5da;
    text-align: center;
    /* Gris clair pour meilleur contraste */
    border-top: 1px solid #666;
    /* Bordure plus visible */
    padding-top: 15px;

    margin: 0 auto;
    max-width: 100%;

}

.fa-map-location-dot {
    color: #fff;
}

/* Dès 768px et plus, on passe en desktop avec flex horizontal */
@media screen and (min-width: 768px) {
    footer {
        padding: 40px 20px 20px;
        text-align: left;
    }

    .footer__content {
        flex-direction: row;
        justify-content: space-between;
        max-width: 1200px;
        margin: 0 auto 30px;
        align-items: flex-start;
    }

    .footer__menu,
    .footer__contact {
        width: auto;
        margin: 10px;
        flex: 1 1 250px;
    }

    .footer__menu ul {
        max-width: none;
    }

    .footer__menu h4,
    .footer__contact h4 {
        text-align: left;
    }
}


/* --------------------------- */
/* FIN DE LA PAGE D'ACCEUIL */
/* -------------------------- */


/* PAGE SOINS  */
/* HEADER PAGE SOINS  */
.soins-hero-banner {
    position: relative;
    display: grid;
    grid-template-columns: repeat(24, 1fr);
    grid-template-rows: 50vh;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding-top: 8vh;
    /* Needed for wave overlay */
    overflow: hidden;
}

.soins-hero-banner picture {
    grid-column: 1 / -1;
    grid-row: 1;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.soins-hero-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 35% 55%;
}

.soins-hero-banner-title {
    position: relative;
    /* nécessaire pour le reflet */
    grid-column: 1 / -1;
    grid-row: 1;
    z-index: 2;
    justify-self: center;
    align-self: self-start;
    margin-top: 1.5vh;
    text-align: center;
    font-size: 2em;
    width: 100%;
    box-shadow:
        inset 0 4px 12px rgba(255, 255, 255, 0.4),
        inset 2px -6px 5px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.voyage-sonore-title {
    color: #fff;
}


/* Reflet lumineux doré */
.soins-hero-banner-title::before {
    content: '';
    position: absolute;
    top: 0;
    left: -50px;
    width: 50%;
    height: 100%;
    background: linear-gradient(120deg,
            transparent 0%,
            rgba(255, 255, 254, 0.312) 50%,
            transparent 100%);
    transform: skewX(100deg);
    animation: shine 5s infinite ease-in-out;
    z-index: 3;
    pointer-events: none;
}

@keyframes shine {
    0% {
        left: -100%;
    }

    100% {
        left: 150%;
    }
}

.soins-wave-overlay {
    position: absolute;
    bottom: -0.1vh;
    left: 0;
    width: 100%;
    aspect-ratio: 1000/ 200;
    background: url('./Images/Desktop/wavesoins.svg') no-repeat bottom center;
    background-size: cover;
    z-index: 1;
    pointer-events: none;
}

/* RESPONSIVE HEADER PAGE SOINS */

@media screen and (min-width: 768px) {
    .soins-hero-banner-title {
        font-size: 3em;
    }

    .soins-hero-banner {
        grid-template-rows: 70vh;
    }

    .lithotherapie-title {
        color: #fff;
    }
}


.soins-section1 {
    background-color: #F4E5DB;
}


.soins-section1 h2 {
    text-align: center;
    padding-top: 2.5em;
    margin: 0px 25px 0px 25px;
}

.soins-section1-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.soins-section1-body {
    z-index: 2;
    background-color: #E6B89C;
    padding: 25px;
    margin: 2.5em 25px 25px 25px;
    border-radius: 25px;
    box-shadow: 0 19px 38px rgba(0, 0, 0, 0.30), 0 15px 12px rgba(0, 0, 0, 0.22);

}

.soins-section1-image {
    margin: 35px;
}

.soins-section1-image img {
    max-height: 400px;
    border-radius: 25px;
}


.soins-wave-section1 {
    position: relative;
    aspect-ratio: 1000/ 200;
    background: url('./Images/Desktop/wavesoins_modified.svg') no-repeat bottom center;
    background-size: cover;
    z-index: 1;
    pointer-events: none;
}




@media screen and (min-width: 768px) {

    .soins-section1-content {
        flex-direction: row;
        margin-top: 3em;
    }

    .soins-section1-body {
        width: 50%;
        padding: 50px 25px 50px 25px;
        margin-right: 0;
    }
}


/* RESPONSIVE SECTION 1 PAGE SOINS */



@media screen and (min-width: 1024px) {
    .soins-section1 {
        justify-items: center;
    }

    .soins-section1-content {
        width: 75%;

    }

    .soins-section1-body {
        padding: 65px 25px 65px 25px;
    }
}

/* SOINS SECTION WARNING */
.soins-warning {
    background-color: #F4E5DB;
}

.soins-warning p {
    text-align: center;
    font-weight: bold;
    margin-top: 2.5em
}

.soins-warning h2 {
    padding-top: 3em;
    text-align: center;
    text-transform: uppercase;
    color: #FE1F1F;
}

.soins-warning h3 {
    margin-bottom: 1em;
    font-size: 1.1em;
    font-weight: 600;
}

.fa-circle-exclamation {
    color: #E38833;
    margin-right: 15px;
}

.soins-warning-content {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.soins-warning-card1 {
    padding: 25px;
    margin: 2.5em 25px 25px 25px;
    border-radius: 25px;
    box-shadow: 0 19px 38px rgba(0, 0, 0, 0.30), 0 15px 12px rgba(0, 0, 0, 0.22);
    background-color: #EBCFBD;
}

.soins-warning-card2 {
    padding: 25px;
    margin: 2.5em 25px 25px 25px;
    border-radius: 25px;
    box-shadow: 0 19px 38px rgba(0, 0, 0, 0.30), 0 15px 12px rgba(0, 0, 0, 0.22);
    background-color: #E6B89C;
}

@media screen and (min-width: 768px) {
    .soins-warning-content {
        display: flex;
        flex-direction: row;
        justify-content: center;
        gap: 2rem;
        /* espace entre body et galerie */
    }
}

/* SOINS SECTION 2 */

.soins-section2 {
    background-color: #D9D9D9;
}

.soins-section2 h2 {
    padding-top: 3em;
    text-align: center;
    text-transform: uppercase;
}

.soins-section2-content {
    margin-top: 2.5em;
}

.soins-section2-body {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background-color: #CC999E;
    border-radius: 20px;
    padding: 25px;
    margin: 1em 25px;
    box-shadow: 0 19px 38px rgba(0, 0, 0, 0.30),
        0 15px 12px rgba(0, 0, 0, 0.22);
}

.soins-section2-body li {
    margin-bottom: 10px;
}

.soins-section2-gallery {
    margin: 35px 25px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 250px);
    /* 2 lignes de 250px */
    gap: 16px;
}


.fengshui-gallery {
    display: flex;
    align-items: center;
    justify-content: center;
}

.soins-section2-gallery img {
    border-radius: 20px;
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* évite la déformation des images */
}

.soins-section2-text {
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 9;
}

.soins-section2-button-wrapper {
    display: flex;
    align-items: center;
    width: 100%;
    flex: 1;
    justify-content: flex-end;
}

.soins-section2-button-wrapper .button {
    background-color: #145A32;
    font-family: Montserrat;
    margin-top: 15px;
    border: none;
    padding: 15px 20px;
    border-radius: 35px;
    margin-left: 15px;
    cursor: pointer;
    color: #fff;
    font-weight: 500;
}

.soins-section2-button-wrapper .button:hover {
    background-color: #E38833;
    box-shadow:
        inset 2px 4px 6px rgba(255, 255, 255, 0.4),
        inset -2px -4px 6px rgba(0, 0, 0, 0.2),
        0 8px 20px rgba(227, 136, 51, 0.15),
        0 2px 4px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    color: #fff;
}

.soins-section2-button-wrapper .button:active {
    transform: scale(0.95);
    box-shadow:
        inset 2px 4px 8px rgba(0, 0, 0, 0.3),
        inset -2px -4px 8px rgba(255, 255, 255, 0.2);
    background-color: #d17a2e;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.soins-wave-section2 {
    position: relative;
    aspect-ratio: 1000/200;
    background: url('./Images/Desktop/wavesoins.svg') no-repeat bottom center;
    background-size: cover;
    z-index: 1;
    pointer-events: none;
}

/* SOINS SECTION 2 RESPONSIVE */

@media screen and (min-width: 768px) {
    .soins-section2-content {
        display: flex;
        flex-direction: row-reverse;
        justify-content: center;
        gap: 2rem;
        /* espace entre body et galerie */
    }

    .soins-section2-gallery {
        max-width: 500px;
        /* limite la largeur pour ne pas écraser le texte */
    }

    .soins-section2-body {
        display: flex;
        align-items: center;
    }
}



/* SOINS SECTION 3 */

.soins-section3 {
    background-color: #F4E5DB;
}

.warning-section3 {
    background-color: #D9D9D9;
}

.soins-section3 h2 {
    text-align: center;
    padding-top: 3em;
    margin: 0px 25px;
    text-transform: uppercase;
}

.soins-section3-content {
    margin-top: 2.5em;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    /* largeur max en mobile */
    max-width: 1200px;
    /* limite sur grands écrans */
    margin-left: auto;
    margin-right: auto;
}

.soins-section3-body {
    background-color: #EBCFBD;
    padding: 25px;
    margin: 2.5em 25px 25px 25px;
    border-radius: 25px;
    box-shadow: 0 19px 38px rgba(0, 0, 0, 0.30),
        0 15px 12px rgba(0, 0, 0, 0.22);
}

.soins-section3 h3 {
    margin-top: 1.7em;
    margin-bottom: 1em;
    font-size: 1.1em;
    font-weight: 600;
}

.soins-section3-gallery {
    margin: 35px 25px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.soins-section3-gallery img {
    border-radius: 20px;
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* évite la déformation des images */
}

.span2 {
    grid-column: 1 / -1;
}


/* SOINS SECTION 3 RESPONSIVE */

@media screen and (min-width: 768px) {
    .soins-section3-content {
        display: flex;
        flex-direction: row;
        /* mets "row" si tu veux inverser */
        justify-content: center;
        align-items: stretch;
        /* body et gallery = même hauteur */
        margin-top: 3em;
    }

    .soins-section3-body {
        flex: 1;
        padding: 50px 25px;
        margin: 0 25px 25px 25px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .soins-section3-gallery {
        flex: 1;
        margin: 0 25px 25px 25px;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
        grid-template-rows: 250px 250px;
        align-self: center;

    }
}

@media screen and (min-width: 1024px) {
    .soins-section3-content {
        width: 75%;
    }

    .soins-section3-body {
        padding: 65px 25px;
    }
}



/* SECTION 4 */

.soins-section4 {
    background-color: #D9D9D9;
    /* padding-top: 600px;
    margin-top: -500px; */
    display: grid;
    grid-template-columns: repeat(24, 1fr);
    grid-template-rows: auto auto auto auto;
}

.warning-section4 {
    background-color: #F4E5DB;
}

.soins-section4__content {
    grid-column: 1/-1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.soins-section4__body {
    background-color: #DFB396;
    border-radius: 25px;
    padding: 150px 25px 50px 25px;
    margin: 15px;
    z-index: 2;
}

.soins-section4-tarifs {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 2em;
    padding-top: 2em;

}

.soins-section4-tarifs::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50%;
    border-top: 1px solid #145A32;
}

.soins-section4-tarifs p {
    margin-bottom: 1em;
    margin-top: 1em;
}

.soins-section4-tarifs-list {
    margin-bottom: 1.9em;
}

.soins-section4__image img {
    position: relative;
    transform: translateY(60%);
    object-fit: cover;
    object-position: center 65%;
    width: 204px;
    height: 116px;
    border-radius: 50px 19px 50px 0;
    align-items: center;
    box-shadow: 0 19px 38px rgba(0, 0, 0, 0.30), 0 15px 12px rgba(0, 0, 0, 0.22);
    z-index: 3;
}


.soins-section4 .button {
    background-color: #145A32;
    font-family: Montserrat;
    margin-top: 15px;
    border: none;
    padding: 15px 20px;
    border-radius: 35px;
    margin-left: 15px;
    cursor: pointer;
    color: #fff;
    font-weight: 500;
}

.soins-section4 .button:hover {
    background-color: #E38833;
    box-shadow:
        inset 2px 4px 6px rgba(255, 255, 255, 0.4),
        inset -2px -4px 6px rgba(0, 0, 0, 0.2),
        0 8px 20px rgba(227, 136, 51, 0.15),
        0 2px 4px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    color: #fff;

}

.soins-section4 .button:active {
    transform: scale(0.95);
    /* Slightly shrink the button */
    box-shadow:
        inset 2px 4px 8px rgba(0, 0, 0, 0.3),
        /* Deeper inset shadow for pressed effect */
        inset -2px -4px 8px rgba(255, 255, 255, 0.2);
    /* Reduced highlight */
    background-color: #d17a2e;
    /* Slightly darker shade for pressed state */
    backdrop-filter: blur(10px);
    /* Slightly reduced blur for realism */
    -webkit-backdrop-filter: blur(10px);
}


.soins-section4__flower-top {
    grid-row-start: 2;
    margin-bottom: -140px;
    align-self: self-start;
    grid-column-start: 1;
    grid-column-end: -1;
    opacity: 0.5;
    transform: rotate(180deg);
    z-index: 1;


}


.soins-section4__flower-bottom {
    grid-row-start: -1;
    grid-column-start: 1;
    grid-column-end: -1;
    opacity: 0.5;
    margin-top: -20px;
    z-index: 1;

}


.soins-section4 h2 {
    padding-top: 3em;
    grid-column: 1/-1;
    text-align: center;
}


.soins-section4__button {
    display: flex;
    justify-content: flex-end;
}

/* SECTION 5 RESPONSIVE */
/* RESPONSIVE GENERALe */


@media screen and (min-width: 768px) {

    .soins-section4__content {
        grid-column: 3/23;
    }

    .soins-section4__body {
        padding: 150px 50px 50px 50px;
    }

    .soins-section4__flower-bottom {
        grid-column: 5/-1;
        transform: translateX(-40px);
    }

    .soins-section4__flower-top {
        grid-column-start: 5;
        grid-column-end: -1;
        transform: rotate(180deg) translateX(40px);

    }
}


/* PAGE CONTACT ET TARIFS  */
/* contact et tarifs header */
.contact-hero-banner {
    position: relative;
    display: grid;
    grid-template-rows: auto 1fr auto;
    min-height: 80vh;
    overflow: hidden;
}

.contact-hero-banner h1 {
    color: #fff;
}

.contact-hero-banner picture {
    grid-column: 1 / -1;
    grid-row: 1 / -1;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.contact-hero-banner picture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ===== Icônes ===== */
.contact-icon-container {
    grid-column: 1 / -1;
    grid-row: 3 / -1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
    padding: 10px;
    z-index: 2;
    position: relative;
}

.contact-icon-container i {
    font-size: 1.5em;
}

.contact-header-card {
    flex: 1;
    text-align: center;
    padding: 10px;
    cursor: pointer;
    color: #fff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* texte caché */
.contact-header-hidden {
    opacity: 0;
    transform: translateY(15px) scale(0.98);
    visibility: hidden;
    /* reste dans le flux mais invisible */
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1),
        transform 0.6s cubic-bezier(0.4, 0, 0.2, 1),
        visibility 0s linear 0.6s;
    /* cache seulement après anim */
    pointer-events: none;
}

/* hover */
.contact-header-card:hover {
    border-radius: 20px;
    box-shadow:
        inset 0 4px 12px rgba(255, 255, 255, 0.4),
        inset 2px -6px 5px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.contact-header-card:hover .contact-header-hidden {
    opacity: 1;
    transform: translateY(0) scale(1);
    visibility: visible;
    transition-delay: 0s;
    /* visible direct au hover */
    pointer-events: auto;
}

.contact-header-card:active {
    transform: scale(0.95);
    /* Slightly shrink the button */
    box-shadow:
        inset 2px 4px 8px rgba(0, 0, 0, 0.3),
        /* Deeper inset shadow for pressed effect */
        inset -2px -4px 8px rgba(255, 255, 255, 0.2);
    /* Reduced highlight */
    /* Slightly darker shade for pressed state */
    backdrop-filter: blur(10px);
    /* Slightly reduced blur for realism */
    -webkit-backdrop-filter: blur(10px);
    color: #d17a2e;
}

/* contact header responsive */

@media screen and (min-width: 768px) {
    .contact-icon-container {
        flex-direction: row;
    }

}


/* div flower */
.contact-flowers-top {
    background-color: #F4E5DB;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    width: 100%;
    gap: 0;
    grid-column: 1/ -1;
}

.contact-flowers-top img {
    width: 100%;
    height: 87%;
    object-fit: cover;
    opacity: 0.4;
}


.flower-top-left {
    grid-column: 1/2;
}

.flower-top-middle {
    grid-column: 2/3;
}

.flower-top-right {
    grid-column: 3/ -1;
}


/* contact section offers */

.contact-section-offers {
    background-color: #F4E5DB;
    padding: 15px 15px 100px 15px;
    margin-top: 0px;
    border-radius: 0px;

}

.test {
    display: flex;
    flex-direction: column;
}

.contact__card-footer {
    justify-content: flex-start;
    padding: 15px;
}

.contact__card-body {
    padding: 15px;
}


/* CONTACT SECTION RDV */

.contact_rdv {
    background-color: #F4E5DB;
    padding-top: 3.5em;
    padding-bottom: 3.5em;
}

.calendly-inline-widget {
    z-index: 2;
}

.contact_rdv h2 {
    text-align: center;
}

.contact-flowers-rdv {
    margin-bottom: -3px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto auto;
    opacity: 0.4;
}

.flower-rdv-left {
    grid-column: 2;
    grid-row: 2;
    /* première ligne */
    width: 57%;
    transform: rotate(180deg)translateX(8.7%);
}

.flower-rdv-middle {
    grid-column: 1;
    grid-row: 2;
    width: 57%;
    transform: rotate(180deg) translateX(-70.7%);
}

@media screen and (min-width: 650px) {
    .contact-flowers-rdv {
        margin-bottom: -70px;
    }

}

@media screen and (min-width: 715px) {
    .contact-flowers-rdv {
        margin-bottom: -77px;
    }

    .flower-rdv-left {
        width: 60%;
        transform: rotate(180deg)translateX(3.3%);
    }

    .flower-rdv-middle {
        width: 60%;
        transform: rotate(180deg) translateX(-67.2%);
    }

}


.contact-flowers-bottom-rdv {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto auto;
    opacity: 0.4;

}

.flower-rdv-bottom-left {
    grid-column: 1;
    grid-row: 2;
    /* première ligne */
    width: 57%;
    transform: translateX(77.5%);
}

.flower-rdv-bottom-middle {
    grid-column: 2;
    grid-row: 2;
    width: 57%;
    transform: translateX(-2%);

}

@media screen and (min-width: 650px) {
    .contact-flowers-bottom-rdv {
        margin-top: -35px;
        z-index: 1;
    }

}

@media screen and (min-width: 715px) {
    .contact-flowers-bottom-rdv {
        margin-top: -50px;
    }

}


/* contact section contact  */

.contact-paiement {
    margin-top: 2em;
    margin-bottom: 2em;
    position: relative;
    padding: 2em 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-paiement::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50%;
    border-top: 1px solid #145A32;
}

.contact-paiement::after {
    content: '';
    position: absolute;
    bottom: 0;
    /* place en bas de la div */
    left: 50%;
    /* commence au centre */
    transform: translateX(-50%);
    /* centre parfaitement l'élément */
    width: 50%;
    /* moitié de la largeur de la div */
    border-bottom: 1px solid #145A32;
    /* border en bas */
}


.contact-section-contact {
    background-color: #F4E5DB;

}

.contact-section-contact h2 {
    text-align: center;
    padding-top: 3em;
    margin: 0px 25px;
    text-transform: uppercase;
}

.contact-paragraphe {
    padding: 25px;
}

.contact-section-contact-content {
    margin-top: 2.5em;
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 100px;
}

.contact-section-contact-body {
    background-color: #E6B89C;
    padding: 25px;
    margin: 2.5em 25px 25px 25px;
    border-radius: 25px;
    box-shadow: 0 19px 38px rgba(0, 0, 0, 0.30),
        0 15px 12px rgba(0, 0, 0, 0.22);
}

.contact-section-contact h3 {
    margin-top: 1.7em;
    margin-bottom: 1em;
    font-size: 1.1em;
    font-weight: 600;
    text-align: center;
}

.contact-section-contact-gallery {
    margin: 35px 25px;
}

.contact-section-contact-gallery img {
    border-radius: 20px;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-section-contact-body-email {
    padding-top: 3em;
    display: flex;
    justify-content: center;
}

.contact-section-contact-body .button {
    width: 100%;
    background-color: #145A32;
    font-family: Montserrat, sans-serif;
    padding: 15px 20px;
    border-radius: 35px;
    cursor: pointer;
    color: #fff;
    font-weight: 500;
    font-size: 16px;
    text-align: center;
    box-sizing: border-box;
}


.contact-section-contact-body .button:hover {
    background-color: #145A32;
    box-shadow:
        inset 2px 4px 6px rgba(255, 255, 255, 0.4),
        inset -2px -4px 6px rgba(0, 0, 0, 0.2),
        0 8px 20px rgba(227, 136, 51, 0.15),
        0 2px 4px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    color: #fff;
}

.contact-section-contact-body .button:active {
    transform: scale(0.95);
    /* Slightly shrink the button */
    box-shadow:
        inset 2px 4px 8px rgba(0, 0, 0, 0.3),
        /* Deeper inset shadow for pressed effect */
        inset -2px -4px 8px rgba(255, 255, 255, 0.2);
    /* Reduced highlight */
    background-color: #d17a2e;
    /* Slightly darker shade for pressed state */
    backdrop-filter: blur(10px);
    /* Slightly reduced blur for realism */
    -webkit-backdrop-filter: blur(10px);
}

@media screen and (min-width: 650px) {
    .footer-flower {
        transform: translateY(-65px);
    }
}


@media screen and (min-width: 768px) {
    .contact-section-contact-content {
        flex-direction: row;
    }

    .contact-section-contact-gallery {
        width: 100%;
        height: 100%;
    }

    .contact-section-contact-body {
        width: 100%;
    }

    .contact-section-contact-gallery img {
        max-height: 500px;
        /* plus grand sur grand écran */
    }

}


@media (max-width: 767.98px) {

    /* Section 1 : image descend du haut */
    .soins-section1-image {
        display: block;
        opacity: 0;
        transform: translateY(-80%);
        transition: transform 1s ease-in-out, opacity 1s ease-in-out;
        will-change: transform, opacity;
    }

    .soins-section1-image.in-view {
        opacity: 1;
        transform: translateY(0);
    }

    /* Sections 2 et 3 : images zoom-in */
    .soins-section2-gallery picture,
    .soins-section3-gallery picture {
        display: block;
        opacity: 0;
        transform: scale(0.75);
        transition: transform 0.6s ease-out, opacity 0.6s ease-out;
        will-change: transform, opacity;
    }

    .soins-section2-gallery picture.in-view,
    .soins-section3-gallery picture.in-view {
        opacity: 1;
        transform: scale(1);
    }
}



/* Animation seulement pour écrans <= 768px */
@media (max-width: 768px) {
    .page-slide-in {
        animation: slideInFromRight 0.6s ease-in-out;
    }
}

@keyframes slideInFromRight {
    0% {
        transform: translateX(100%);
        opacity: 0;
    }

    100% {
        transform: translateX(0);
        opacity: 1;
    }
}


/* PADE ABOUT  */
/* PAGE ABOUT HEADER */
/* --- HERO BANNER ABOUT --- */
.about-hero-banner {
    display: grid;
    grid-template-rows: 1fr;
    grid-template-columns: 1fr;
    width: 100%;
    height: 75vh;
    overflow: hidden;
}

.about-hero-banner>* {
    grid-row: 1 / -1;
    grid-column: 1 / -1;
}

.about-title {
    color: #fff;
    padding-top: 8vh;
}

.about-hero-back img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 30%;
    z-index: 0;
}

.about-hero-selfie {
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    transform: translateY(20%);
}

.about-hero-selfie img {
    width: 35vw;
    max-width: 200px;
    max-height: 200px;
    border-radius: 20px;
}

/* --- Desktop version --- */
@media (min-width: 768px) {
    .about-hero-banner {
        height: 80vh;
        padding-top: 12vh;
    }

    .about-hero-back img {
        object-position: center top;
    }

    .about-hero-selfie {
        transform: translateY(0%);
    }

}


/* About section1 */
.about-section1 {
    background-color: #D9D9D9;
}

.about-section1 h2 {
    text-align: center;
    padding-top: 2.5em;
    margin: 0px 25px 2.5em 25px;
}

.about-section1-content-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.about-section1-content-card {
    background-color: #E6B89C;
    padding: 25px;
    margin: 0 25px -25px 25px;
    border-radius: 25px;
    box-shadow: 0 19px 38px rgba(0, 0, 0, 0.30), 0 15px 12px rgba(0, 0, 0, 0.22);

}

.about-section1-content-card2 {
    background-color: #F1D6C6;
    padding: 25px;
    margin: 15px 25px -10px 25px;
    border-radius: 25px;
    box-shadow: 0 19px 38px rgba(0, 0, 0, 0.30), 0 15px 12px rgba(0, 0, 0, 0.22);

}

.about-section1-photo-left {
    display: flex;
    width: 100%;
    margin: 0 25px -35px 25px;
    padding-left: 25px;

}

.about-section1-photo-left img {
    margin-top: -10px;
    margin-bottom: 15px;
    border-radius: 32% 68% 76% 24% / 20% 73% 27% 80%;
    width: 200px;
    transform: rotate(-10deg);
}

.about-section1-photo-right {
    display: flex;
    justify-content: flex-end;
    width: 100%;
    margin: 0 25px -35px 25px;
    padding-right: 25px;
}

.about-section1-photo-right img {
    border-radius: 32% 68% 76% 24% / 20% 34% 66% 80%;
    width: 200px;
}

.zindex9 {
    z-index: 9;
}

.zindex8 {
    z-index: 8;
}

.zindex7 {
    z-index: 7;
}

.zindex6 {
    z-index: 6;
}

.zindex5 {
    z-index: 5;
}

.zindex4 {
    z-index: 4;
}

.zindex3 {
    z-index: 3;
}

.zindex2 {
    z-index: 2;
}

.zindex1 {
    z-index: 1;
}

.zindex2 img {
    border-radius: 48% 52% 13% 87% / 52% 63% 37% 48%;
    margin-top: -60px;
    margin-bottom: 0;

}

@media (min-width: 768px) {
    .about-section1-content-container {
        max-width: 40vw;
        margin: 0 auto;
    }
}


/* style page mention legal */
.legal h1 {
    margin-top: 8vh;
}

.legal h3 {
    margin-top: 1.7em;
    margin-bottom: 1em;
    font-size: 1.1em;
    font-weight: 600;
}

.legal {
    padding: 25px;
    background-color: #FAFAFA;
    color: #000;
}

/* ====================== TABLEAUX - STYLE PROPRE & CHALEUREUX ====================== */
table {
    width: 100%;
    max-width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
    font-size: 15px;
    background-color: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    overflow: hidden;
    /* Pour que les coins arrondis s'appliquent correctement */
}

thead th {
    background-color: #EBCFBD;
    /* Beige-rosé chaleureux comme votre bandeau cookie */
    color: #000000;
    text-align: left;
    font-weight: 600;
    padding: 16px 20px;
    font-size: 16px;
}

tbody td {
    padding: 14px 20px;
    border-top: 1px solid #f0e0d8;
    /* Ligne subtile dans les tons chauds */
    vertical-align: top;
}

tbody tr:nth-child(even) {
    background-color: #f8f2ef;
    /* Alternance très légère pour lisibilité */
}

tbody tr:hover {
    background-color: #f5e4dc;
    /* Hover doux dans les tons de votre identité */
    transition: background-color 0.3s ease;
}

/* Responsive : empiler les colonnes sur petits écrans */
@media (max-width: 680px) {

    table,
    thead,
    tbody,
    th,
    td,
    tr {
        display: block;
    }

    thead tr {
        position: absolute;
        top: -9999px;
        left: -9999px;
    }

    tr {
        border: 1px solid #e0c7b8;
        border-radius: 10px;
        margin-bottom: 20px;
        padding: 10px;
        background-color: #ffffff;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    }

    td {
        border: none;
        position: relative;
        padding-left: 50%;
        text-align: right;
    }

    td:before {
        content: attr(data-label);
        position: absolute;
        left: 15px;
        width: 45%;
        padding-right: 10px;
        font-weight: 600;
        text-align: left;
        color: #145A32;
        /* Vert forêt pour les libellés */
    }
}

/* Ajoutez cet attribut data-label dans votre HTML pour le mode mobile */


/* Modal Cookie - Version finale ultra-douce, texte à gauche, boutons centrés */
.cookie-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    align-items: flex-end;
    /* Position en bas */
    justify-content: center;
    padding-bottom: 30px;
    /* Distance du bas de l'écran */
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
    pointer-events: none;
}

.cookie-modal.show {
    display: flex;
    opacity: 1;
    pointer-events: auto;
}

.cookie-modal-content {
    background: #EBCFBD;
    /* Beige-rosé chaleureux */
    padding: 30px 40px;
    border-radius: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    max-width: 720px;
    width: 90%;
    color: #000;
    animation: slideUp 1.5s ease-in-out;
    pointer-events: auto;
    /* La modale elle-même reste cliquable */
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }

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

/* Texte principal et lien alignés à gauche (plus élégant) */
.cookie-modal-content p {
    margin: 0 0 15px;
    text-align: left;
}

.cookie-link a {
    text-decoration: underline;
}

/* Boutons centrés horizontalement */
.cookie-buttons-centered {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.cookie-buttons-centered button {
    padding: 12px 24px;
    border-radius: 30px;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.6s ease;
    border: none;
}

/* Bouton Accepter - Vert forêt (positif, incitatif) */
.btn-accept {
    background: #145A32;
    color: #fff;
}

.btn-accept:hover {
    background: #0e4424;
    transform: translateY(-2px);
}

.btn-accept:active {
    transform: scale(0.95);
    box-shadow: inset 2px 4px 8px rgba(0, 0, 0, 0.3), inset -2px -4px 8px rgba(255, 255, 255, 0.2);
    background-color: #0e4424;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

/* Bouton Refuser - Orange terracotta (chaleureux mais moins "go") */
.btn-reject {
    background: #d17a2e;
    color: white;
}

.btn-reject:hover {
    background: #c56a1e;
    transform: translateY(-2px);
}

.btn-reject:active {
    transform: scale(0.95);
    box-shadow: inset 2px 4px 8px rgba(0, 0, 0, 0.3), inset -2px -4px 8px rgba(255, 255, 255, 0.2);
    background-color: #c56a1e;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

/* Responsive mobile */
@media (max-width: 600px) {
    .cookie-modal-content {
        padding: 25px;
        margin: 0 20px;
    }

    .cookie-buttons-centered {
        flex-direction: column;
        align-items: center;
    }

    .cookie-buttons-centered button {
        width: 80%;
        max-width: 300px;
    }
}