@import url('https://fonts.cdnfonts.com/css/kiona');
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap');

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'DM Sans', Arial, sans-serif;
    background: #fff;
}


/* * {
    outline: 1px solid orange;
} */

/* Tokens */

:root {
    /* Colors */
    --white-color-primary: #fff;
    --light-color-primary: #f9edd4;
    --light-color-secondary: #ffd074;

}

/* Header */

.header_container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

header {
    width: 100%;
    background: #2d2d2d;
    color: whitesmoke;
    padding: 0.5em 1em;
    position: fixed;
    z-index: 10;
    box-sizing: border-box;
}

.header_aside {
    flex: 1;
    display: flex;
    align-items: center;
    position: relative;
}

.header_center {
    flex: 1;
    display: flex;
    justify-content: center;
}

.header_aside-left {
    justify-content: flex-start;
    gap: 1em;
}

.header_aside-right {
    justify-content: flex-end;
}

.header_burger-btn {
    cursor: pointer;
    padding: 0.5em;
    z-index: 20;
}

/* Logo */

.header_hand_logo {
    width: 60%;
}

/* Hamburger Menu */

.burger-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #222;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    min-width: 180px;
    display: none;
    flex-direction: column;
    animation: fadeIn 0.3s;
}

.burger-menu.open {
    display: flex;
}

.burger-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.burger-menu li {
    border-bottom: 1px solid #333;
}

.burger-menu li:last-child {
    border-bottom: none;
}

.burger-menu a {
    display: block;
    color: var(--light-color-primary);
    text-decoration: none;
    padding: 1em;
    transition: background 0.2s;
}

.burger-menu a:hover {
    background: #444;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

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

/* Contact CTA */

.contact-btn {
    background: transparent;
    color: #FAF8F3;
    border-radius: 4px;
    padding: 0.5em 1em;
    margin-left: 0.5em;
    font-family: "DM Sans";
    font-weight: 200;
    text-transform: uppercase;
    text-decoration: none;
    transition: background 0.2s;
    cursor: pointer;
}

.contact-btn:hover {
    background: #E8D5A3;
    color: black;
    font-weight: 300;
}

/* Hero */

.hero-container {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 18px;
    height: 100vh;
    background-color: #2c2822;
    text-align: center;
    padding: 25px;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-container>*:not(.hero-video) {
    position: relative;
    z-index: 1;
}

.logo_typo {
    width: 15rem;
}

.hero-container small {
    text-transform: uppercase;
    color: var(--light-color-primary);
    text-align: center;
    font-family: 'DM Sans';
    font-size: 12px;
    font-weight: 200;
}


.hero-p1 {
    width: 85%;
    color: var(--white-color-primary);
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    text-align: center;
}

.hero-p1-span {
    color: #E8D5A3;
}

.hero-p2 {
    color: #FAF8F3;
    text-align: left;
    font-family: 'DM Sans';
    font-size: 20px;
    font-weight: 100;
}

.hero-p1,
.hero-p2 {
    margin: 0;
}

.cta {
    flex: 1;
    width: auto;
    text-align: center;
    padding: 26px 18px;
    font-family: "DM Sans";
    font-size: 16px;
    text-transform: uppercase;
    border: none;
    background-color: #2C2822;
    color: #FAF8F3;
    text-decoration: none;
}

.cta1 {
    width: 273px;
    text-align: center;
    padding: 24px;
    font-family: "DM Sans";
    font-size: 16px;
    text-transform: uppercase;
    border-radius: 4px;
    border: none;
    background-color: #2C2822;
    color: #FAF8F3;
    margin-top: 50px;
}

.cta2 {
    width: 196px;
    text-align: center;
    padding: 24px;
    font-family: "DM Sans";
    font-size: 16px;
    text-transform: uppercase;
    border-radius: 4px;
    border: 1px solid;
    background-color: transparent;
    color: #FAF8F3;
}

.cta_bottom {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

.cta3 {
    background-color: #C9A84C;
    color: #2C2822;
    font-weight: 600;
}

.cta4 {
    color: #FAF8F3;
}

.cta5 {
    color: #8A7A6A;
    font-weight: 600;
}


/* Philosophy */

.philo_container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #FAF8F3;
    padding: 24px;
    text-align: center;
    height: 70vh;
}

.philo_container small,
.philo_container p {
    font-family: 'DM Sans';
    font-size: 1rem;
}

.philo_container h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 300;
}

.philo_h2-span {
    color: #E8D5A3;
}

.philo_container small {
    text-transform: uppercase;
    color: #C9A84C;
}

.philo_container p {
    width: 80%;
    font-size: 1.2rem;
    font-weight: 300;
    color: #8A7A6A;
    line-height: 2.5rem;
}

.star_icon {
    margin-top: 25px;
}

/* Nos Soins */

/* Flexbox layout */

.soins_container {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    background-color: #4A241D;
    color: white;
}

.soins {
    background-color: #4A241D;
}

.soins_header small {
    display: block;
    text-transform: uppercase;
    font-size: 1rem;
    margin-top: 25px;
    margin-left: 50px;
    color: #FFD074;
}

.soins_header h2 {
    width: 280px;
    font-family: 'Playfair Display', serif;
    font-size: 52px;
    font-weight: 300;
    line-height: 50px;
    margin-top: 12px;
    padding-left: 50px;
}

.soins_header span {
    color: #FFD074;
}

.soins_img {
    width: 100%;
    height: 12.5rem;
    object-fit: cover;
}

.soins h3 {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    font-family: 'Playfair Display', serif;
    font-weight: 100;
    font-size: 1.4rem;
    color: whitesmoke;
}

.soins_header.cta.cta6 {
    margin: 75px auto;
}

.flex {
    padding: 0 2rem 2rem;
}

.soins p {
    font-family: 'DM Sans';
    font-weight: 300;
    color: #a5a39f;
}

.soins a {
    display: block;
    text-transform: uppercase;
    text-decoration: none;
    font-size: 0.8rem;
    color: whitesmoke;
}

.soins a::after {
    content: ' →';
}

.cta6 {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 310px;
    background: transparent;
    border: 1px solid rgb(158, 158, 158);
    border-radius: 4px;
    margin: 40px auto;
    text-align: center;
}

/* Immersion */

.immersion_container {
    background-color: #fff;
}

.immersion_header {
    background-color: #fff;
    padding: 25px 0 16px 50px;
}

.immersion_header small {
    display: block;
    text-transform: uppercase;
    font-size: 1rem;
    color: #FFD074;
}

.immersion_header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 52px;
    font-weight: 300;
    line-height: 55px;
    margin-top: 12px;
}

