:root {
    --light-green: #77C2A4;
    --light-grey: #EFEFEF;
    --gold: #CEA224;
    --pink: #D2B2BC;
}

/* ========================================
   Reset & Base Styles
   ======================================== */

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

body {
    font-family: Helvetica, Arial, sans-serif;
    font-size: 12px;
    color: #000;
    background: white;
}

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

b {
    font-weight: bold;
}

h2 {
    font-size: 40px;
    font-weight: normal;
}

/* ========================================
   Utility Classes
   ======================================== */

.--centered {
    width: 1090px;
    margin: 0 auto;
}

.--contrast {
    /* Style contrast� pour les �l�ments */
}

/* ========================================
   Navigation
   ======================================== */

nav {
    display: flex;
    align-items: start;
    justify-content: end;
}

.button {
    display: flex;
    height: 60px;
    align-items: center;
    padding: 0 30px;
    background: var(--light-green);
    color: white;
    text-decoration: none;
    text-transform: uppercase;
    border: none;
    font-size: 12px;
    cursor: pointer;
}

.button.--contrast {
    background: black;
    color: white;
}

/* ========================================
   Header
   ======================================== */

.logo {
    width: 258px;
    margin: 30px 0;
    position: relative;
}

.logo-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: opacity 5s ease-in-out;
}

.logo-green {
    position: relative;
}

.header-content {
    display: flex;
    align-items: end;
}

.portrait {
    width: 400px;
}

.portrait img {
    /* Styles pour l'image portrait */
}

.content {
    /* Conteneur de contenu texte */
}

.paragraph {
    padding: 30px;
    line-height: 20px;
}

.paragraph.--contrast {
    background: var(--light-green);
}

.paragraph p:not(:last-child) {
    margin-bottom: 30px;
}

/* ========================================
   Sub-heading Section
   ======================================== */

.sub-heading {
    font-style: italic;
    font-size: 14px;
    text-align: center;
    line-height: 30px;
    margin: 30px auto;
}

/* ========================================
   Services Section
   ======================================== */

#services {
    /* Section des services */
}

.services-wrapper {
    display: flex;
    gap: 30px;
    margin-top: 20px;
}

.service {
    flex: 0 0 50%;
    margin-bottom: 40px;
}

.service-header {
    margin-bottom: 20px;
    display: flex;
    align-items: end;
    gap: 40px;
}

.service-header .number {
    font-weight: bold;
    font-size: 76px;
    display: flex;
    height: 74px;
}

.service-header .choix {
    text-transform: uppercase;
}

.service-header h3 {
    font-size: 22px;
    font-weight: bold;
}

.service-header .sub-title {
    height: 41px;
    font-size: 18px;
    font-weight: bold;
    color: var(--light-green);
    display: flex;
    flex-direction: column;
    justify-content: end;
}

.service-header .sub-title span {
    color: black;
    font-size: 14px;
}

.service-content {
    padding: 30px;
    background: var(--light-grey);
    line-height: 20px;
    height: 200px;
}

.service-formules {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 60px;
    gap: 15px;
}

.service-formules .seances {
    margin-left: 30px;
    font-size: 22px;
    font-weight: bold;
}

.service-formules .seances.--right {
    text-align: right;
    font-style: italic;
    font-weight: normal;
    font-size: 18px;
}

.service-formules .price {
    background: var(--gold);
    display: flex;
    height: 60px;
    align-items: center;
    padding: 0 30px;
    gap: 4px;
}

.service-formules .price span {
    font-weight: bold;
    font-size: 15px;
}

/* ========================================
   Témoignages Section
   ======================================== */

#temoignages {
    position: relative;
    background: var(--light-grey);
    padding: 50px 0 0;
}

.caroussel-container {
    width: 100%;
    overflow: hidden;
}

.caroussel-wrapper {
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    list-style-type: none;
}

.temoignage-wrapper {
    flex: 0 0 100%;
}

