/* ===== RÉGLAGES GÉNÉRAUX ===== */

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

body {
    font-family: Arial, sans-serif;
    color: #3f463d;
    background: #f7f5ef;
    line-height: 1.6;
}

/* ===== MENU ===== */

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 7%;
    background: #f7f5ef;
}

.logo {
    font-size: 22px;
    font-weight: bold;
}

nav {
    display: flex;
    gap: 30px;
}

nav a {
    color: #3f463d;
    text-decoration: none;
}

/* ===== PAGE D'ACCUEIL ===== */

.hero {
    width: 100%;
    display: flex;
    flex-direction: row;
    background: #dfe5d8;
}

.hero-content {
    width: 45%;
    min-height: 650px;
    padding: 70px 6%;

    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-image {
    width: 55%;
    height: 650px;
}

.hero-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.surtitle {
    margin-bottom: 20px;
    font-size: 13px;
    font-weight: bold;
    letter-spacing: 3px;
}

h1 {
    max-width: 600px;
    margin-bottom: 30px;

    font-size: clamp(45px, 5vw, 75px);
    font-weight: 500;
    line-height: 1.05;
}

h2 {
    margin-bottom: 30px;

    font-size: clamp(36px, 5vw, 60px);
    font-weight: 500;
    line-height: 1.1;
}

.intro {
    max-width: 500px;
    margin-bottom: 35px;
    font-size: 19px;
}

.button {
    display: inline-block;
    width: fit-content;

    padding: 15px 28px;

    color: white;
    background: #596653;

    text-decoration: none;
    border-radius: 30px;
}

/* ===== PRESTATIONS ===== */

.section,
.about,
.contact {
    padding: 100px 10%;
}

.massage-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.massage-card {
    background: white;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(63, 70, 61, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.massage-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(63, 70, 61, 0.14);
}

.massage-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
}

.massage-card-content {
    padding: 28px;
}

.massage-card h3 {
    font-size: 26px;
    margin-bottom: 15px;
}

.massage-card p {
    margin-bottom: 20px;
}

.card-link {
    color: #596653;
    text-decoration: none;
    font-weight: bold;
}

/* ===== À PROPOS ===== */

.about {
    display: flex;
    flex-direction: row-reverse;
    align-items: stretch;
    padding: 0;
    background: #e8e4d8;
}

.about-image {
    width: 45%;
}

.about-image img {
    width: 100%;
    height: 100%;
    min-height: 650px;
    object-fit: cover;
    display: block;
}

.about-content {
    width: 55%;
    padding: 90px 7%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-content p {
    margin-bottom: 20px;
}

.about-signature {
    margin-top: 20px;
    font-size: 20px;
    font-style: italic;
    font-weight: 500;
}

/* ===== CONTACT ===== */

.contact {
    text-align: center;
}

.contact p {
    margin-bottom: 25px;
}

.contact .button {
    margin: auto;
}

/* ===== PIED DE PAGE ===== */

footer {
    padding: 30px;

    color: white;
    background: #3f463d;

    text-align: center;
}

/* ===== TÉLÉPHONE ===== */
/* ===== FICHE SUEDOSPORTIF ===== */

.massage-detail {
    display: flex;
    align-items: stretch;
    background: #e8e4d8;
}

.massage-detail-text {
    width: 55%;
    padding: 90px 7%;
}

.massage-detail-text p {
    margin-bottom: 20px;
}

.massage-detail-image {
    width: 45%;
}

.massage-detail-image img {
    width: 100%;
    height: 100%;
    min-height: 600px;
    object-fit: cover;
    display: block;
}

.massage-info {
    display: flex;
    flex-direction: column;
    gap: 6px;

    margin: 30px 0;
    padding: 20px 0;

    border-top: 1px solid #b8b8ad;
    border-bottom: 1px solid #b8b8ad;
}

.certification {
    margin-top: 30px;
    font-size: 13px;
    opacity: 0.75;
}
@media screen and (max-width: 700px) {
.massage-detail {
    flex-direction: column;
}

.massage-detail-text,
.massage-detail-image {
    width: 100%;
}

.massage-detail-text {
    padding: 60px 7%;
}

.massage-detail-image img {
    min-height: 400px;
}
    header {
        flex-direction: column;
        gap: 20px;
    }

    nav {
        justify-content: center;
        flex-wrap: wrap;
        gap: 15px;
    }

    .hero {
        flex-direction: column;
    }

    .hero-content {
        width: 100%;
        min-height: auto;
        padding: 60px 7%;
    }

    .hero-image {
        width: 100%;
        height: 400px;
    }

    h1 {
        font-size: 48px;
    }

    .section,
    .about,
    .contact {
        padding: 70px 7%;
    }

    .massage-grid {
        grid-template-columns: 1fr;
    }

.about {
    flex-direction: column;
}

.about-image,
.about-content {
    width: 100%;
}

.about-image img {
    min-height: auto;
    height: 500px;
}

.about-content {
    padding: 60px 7%;
}

} /* FIN VERSION TÉLÉPHONE */

.contact-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 18px;
    margin-top: 30px;
}

.contact-button {
    display: flex;
    align-items: center;
    justify-content: center;

    height: 58px;
    padding: 0 28px;

    color: white;
    background: #596653;

    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
}

.whatsapp-button {
    width: 58px;
    height: 58px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #25D366;
    border-radius: 50%;
}

.whatsapp-button svg {
    width: 32px;
    height: 32px;
    fill: white;
}

.contact-button:hover,
.whatsapp-button:hover {
    transform: translateY(-2px);
}
.contact .whatsapp-button {
    width: 58px;
    height: 58px;
    min-width: 58px;
    max-width: 58px;
    padding: 0;
    margin: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;
}

.contact .whatsapp-button svg {
    width: 30px;
    height: 30px;
    max-width: 30px;
    max-height: 30px;
    display: block;
}
/* ===== CONTACT - CORRECTION BOUTONS ===== */

.contact-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-top: 30px;
}

.contact-buttons .contact-button {
    height: 50px;
    padding: 0 25px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    background: #596653;
    color: white;
    text-decoration: none;
    border-radius: 25px;
}

.contact-buttons a.whatsapp-button {
    width: 50px !important;
    height: 50px !important;
    min-width: 50px !important;
    min-height: 50px !important;
    max-width: 50px !important;
    max-height: 50px !important;

    padding: 0 !important;
    margin: 0 !important;

    display: inline-flex !important;
    align-items: center;
    justify-content: center;

    background: #25D366;
    border-radius: 50%;
}

.contact-buttons a.whatsapp-button svg {
    width: 27px !important;
    height: 27px !important;
    min-width: 27px;
    max-width: 27px;

    display: block;
    fill: white;
}
.email-button {
    width: 50px;
    height: 50px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    background: #596653;
    border-radius: 50%;
    text-decoration: none;

    transition: transform 0.3s ease;
}

.email-button svg {
    width: 26px;
    height: 26px;
    fill: white;
}

.email-button:hover {
    transform: translateY(-2px);
}