.immersion_header span {
    color: #FFD074;
}

.immersion_box {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 24px;
    background-color: #fff;
}

.immersion_num {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    border-radius: 8px;
    font-size: 5rem;
    font-family: 'Playfair Display', serif;
    color: #FFD074;
    font-weight: 400;
}

.immersion_texte {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 75%;
}

hr {
    max-width: 800px;
    margin-left: 50px;
    border: none;
    border-top: 1px solid #C9A84C;
}

.immersion_texte h3 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 8px;
    margin-top: 30px;
}

.immersion_texte p {
    color: #8A7A6A;
    font-size: 1.1rem;
    line-height: 35px;
    margin: 0;
    margin-bottom: 20px;
}

/* Formation / Savoir-faire */

.formation-hero {
    height: 520px;
    background-image: url("asset/formation\ 1.png");
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.hero-overlay {
    background: rgba(0, 0, 0, 0.35);
    padding: 60px;
    border-radius: 10px;
}

.hero-tag {
    letter-spacing: 2px;
    font-size: 13px;
    margin-bottom: 15px;
    color: #e0b96a;
}

.hero-title {
    font-size: 48px;
    font-weight: 400;
    margin-bottom: 25px;
}

.hero-title span {
    color: #e0b96a;
    font-style: italic;
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-bottom: 30px;
}

.badge {
    border: 1px solid rgba(255, 255, 255, 0.7);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
}

.hero-button {
    display: inline-block;
    padding: 12px 28px;
    border: 1px solid white;
    border-radius: 8px;
    text-decoration: none;
    color: white;
    transition: 0.3s;
}

/* Horaires */

.horaires {
    width: 100%;
    flex: 1;
    background-color: #4A241D;
    color: whitesmoke;
}

.horaires small {
    display: block;
    text-transform: uppercase;
    font-size: 1rem;
    margin-left: 25px;
    color: #FFD074;
}

.horaires h2 {
    text-align: center;
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
}

.horaire-item {
    display: flex;
    justify-content: space-between;
    padding: 25px;
    border-bottom: 1px solid #ddd;
}

.horaire-item:last-child {
    border-bottom: none;
}

.jour {
    font-weight: 600;
}

.heure {
    color: whitesmoke;
}

.dimanche {
    color: lightgray;
}

/* Nous trouver */

.nous_trouver {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #4A241D;
}

.nous_header {
    background-color: #4a231b;
    width: 100%;
    text-align: left;
}

.nous_header small {
    display: block;
    text-transform: uppercase;
    font-size: 1rem;
    color: #FFD074;
}

.nous_header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 52px;
    font-weight: 300;
    line-height: 55px;
    margin-top: 12px;
}

