/* =========================
   RESET
========================= */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f4effc;
    color: #593946;
}


/* =========================
   NAVIGATION
========================= */

.navbar {
    height: 90px;

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

    padding: 0 7%;

    background-color: #faf7fd;
}

.brand a {
    text-decoration: none;
    color: #593946;

    display: flex;
    flex-direction: column;

    line-height: 1;
}

.brand-main {
    font-family: Georgia, serif;
    font-size: 30px;
    letter-spacing: 1px;
}

.brand-sub {
    margin-top: 7px;

    font-size: 9px;
    letter-spacing: 5px;

    color: #d79b9f;
}

nav {
    display: flex;
    align-items: center;
    gap: 35px;
}

nav a {
    position: relative;

    text-decoration: none;
    color: #593946;

    font-size: 15px;

    padding-bottom: 10px;

    transition: color 0.3s ease;
}

nav a:hover {
    color: #d79b9f;
}

nav a.active {
    color: #d79b9f;
}

nav a.active::after {
    content: "";

    position: absolute;

    left: 0;
    right: 0;
    bottom: 0;

    height: 2px;

    background-color: #d79b9f;
}

/* =========================
   TEXTES GÉNÉRAUX
========================= */

.eyebrow {
    color: #d79b9f;

    text-transform: uppercase;
    letter-spacing: 4px;

    font-size: 13px;

    margin-bottom: 25px;
}

h1 {
    font-family: "Cormorant Garamond", Georgia, serif;
    font-weight: 400;

    font-size: 64px;
    line-height: 1.08;

    margin-bottom: 30px;
}


/* =========================
   BOUTONS
========================= */

.btn-primary,
.btn-secondary {
    width: 185px;
    height: 52px;

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

    padding: 0 14px;

    text-align: center;
    text-decoration: none;

    border-radius: 2px;

    font-size: 13px;
    line-height: 1.2;

    transition: all 0.3s ease;
}

.hero-buttons {
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-primary {
    background-color: #6f4654;
    color: white;
}

.btn-secondary {
    border: 1px solid #6f4654;
    color: #6f4654;
}

.btn-primary:hover {
    opacity: 0.85;
    transform: translateY(-2px);
}

.btn-secondary:hover {
    background-color: #6f4654;
    color: white;

    transform: translateY(-2px);
}


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

.hero {
    min-height: 600px;

    display: grid;
    grid-template-columns: 1fr 1fr;

    align-items: center;
    gap: 60px;

    padding: 45px 10%;

    background-color: #f4effc;
}

.hero-title {
    font-family: "Cormorant Garamond", Georgia, serif;

    font-size: 60px;
    font-weight: 400;
    font-style: italic;

    line-height: 1.05;
    letter-spacing: -0.3px;

    color: #593946;

    margin-bottom: 24px;
}

.hero-content {
    max-width: 700px;
}

.subtitle {
    font-size: 18px;
    line-height: 1.8;

    color: #80616b;

    margin-bottom: 32px;
}

.hero-buttons {
    display: flex;
    gap: 12px;
    align-items: center;
}


/* Image orchidée */

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-circle {
    width: 400px;
    height: 400px;

    border-radius: 50%;

    border: 4px solid rgba(215, 155, 159, 0.45);

    overflow: hidden;

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

    box-shadow:
        0 15px 40px rgba(89, 57, 70, 0.12);
}

.orchid-image {
    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;

    display: block;
}

/* Introduction accueil */

.intro {
    background-color: #fbf8fc;

    text-align: center;

    padding: 60px 20%;
}

.section-label {
    color: #d79b9f;

    letter-spacing: 5px;

    font-size: 12px;

    margin-bottom: 25px;
}

.intro-title {
    font-family: Georgia, serif;

    font-size: 40px;
    font-weight: 400;
    line-height: 1.2;

    color: #593946;

    margin-bottom: 24px;
}

.intro-text {
    max-width: 680px;

    margin: 0 auto;

    font-size: 17px;
    line-height: 1.8;

    color: #80616b;
}

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

.about-page {
    min-height: 560px;

    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);

    align-items: center;
    gap: 60px;

    padding: 30px 10% 35px;

    background-color: #f4effc;
}

.about-content {
    max-width: 760px;
}

.about-title {
    font-family: "Cormorant Garamond", Georgia, serif;

    font-size: 54px;
    font-weight: 400;
    line-height: 1.08;

    color: #593946;

    margin-bottom: 24px;
}

.about-text {
    max-width: 680px;
}

.about-text p {
    font-size: 17px;
    line-height: 1.8;
    color: #80616b;
    margin-bottom: 18px;
    text-align: justify;
}


/* Photo À propos */

