html {
    background-color: #63b964;
    font-family: Arial, Helvetica, sans-serif;
    margin-top: 5%;
    margin-left: 20%;
    margin-right: 20%;
    margin-bottom: 10%;
    font-size: 1em;
}

body {
    border-radius: 15pt;
    background-color: rgb(243, 235, 235);
    padding-left: 10%;
    padding-right: 10%;
    padding-top: 5%;
    padding-bottom: 5%;
}

.intro {
    text-align: center;
}

#navbar {
    display: inline-flex;
    background-color: #98e690;
    justify-content: center;
    align-items: center;
    width: 100%;
    border-radius: 12pt;
    gap: 1.2em;
}

.fixed {
    position: fixed;
    top: 0;
    max-width: 48%;
}

.nav {
    align-items: center;
    justify-content: center;
}

#current {
    background-color: #307a31;
    border-radius: 12pt;
    color: aliceblue;
}

#navbar p {
    padding: 1em;
    font-weight: bold;
    font-size: 1.2em;
}

a {
    text-decoration: none;
    color: black;
}

#navbar p:hover {
    font-size: 1.3em;
    font-weight: bold;
    transition: 0.4s;
    background-color: #77df79;
    border-radius: 12pt;
    color: black;
}

#navbar p:not(:hover) {
    font-size: 1.2em;
    font-weight: normal;
    transition: 0.4s;
}

h2 {
    font-size: 2em;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    color: #243a24;
}

h3 {
    color: #669900;
    font-style: italic;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.txtWithImgLeft {
    padding-left: 5%;
}

.txtWithImgRight {
    padding-right: 5%;
}

.section {
    margin-top: 1em;
}

#doshas {
    padding-right: 5%;
}

.txtImg {
    display: flex;
    align-items: center;
    justify-content: center;
}

.imgToRight {
    width: 40%;
    height: 40%;
    object-fit: contain;
}

.center {
    text-align: center;
}

.service {
    margin-bottom: 20px;
}

.duree {
    color: #000000;
    font-size: large;
    font-weight: bold;
    white-space: nowrap;
}

.prix {
    font-weight: bold;
    color: black;
}

.serviceTitle {
    font-weight: bold;
    font-style: normal;
}

.serviceSubtitle {
    font-style: italic;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#vata {
    color: #3033e9;
    font-weight: bold;
    text-decoration: underline;
}

#pita {
    color: #e01f1f;
    font-weight: bold;
    text-decoration: underline;
}

#kapha {
    color: #7e2b12;
    font-weight: bold;
    text-decoration: underline;
}

#rdv {
    background-color: #4ab44c;
    border-radius: 12pt;
    padding: 1em;
    border-style: none;
    font-size: 1.1em;
}

#rdv:hover {
    font-size: 1.4em;
    font-weight: bold;
    background-color: #307a31;
    transition: 0.4s;
}

#rdv:not(:hover) {
    background-color: #4ab44c;
    border-radius: 12pt;
    padding: 1em;
    border-style: none;
    font-size: 1.1em;
    transition: 0.4s;
}

#ecoleLink {
    text-decoration: underline;
    color: #307a31;
    font-weight: bold;
}

.contact-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    margin-top: 5%;
}

.contact-info {
    width: 30%;
    text-align: center;
}

.contact-info h2 {
    font-style: italic;
    font-size: 2em;
    color: #669900;
}

.contact-info p {
    font-weight: bold;
    color: #243a24;
}

.form-container {
    width: 60%;
}

.form-container form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-container input,
.form-container textarea {
    width: 100%;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #ccc;
    background-color: #d4e9cd;
    font-size: 1em;
}

.form-container textarea {
    height: 100px;
    resize: none;
}

.form-container button {
    background-color: #4ab44c;
    color: white;
    padding: 10px;
    font-size: 1.2em;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.form-container button:hover {
    background-color: #307a31;
}

.images {
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.images img {
    width: 48%;
    border-radius: 10px;
}

.burger {
    display: none; /* par défaut caché */
}

/* ================= RESPONSIVE DESIGN POUR MOBILE ================= */
@media screen and (max-width: 768px) {

    html {
        background-color: white;
        margin: 5% 5% 10% 5%;
    }

    body {
        background-color: white;
        border-radius: 0;
        padding: 0;
        padding-top: 100px; /* Pour ne pas cacher le haut par le menu burger */
    }

    /* Masquer toutes les images */
    .images,
    .images img,
    .txtImg img {
        /*display: none;*/
    }

    /* Conteneur fixe pour le bouton et le menu */
    .menu-container {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        background-color: white;
        display: flex;
        flex-direction: column;
        align-items: center;
        padding-top: 10px;
        padding-bottom: 10px;
        box-shadow: 0px 2px 6px rgba(0,0,0,0.1);
    }

    .burger {
        display: block;
        background-color: #4ab44c;
        color: white;
        border: none;
        font-size: 2em;
        padding: 10px 20px;
        cursor: pointer;
        border-radius: 5px;
        text-align: center;
        width: fit-content;
    }

    /* NAVBAR MOBILE */
    #navbar {
        display: none;
        flex-direction: column;
        align-items: center;
        width: 90%;
        background-color: #98e690;
        border-radius: 12px;
        margin: 0 auto;
        padding: 1em 0;
        box-shadow: 0px 4px 8px rgba(0,0,0,0.1);
        overflow: hidden;
        transition: max-height 0.4s ease-in-out;
    }

    #navbar.active {
        display: flex;
    }

    /* Liens */
    #navbar p {
        width: 100%;
        text-align: center;
        padding: 1em 0;
        margin: 0;
    }

    .contact-section,
    .serviceSubtitle,
    h3,
    .txtImg,
    .contact-info,
    .form-container {
        flex-direction: column;
        align-items: center;
        width: 100%;
        text-align: center;
    }

    #current {
        background-color: #307a31;
        border-radius: 12pt;
        color: white;
        width: 80%;
        text-align: center;
        margin: auto;
    }
}