.nous_header span {
    color: #FFD074;
}

.btn {
    display: block;
    width: 200px;
    background: transparent;
    border: 1px solid whitesmoke;
    margin-top: 25px;
    margin-left: 0;
}

/* Location */

.localisation {
    padding: 60px 20px;
    color: #f5f3f0;
    background-color: #4A241D;
}

.container-localisation {
    width: 100%;
    display: flex;
    gap: 50px;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    flex-wrap: wrap;
}

.info-localisation {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    min-width: 300px;
    font-family: 'DM Sans', sans-serif;
}

.adresse {
    margin-top: 20px;
    font-weight: 400;
}

.btn-itineraire {
    text-align: center;
    width: 200px;
    position: relative;
    display: block;
    padding: 14px 30px;
    margin: 20px auto 0;
    color: white;
    border-radius: 30px;
    background: #60561d;
    font-weight: 600;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.btn-itineraire:hover {
    transform: translateY(-3px);
}

/* Footer */

footer {
    height: 200px;
    background: #4A241D;
    color: #8A7A6A;
    padding: 1em 0 1em 0;
    text-align: center;
    margin-top: 2em;

}

.icon svg {
    width: 32px;
    height: 32px;
    display: block;
    margin-right: 5px;
}

.social-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    margin-bottom: 1em;
    margin-top: 3em;
}

.social-icons-layout {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10rem;
}

.social-icons img {
    width: 32px;
    height: 32px;
    transition: transform 0.2s, box-shadow 0.2s;
    margin-right: 0;
}

.social-left img,
.social-right img {
    width: 32px;
    height: 32px;
}

.social-icons a:hover img {
    transform: scale(1.15);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}


footer p {
    font-size: 1vh;
    color: #8A7A6A;
    margin-top: 0.5em;
}

/* Carousel */


/* Reviews */

.reviews h2 {
    text-align: center;
    font-family: 'Playfair Display', serif;
    background-color: #fff;
}

/* Reviews Stars */

.stars {
    color: #FFD074;
    font-size: 20px;
    font-family: 'DM Sans';
    margin: 0;
}

.avis {
    font-family: 'DM sans', sans-serif;
    font-size: 0.8rem;
    font-weight: 100;
}

sup {
    margin-left: 5px;
}

.carousel {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    background-color: #fff;
}

.carousel-container {
    height: 50vh;
    width: 700px;
    overflow: hidden;
}

.carousel-track {
    display: flex;
    align-items: center;
    height: 100%;
    transition: transform 0.5s ease;
}

.review-card {
    flex: 0 0 100%;
    box-sizing: border-box;
    background: white;
    padding: 30px;
    margin: 0 auto;
}

.review-card p {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.3rem;
    margin-bottom: 15px;
    width: 360px;
    margin: 25px auto;
}

.review-card span {
    display: block;
    width: 360px;
    margin: 0 auto;
    color: #777;
    font-size: 14px;
    font-family: 'Playfair Display', serif;
}

button {
    /* background: #c8a96a; */
    border: none;
    color: white;
    font-size: 20px;
    padding: 10px 15px;
    cursor: pointer;
    border-radius: 6px;
}