.about-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-circle {
    width: 360px;
    height: 360px;

    border-radius: 50%;
    border: 4px solid rgba(215, 155, 159, 0.45);

    overflow: hidden;

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

    box-shadow: 0 15px 40px rgba(89, 57, 70, 0.12);
}

.about-image {
    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;

    display: block;
}


/* =========================
   PAGE ACCOMPAGNEMENTS
   MA MÉTHODE
========================= */

.method-page {
    min-height: 620px;

    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);

    align-items: start;

    gap: 60px;

    padding: 45px 10% 50px;

    background-color: #f4effc;
}


/* Colonne texte */

.method-content {
    max-width: 820px;
}

.method-title {
    font-family: "Cormorant Garamond", Georgia, serif;

    font-size: 54px;
    font-weight: 400;
    line-height: 1.05;

    color: #593946;

    margin-bottom: 18px;
}

.method-title-secondary {
    display: inline-block;

    margin-top: 4px;

    font-size: 42px;
    font-weight: 400;
    font-style: italic;

    line-height: 1.15;

    color: #80616b;
}

.method-subtitle {
    font-family: Georgia, serif;

    font-size: 24px;
    font-weight: 400;
    line-height: 1.3;

    color: #d79b9f;

    margin-bottom: 35px;
}

.method-text p {
    font-size: 16px;
    line-height: 1.7;

    color: #80616b;

    margin-bottom: 18px;

    text-align: left;

    hyphens: auto;
}

.method-text p {
    font-size: 17px;
    line-height: 1.9;

    color: #80616b;

    margin-bottom: 28px;

    text-align: justify;

    hyphens: auto;
}


/* Photo Accompagnements */

.method-visual {
    display: flex;
    justify-content: center;
    align-items: flex-start;

    padding-top: 85px;
}

.method-circle {
    width: 360px;
    height: 360px;

    border-radius: 50%;

    border: 4px solid rgba(215, 155, 159, 0.45);

    overflow: hidden;

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

    box-shadow:
        0 15px 40px rgba(89, 57, 70, 0.12);
}

.method-image {
    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;

    display: block;
}

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

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

.contact-page {
    min-height: 580px;

    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.9fr);

    align-items: center;
    gap: 55px;

    padding: 40px 6% 45px;

    background-color: #f4effc;
}

.contact-content {
    max-width: 520px;
}

.contact-title {
    font-family: "Cormorant Garamond", Georgia, serif;

    font-size: 54px;
    font-weight: 400;
    line-height: 0.98;

    color: #593946;

    margin-bottom: 18px;
}

.contact-subtitle {
    max-width: 500px;

    font-family: Georgia, serif;
    font-size: 16px;
    line-height: 1.45;

    color: #80616b;

    margin-bottom: 22px;
}


/* Coordonnées */

.contact-details {
    margin-top: 20px;
}

.contact-row {
    display: flex;
    align-items: flex-start;

    gap: 18px;

    margin-bottom: 18px;
}