.temoignage-name {
    margin-top: 20px;
    font-size: 14px;
    font-style: italic;
    color: var(--light-green);
    font-weight: bold;
}

.caroussel-btn {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

.caroussel-indicators {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 10px;
    margin-bottom: 50px;
}

.caroussel-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid var(--light-green);
    background: transparent;
    cursor: pointer;
    transition: all 300ms ease;
    padding: 0;
}

.caroussel-indicator.active:hover {
    border-color: var(--light-green);
}

.caroussel-indicator:hover {
    background: var(--gold);
    border-color: var(--gold);
}

.caroussel-indicator.active {
    background: var(--light-green);
}

/* ========================================
   Contact Section
   ======================================== */

#contact {
    background: var(--pink);
    padding: 50px 0 40px;
}

#temoignages h2 {
    padding: 0 40px 0;
}

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

.contact-reach {
    display: flex;
    align-items: center;
    gap: 20px;
}

.contact-reach .logo {
    width: 70px;
}

.contact-reach .reach {
   display: flex;
   flex-direction: column;
   justify-content: space-evenly;
}

.contact-reach .reach p:first-child {
    margin-bottom: 15px;
}

.contact-network {
    gap: 20px;
    display: flex;
}

.contact-network a {
    width: 62px;
}

.contact-network img {
    /* Images des r�seaux sociaux */
}

/* ========================================
   Form
   ======================================== */

.field-inline {
    display: flex;
    gap: 15px;
}

.field-inline .field {
    flex: 1;
}

.field {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.label {
    flex: 0 0 100px;
}

.input {
    /* Input de formulaire */
    width: 100%;
    padding: 8px;
    border: 1px solid #ccc;
}

textarea.input {
    resize: vertical;
    font-family: 'Helvetica', 'Arial', sans-serif;
}

.form-actions {
    display: flex;
    flex-direction: column;
    align-items: end;
    gap: 15px;
}

/* ========================================
   Footer
   ======================================== */

footer {
    /* Styles du footer */
    text-align: center;
    padding: 20px;
}

/* ========================================
   Media Queries - Mobile
   ======================================== */

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

    .wrapper {
        padding: 0 30px;
    }

    .--centered {
        width: 100%;
    }

    /* Navigation mobile */
    nav {
        /* Ajustements navigation mobile */
    }

    nav .button {
        /* Boutons navigation mobile */
    }

    header .logo {
        width: 100%;
    }

    header .logo img {
        margin: 0 auto;
    }

    .header-content {
        flex-direction: column;
    }

    .portrait {
        width: 100%;
    }

    /* Services mobile */
    .services-wrapper {
        /* Services en colonne sur mobile */
        flex-direction: column;
    }

    .service {
        /* Service individuel mobile */
        margin-bottom: 2rem;
    }

    .service-header h3 {
        font-size: 20px;
    }

    .service-header .sub-title {
        height: auto;
        font-size: 15px;
    }

    .service-content {
        height: auto;
    }

    .service-formules .seances {
        margin-left: 20px;
        font-size: 14px;
        text-align: right;
    }

    .service-formules .seances.--right {
        font-size: 12px;
    }

    .service-formules .price {
        padding: 0 15px;
        font-size: 10px;
    }

    #contact {
        padding: 50px 40px 40px;
    }

    .contacts {
        flex-direction: column;
    }

    /* Contact mobile */
    .contact-reach .logo {
        margin: 20px 0 0;
    }

    .contact-network {
        justify-content: start;
        width: 100%;
        padding-left: 133px;
        margin-bottom: 20px;
    }

    .contact-network a {
        width: 40px;
    }

    form {
        margin-top: 30px;
    }

    /* Form mobile */
    .field-inline {
        /* Champs en colonne sur mobile */
        flex-direction: column;
    }

    .button {
        text-align: center;
    }
}

/* Media query pour tr�s petits �crans */
@media screen and (max-width: 480px) {

    body {
        /* Ajustements pour tr�s petits �crans */
    }

    /* Ajustements sp�cifiques si n�cessaires */
}