button:hover {
    background: #b39357;
}

/* Contact Section */
.contact-section {
    background: #8A7A6A;
    padding: 2.5em 1em 2em 1em;
    max-width: 600px;
    margin: 0 auto;
}

.contact-section small {
    color: #FFD074;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'DM Sans', sans-serif;
    font-size: 1em;
}

.contact-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 400;
    margin: 0 0 0.2em 0;
    color: #222;
}

.contact-section h2 span {
    color: #FFD074;
    font-style: italic;
    font-family: 'Playfair Display', serif;
    font-weight: 400;
}

.contact-form {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
}

.contact-form input,
.contact-form textarea {
    width: 90%;
    max-width: 480px;
    padding: 1rem;
    font-size: 1.1rem;
    border-radius: 5px;
    border: none;
    margin-bottom: 0;
    font-family: 'DM Sans', sans-serif;
    background: #fff;
    color: #222;
}

.contact-form textarea {
    min-height: 120px;
    resize: vertical;
}

.contact-form button {
    width: 100%;
    background: #4A241D;
    color: #fff;
    padding: 1rem 0;
    font-size: 1.1rem;
    border: none;
    border-radius: 5px;
    margin-top: 1rem;
    letter-spacing: 1px;
    font-family: 'DM Sans', sans-serif;
    font-weight: 400;
    cursor: pointer;
    transition: background 0.2s;
}

.contact-form button:hover {
    background: #FFD074;
    color: #4A241D;
}

/* FAQ */

.faq-section {
    max-width: 900px;
    margin: 3em auto;
}

.faq-section small {
    color: #FFD074;
    letter-spacing: 1px;
}

.faq-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 400;
    margin: 0;
}

.faq-section h2 span {
    color: #FFD074;
    font-style: italic;
    font-family: 'Playfair Display', serif;
    font-weight: 400;
}

.faq-list {
    margin-top: 2em;
    background: #fff;
    border-radius: 10px;
    border: 1px solid #b3a9a3;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
    overflow: hidden;
}

.faq-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.2em 2em;
    border-bottom: 1px solid #b3a9a3;
    font-size: 1.2em;
    font-family: 'Playfair Display', serif;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-item span:last-child {
    color: #FFD074;
    font-size: 2em;
    font-weight: 300;
}

/* Responsive */

@media (min-width: 768px) {

    /* Immersion */

    .immersion_container {
        background-color: #fff;
    }

    .immersion_header {
        margin-left: 100px;
    }

    .immersion_box {
        max-width: 800px;
        margin-left: 100px;
        text-align: left;
    }

    /* Nous trouver */

    .nous_trouver {
        flex-direction: row;
        align-items: center;
    }

    .container-localisation {
        flex: 1;
    }

    .horaires {
        width: 35%;
        flex: none;
        font-weight: 200;
    }

    .horaire-item {
        flex: none;
    }

    /* Header */

    .header_hand_logo {
        width: 25%;
    }

    /* Hero */
    .hero-container {
        justify-content: center;
        align-items: center;
        padding-top: 80px;
    }

    /* Soins */

    /* Soins */

    .soins {
        display: flex;
        width: 100%;
        font-family: 'DM Sans';
        font-weight: 300;
        color: #a5a39f;
        background-color: whitesmoke;
    }

    .soins h3 {
        color: black;
        padding: 20px;
        font-size: 1.6rem;
        margin-left: 40px;
    }

    .soins p {
        max-width: 80%;
        font-size: 1.2rem;
        margin-left: 40px;
        padding: 0 20px;
        color: #8A7A6A;
    }

    .soins a {
        display: block;
        color: black;
        margin-left: 60px;
    }

    .soins_container {
        width: 100%;
    }

    .soins img {
        flex: 1;
        width: 50%;
        height: 400px;
    }

    .flex {
        flex: 1;
        display: flex;
        flex-direction: column;
        padding: 0;
    }

    .flex_reverse {
        flex-direction: row-reverse;
    }

    .philo_container {
        height: 80vh;
    }

    .philo_container h2 {
        font-size: 4rem;
    }

    .philo_container p {
        width: 45%;
        font-size: 1.5rem;
    }


}