.contact-icon {
    width: 44px;
    height: 44px;

    flex-shrink: 0;

    border-radius: 50%;

    background-color: #f6dfe5;

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

.contact-icon svg {
    width: 22px;
    height: 22px;

    fill: none;

    stroke: #7b4b5c;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.contact-info {
    padding-top: 1px;
}

.contact-label {
    display: block;

    margin-bottom: 5px;

    font-size: 10px;
    letter-spacing: 3px;

    color: #d79b9f;
}

.contact-info p {
    margin: 0;

    font-family: Georgia, serif;

    font-size: 17px;
    line-height: 1.35;

    color: #593946;
}

.contact-info a {
    color: #593946;
    text-decoration: none;
}

.email-link {
    text-decoration: underline !important;
}


/* Bouton WhatsApp */

.whatsapp-button {
    display: inline-flex;
    align-items: center;

    gap: 8px;

    margin-top: 8px;

    padding: 9px 17px;

    border-radius: 30px;

    background-color: #c97986;

    color: white !important;

    font-family: Arial, sans-serif;
    font-size: 13px;

    text-decoration: none !important;

    transition: all 0.3s ease;
}

.whatsapp-button:hover {
    opacity: 0.88;

    transform: translateY(-1px);
}


/* Photo Contact */

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

.contact-circle {
    width: 400px;
    height: 400px;

    border-radius: 50%;

    border: 3px solid rgba(215, 155, 159, 0.55);

    overflow: hidden;

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

    box-shadow: 0 15px 40px rgba(89, 57, 70, 0.08);
}

.contact-image {
    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;

    display: block;
}

/* =========================
   MOBILE
========================= */

/* Bouton menu mobile - caché sur ordinateur */

.menu-toggle {
    display: none;

    background: none;
    border: none;

    color: #593946;

    font-size: 30px;
    line-height: 1;

    cursor: pointer;
}

@media (max-width: 850px) {

    /* Navigation */

    .navbar {
        padding: 0 8%;
    }

/* Navigation mobile */

.navbar {
    position: relative;

    padding: 0 8%;
}

.menu-toggle {
    display: block;
    margin-left: auto;

}

.navbar nav {
    display: none;

    position: absolute;

    top: 90px;
    right: 8%;
    left: auto;

    width: 240px;

    z-index: 1000;

    flex-direction: column;

    gap: 0;

    padding: 12px 20px;

    background-color: #faf7fd;

    border: 1px solid rgba(215, 155, 159, 0.25);
    border-radius: 10px;

    box-shadow: 0 12px 30px rgba(89, 57, 70, 0.12);
}

.navbar nav.open {
    display: flex;
}

.navbar nav a {
    width: 100%;

    padding: 15px 0;

    text-align: center;

    font-size: 16px;
}

.navbar nav a.active::after {
    left: 35%;
    right: 35%;
}


    /* Titres généraux */

    h1 {
        font-size: 44px;
    }


/* Accueil */

.hero {
    min-height: auto;

    grid-template-columns: 1fr;

    gap: 30px;

    padding: 50px 7% 45px;

    text-align: center;
}

.hero-content {
    max-width: 100%;
}

.hero-title {
    font-size: 44px;
    line-height: 1.02;

    margin-bottom: 22px;
}

.subtitle {
    font-size: 16px;
    line-height: 1.6;

    margin-bottom: 26px;
}

.hero-buttons {
    display: flex;
    flex-direction: column;

    align-items: center;

    gap: 10px;
}

.btn-primary,
.btn-secondary {
    width: 235px;
    height: 48px;

    font-size: 13px;
}

.hero-visual {
    margin-top: 18px;
}

.hero-circle {
    width: 250px;
    height: 250px;

    margin: 0 auto;
}

.intro {
    padding: 45px 8%;
}

.intro-title {
    font-size: 34px;
    line-height: 1.15;
}

.intro-text {
    font-size: 16px;
    line-height: 1.7;
}

    /* À propos */

.about-page {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 55px 8% 60px;
    text-align: center;
}

.about-content {
    max-width: 100%;
}

.about-title {
    font-size: 40px;
    line-height: 1.12;
    margin-bottom: 32px;
}

.about-text {
    margin: 0 auto;
}

.about-text p {
    font-size: 16px;
    line-height: 1.75;

    text-align: justify;
    text-justify: inter-word;

    margin-bottom: 22px;
}

.about-visual {
    margin-top: 5px;
}

.about-circle {
    width: 250px;
    height: 250px;
    margin: 0 auto;
}
    /* Accompagnements */

/* Accompagnements */

.method-page {
    grid-template-columns: 1fr;

    gap: 28px;

    padding: 55px 8% 60px;

    text-align: center;
}

.method-content {
    max-width: 100%;
}

.method-title {
    font-size: 40px;
    line-height: 1.08;

    margin-bottom: 14px;
}

.method-title-secondary {
    font-size: 34px;
    line-height: 1.1;
}

.method-subtitle {
    font-size: 21px;
    line-height: 1.25;

    margin-bottom: 28px;
}

.method-text {
    margin: 0 auto;
}

.method-text p {
    font-size: 16px;
    line-height: 1.7;

    text-align: justify;
    text-justify: inter-word;

    margin-bottom: 20px;
}

.method-visual {
    transform: none;

    margin-top: 5px;
    padding-top: 0;
}

.method-circle {
    width: 250px;
    height: 250px;

    margin: 0 auto;
}

    /* Contact */

/* Contact */

.contact-page {
    min-height: auto;

    grid-template-columns: 1fr;

    gap: 30px;

    padding: 50px 8% 60px;

    text-align: center;
}

.contact-content {
    max-width: 100%;
}

.contact-title {
    font-size: 42px;
    line-height: 1.02;

    margin-bottom: 18px;
}

.contact-subtitle {
    max-width: 100%;

    margin: 0 auto 28px;

    font-size: 16px;
    line-height: 1.55;
}

.contact-details {
    width: 100%;

    margin-top: 25px;
}

.contact-row {
    justify-content: flex-start;

    max-width: 320px;

    margin: 0 auto 20px;

    text-align: left;
}

.contact-icon {
    width: 42px;
    height: 42px;
}

.contact-icon svg {
    width: 21px;
    height: 21px;
}

.contact-info p {
    font-size: 16px;
}

.contact-label {
    font-size: 9px;
    letter-spacing: 2.5px;
}

.whatsapp-button {
    padding: 9px 15px;

    font-size: 12px;
}

.contact-visual {
    margin-top: 10px;
}

.contact-circle {
    width: 260px;
    height: 260px;

    margin: 0 auto;
}
}