/*
Theme Name: Zaiya Theme
Author: Zaiya
Version: 1.0
*/

/* =========================
   VARIABLES
========================= */

:root {
    --green-dark: #0f3d2e;
    --green-mid: #1f5c46;
    --gold: #c8a96a;
    --beige: #f5f1e8;
    --white: #ffffff;
    --text: #1a1a1a;
    --muted: #6f6f6f;
    --soft-bg: #fbfaf7;
    --border: rgba(15, 61, 46, 0.12);
    --shadow: 0 18px 45px rgba(15, 61, 46, 0.10);

    --theme-accent: var(--green-dark);
    --theme-accent-hover: var(--green-mid);
    --theme-footer-bg: var(--green-dark);
    --theme-footer-text: var(--beige);
    --theme-footer-border: rgba(255, 255, 255, 0.12);
    --theme-footer-hover: var(--gold);
}

body.theme-event {
    --theme-accent: var(--green-dark);
    --theme-accent-hover: var(--green-mid);
    --theme-footer-bg: var(--green-dark);
    --theme-footer-text: var(--beige);
    --theme-footer-border: rgba(255, 255, 255, 0.12);
    --theme-footer-hover: var(--gold);
}

body.theme-moment {
    --theme-accent: #a22455;
    --theme-accent-hover: #c94c6d;
    --theme-footer-bg: #2a141c;
    --theme-footer-text: #f7ede2;
    --theme-footer-border: rgba(255, 255, 255, 0.08);
    --theme-footer-hover: #f3a6b6;

    --moment-bg: #f7ede2;
    --moment-primary: #c94c6d;
    --moment-accent: #6e2c3a;
    --moment-soft: #f3a6b6;
    --moment-card: #f7ede2;
    --moment-text: #6e2c3a;
    --moment-white: #f7ede2;

    background: var(--moment-bg);
    color: var(--moment-text);
}

/* =========================
   BASE GLOBALE
========================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 15px;
}

body {
    font-family: "Montserrat", sans-serif;
    color: var(--text);
    background: var(--white);
    line-height: 1.6;
    font-size: 0.95rem;
    text-align: left;
    overflow-x: hidden;
}

body.no-scroll,
body.modal-open,
body.mobile-menu-open {
    overflow: hidden;
}

img {
    max-width: 100%;
    display: block;
}

button,
input,
textarea {
    font: inherit;
}

p,
ul,
ol,
li {
    text-align: left;
}

ul,
ol {
    padding-left: 18px;
}

.container {
    width: min(1100px, 90%);
    margin: 0 auto;
}

.narrow {
    width: min(740px, 90%);
    margin: 0 auto;
}

.section {
    padding: 72px 0;
}

.eyebrow {
    display: inline-block;
    margin-bottom: 14px;
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
}

.section-heading {
    text-align: center;
    margin-bottom: 42px;
}

.section-heading h2,
.intro h2 {
    font-family: "Playfair Display", serif;
    font-size: clamp(1.7rem, 3vw, 2.5rem);
    line-height: 1.18;
    margin-bottom: 14px;
    color: var(--green-dark);
    text-align: center;
}

.section-heading p,
.intro p {
    color: var(--muted);
    max-width: 680px;
    margin: 0 auto;
    font-size: 0.94rem;
    line-height: 1.7;
}
/* =========================
   BOUTONS
========================= */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 11px 20px;
    border-radius: 999px;
    text-decoration: none;
    border: 1px solid transparent;
    transition: 0.3s ease;
    cursor: pointer;
    font-size: 0.82rem;
    letter-spacing: 0.02em;
}

.btn-gold {
    background: var(--gold);
    color: var(--white);
}

.btn-gold:hover {
    background: #b89350;
    transform: translateY(-2px);
}

.btn-outline {
    border-color: rgba(255, 255, 255, 0.42);
    color: var(--white);
    background: transparent;
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.08);
}

.btn-dark {
    background: var(--green-dark);
    color: var(--white);
    border: none;
}

.btn-dark:hover {
    background: #0b3025;
}

/* =========================
   HEADER
========================= */

.site-header {
    width: 100%;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 3000;
}

.site-header-inner {
    max-width: 1180px;
    margin: 0 auto;
    padding: 22px 24px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
}

.site-logo {
    justify-self: start;
    font-family: "Cormorant Garamond", serif;
    font-size: 1.9rem;
    font-weight: 700;
    color: var(--green-dark);
    text-decoration: none;
}

.site-logo img {
    height: 60px;
    width: auto;
    object-fit: contain;
    display: block;
}

.site-nav,
.nav-list {
    display: flex;
    gap: 36px;
    justify-content: center;
}

.site-nav a,
.nav-list a {
    color: var(--text);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.25s ease;
}

.site-nav a:hover,
.nav-list a:hover {
    color: var(--gold);
}

.header-whatsapp {
    justify-self: end;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--green-dark);
    color: var(--white);
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 999px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: transform 0.25s ease, background 0.25s ease;
}

.header-whatsapp:hover {
    background: var(--green-mid);
    transform: translateY(-2px);
}

.zaiya-top-fabric {
    width: 100%;
    height: 18px;
    display: block;
    overflow: hidden;
    background-image: url("/wp-content/uploads/2026/05/tissu.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* =========================
   HEADER MOMENTS
========================= */

body.theme-moment .site-header {
    background: rgba(247, 237, 226, 0.92);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(110, 44, 58, 0.08);
}

body.theme-moment .site-logo {
    color: var(--moment-primary);
}

body.theme-moment .site-nav a,
body.theme-moment .nav-list a {
    color: var(--moment-text);
}

body.theme-moment .site-nav a:hover,
body.theme-moment .nav-list a:hover {
    color: var(--moment-accent);
}

body.theme-moment .header-whatsapp {
    background: var(--moment-primary);
    color: var(--moment-white);
}

body.theme-moment .header-whatsapp:hover {
    background: var(--moment-accent);
}

/* =========================
   BURGER MENU
========================= */

.menu-toggle {
    display: none;
    width: 34px;
    height: 26px;
    border: none;
    background: transparent;
    padding: 0;
    cursor: pointer;
    justify-self: end;
    position: relative;
    z-index: 3002;
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--green-dark);
    margin-bottom: 7px;
    transition: 0.3s ease;
}

.menu-toggle span:last-child {
    margin-bottom: 0;
}

.menu-toggle.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

body.theme-moment .menu-toggle span {
    background: var(--moment-primary);
}

.mobile-menu {
    display: none;
}
/* =========================
   HERO ACCUEIL
========================= */

.hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--green-dark);
}

.hero-slider,
.hero-slide,
.hero .hero-overlay {
    position: absolute;
    inset: 0;
}

.hero-slide {
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.4s ease-in-out;
    transform: scale(1.02);
}

.hero-slide.active {
    opacity: 1;
}

.hero .hero-overlay {
    z-index: 1;
    background:
        linear-gradient(180deg, rgba(8, 30, 24, 0.32) 0%, rgba(8, 30, 24, 0.68) 100%),
        rgba(15, 61, 46, 0.35);
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    text-align: center;
    max-width: 860px;
    padding: 100px 0 80px;
    margin: 0 auto;
}

.hero-content .eyebrow {
    color: rgba(255, 255, 255, 0.76);
}

.hero-content h1 {
    font-family: "Playfair Display", serif;
    font-size: clamp(2.4rem, 5vw, 4.5rem);
    line-height: 1.02;
    margin-bottom: 24px;
    text-align: center;
}

.hero-text {
    max-width: 720px;
    margin: 0 auto 30px;
    font-size: 1.02rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.92);
    text-align: center;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-buttons .btn {
    font-size: 0.82rem;
    padding: 15px 28px;
    border-radius: 0;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* =========================
   INTRO
========================= */

.intro {
    background: var(--soft-bg);
    padding: 90px 20px;
    position: relative;
}

.intro::before {
    content: "";
    width: 60px;
    height: 2px;
    background: var(--gold);
    display: block;
    margin: 0 auto 28px;
    opacity: 0.7;
}

.intro h2 {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.1;
    margin-bottom: 28px;
    text-align: center;
    color: var(--green-dark);
}

.intro p {
    max-width: 720px;
    margin: 0 auto;
    font-size: 1rem;
    line-height: 1.9;
    color: var(--text);
    text-align: center;
    opacity: 0.9;
}

.intro p::first-line {
    font-weight: 500;
}

/* =========================
   PRESTATIONS
========================= */

.prestations {
    background: var(--beige);
    padding: 90px 0 100px;
}

.prestations .container {
    max-width: 1180px;
}

.services-header {
    text-align: center;
    max-width: 820px;
    margin: 0 auto 48px;
}

.services-header .eyebrow {
    color: var(--gold);
    letter-spacing: 0.22em;
    text-transform: uppercase;
    font-size: 0.75rem;
}

.services-header h2 {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(2.7rem, 6vw, 5rem);
    line-height: 0.9;
    color: var(--green-dark);
    margin: 14px 0 18px;
    text-align: center;
}

.services-header p {
    color: var(--text);
    font-size: 1.05rem;
    text-align: center;
}

.services-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 34px;
}

.service-row {
    display: flex;
    flex-direction: column;
    gap: 14px;
    background: transparent;
}

.service-row::before {
    content: "";
    width: 40px;
    height: 2px;
    background: var(--gold);
    margin-bottom: 6px;
    opacity: 0.7;
}

.service-image {
    width: 100%;
    height: 185px;
    overflow: hidden;
    cursor: pointer;
    border: none;
    background: transparent;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease, opacity 0.3s ease;
}

.service-image:hover img {
    transform: scale(1.04);
    opacity: 0.92;
}

.service-content h3 {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(1.35rem, 1.8vw, 1.75rem);
    line-height: 0.95;
    text-transform: uppercase;
    color: var(--green-dark);
    margin-bottom: 10px;
    text-align: left;
}

.service-content h3::after {
    content: "";
    display: block;
    width: 34px;
    height: 2px;
    background: var(--gold);
    margin-top: 8px;
}

.service-price {
    color: var(--gold);
    font-size: 0.76rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.service-text {
    display: none;
}
/* =========================
   POPUP SERVICE
========================= */

.service-popup {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.service-popup.active {
    display: flex;
}

.service-popup-overlay {
    position: absolute;
    inset: 0;
    background: rgba(15, 61, 46, 0.68);
    backdrop-filter: blur(5px);
}

.service-popup-content {
    position: relative;
    z-index: 2;
    width: min(620px, 100%);
    max-height: 82vh;
    overflow-y: auto;
    background: var(--beige);
    padding: 34px;
    border: 1px solid var(--border);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.22);
}

.service-popup-close {
    position: absolute;
    top: 14px;
    right: 16px;
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
}

.service-popup-content h3 {
    font-family: "Cormorant Garamond", serif;
    font-size: 2.3rem;
    text-transform: uppercase;
    color: var(--green-dark);
    margin-bottom: 12px;
}

.service-popup-content .service-text {
    display: block;
    font-size: 0.95rem;
    line-height: 1.7;
    text-align: left;
}

/* =========================
   OPTIONS
========================= */

.options-block {
    margin-top: 80px;
    margin-bottom: 40px;
}

.options-block > h3 {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--green-dark);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 32px;
    text-align: center;
}

.options-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    max-width: 1000px;
    margin: 0 auto;
}

.option-card {
    padding: 22px;
    background: rgba(255, 255, 255, 0.5);
    border-top: 2px solid var(--gold);
    text-align: left;
}

.option-card h4 {
    font-family: "Cormorant Garamond", serif;
    font-size: 1.3rem;
    color: var(--green-dark);
    margin-bottom: 6px;
}

.option-card span {
    color: var(--gold);
    font-size: 0.78rem;
    font-weight: 600;
    margin-bottom: 6px;
    display: block;
}

.option-card p {
    font-size: 0.82rem;
    line-height: 1.5;
}

/* =========================
   FORMULES
========================= */

.formules-block,
.prestations .formules-block {
    margin-top: 0;
    margin-bottom: 90px;
    padding: 70px 24px;
    background: rgba(200, 169, 106, 0.08);
}

.formules-block > h3,
.prestations .formules-block > h3 {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--green-dark);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 32px;
    text-align: center;
}

.formules-pricing-grid,
.prestations .formules-pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    max-width: 1100px;
    margin: 0 auto;
}

.pricing-card,
.prestations .pricing-card {
    padding: 30px 28px;
    background: var(--green-dark);
    border: 1px solid var(--gold);
    text-align: left;
    box-shadow: 0 18px 45px rgba(15, 61, 46, 0.12);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover,
.prestations .pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 60px rgba(15, 61, 46, 0.18);
}

.pricing-card:nth-child(even),
.prestations .pricing-card:nth-child(even) {
    background: var(--gold);
    border-color: var(--green-dark);
}

.pricing-card:nth-child(2),
.prestations .pricing-card:nth-child(2) {
    background: var(--gold);
    border-color: var(--green-dark);
    box-shadow: 0 20px 55px rgba(15, 61, 46, 0.18);
}
.pricing-card h4,
.prestations .pricing-card h4 {
    font-family: "Cormorant Garamond", serif;
    font-size: 1.45rem;
    text-transform: uppercase;
    color: var(--beige);
    margin-bottom: 14px;
}

.pricing-card strong,
.prestations .pricing-card strong {
    display: block;
    font-size: 0.75rem;
    color: var(--beige);
    text-transform: uppercase;
    margin-bottom: 14px;
    letter-spacing: 0.05em;
}

.pricing-card:nth-child(even) h4,
.prestations .pricing-card:nth-child(even) h4,
.pricing-card:nth-child(even) strong,
.prestations .pricing-card:nth-child(even) strong {
    color: var(--green-dark);
}

.formule-link {
    margin-top: 6px;
    background: none;
    border: none;
    padding: 0;
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--beige);
    cursor: pointer;
    text-align: left;
    position: relative;
}

.pricing-card:nth-child(even) .formule-link,
.prestations .pricing-card:nth-child(even) .formule-link {
    color: var(--green-dark);
}

.formule-link::after {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background: currentColor;
    margin-top: 4px;
    opacity: 0.5;
    transition: transform 0.3s ease, opacity 0.3s ease;
    transform: scaleX(0.6);
    transform-origin: left;
}

.formule-link:hover::after {
    transform: scaleX(1);
    opacity: 1;
}

/* =========================
   POPUP FORMULE
========================= */

.formule-popup {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.formule-popup.active {
    display: flex;
}

.formule-popup-overlay {
    position: absolute;
    inset: 0;
    background: rgba(15, 61, 46, 0.68);
    backdrop-filter: blur(5px);
}

.formule-popup-content {
    position: relative;
    z-index: 2;
    width: min(620px, 100%);
    max-height: 82vh;
    overflow-y: auto;
    background: var(--beige);
    padding: 34px;
    border: 1px solid var(--border);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.22);
}

.formule-popup-close {
    position: absolute;
    top: 14px;
    right: 16px;
    border: none;
    background: transparent;
    color: var(--green-dark);
    font-size: 2rem;
    cursor: pointer;
}

.formule-popup-content h3 {
    font-family: "Cormorant Garamond", serif;
    font-size: 2.3rem;
    line-height: 0.95;
    text-transform: uppercase;
    color: var(--green-dark);
    margin-bottom: 12px;
}

.formule-popup-content strong {
    display: block;
    font-size: 0.75rem;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 18px;
    letter-spacing: 0.05em;
}

.formule-modal-text {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text);
    text-align: left;
}

.formule-modal-text p,
.formule-modal-text ul,
.formule-modal-text li {
    text-align: left;
}
/* =========================
   REALISATIONS
========================= */

.realisations {
    position: relative;
    width: 100%;
    min-height: 100vh;
    overflow: hidden;
}

.real-bg,
.real-overlay {
    position: absolute;
    inset: 0;
}

.real-bg {
    z-index: 0;
}

.real-bg video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 105%;
    height: 105%;
    object-fit: cover;
    object-position: center center;
    transform: translate(-50%, -50%);
}

.real-overlay {
    z-index: 1;
    background:
        linear-gradient(
            90deg,
            rgba(15, 61, 46, 0.92) 0%,
            rgba(15, 61, 46, 0.65) 40%,
            rgba(15, 61, 46, 0.25) 75%,
            rgba(15, 61, 46, 0.15) 100%
        ),
        linear-gradient(
            180deg,
            rgba(15, 61, 46, 0.12) 0%,
            rgba(15, 61, 46, 0.55) 100%
        );
}

.real-content {
    position: relative;
    z-index: 2;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 120px 0 120px 5%;
    max-width: 620px;
    margin-left: 0;
    text-align: left;
}

.real-eyebrow {
    color: var(--gold);
    margin-bottom: 14px;
}

.real-tag {
    margin-bottom: 14px;
    color: var(--white);
    letter-spacing: 0.18em;
    font-size: 0.72rem;
    text-transform: uppercase;
    font-weight: 600;
}

.real-content h3 {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(2.4rem, 5vw, 4.5rem);
    line-height: 0.95;
    color: var(--white);
    margin-bottom: 18px;
    text-align: left;
}

.real-content p {
    color: rgba(255, 255, 255, 0.88);
    font-size: 1rem;
    line-height: 1.75;
    max-width: 560px;
    margin-bottom: 24px;
}

.real-link {
    color: var(--gold);
    font-weight: 600;
    text-decoration: none;
}

.real-link:hover {
    opacity: 0.7;
}

/* =========================
   AVIS
========================= */

.avis {
    background: var(--white);
}

.avis-slider {
    position: relative;
}

.avis-slide {
    display: none;
    background: var(--soft-bg);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 34px 28px;
    text-align: center;
    min-height: 240px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.avis-slide.active {
    display: flex;
    animation: fadeIn 0.6s ease;
}

.quote-icon {
    width: 42px;
    height: 42px;
    margin: 0 auto 18px;
}

.quote-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.avis-slide p {
    font-family: "Playfair Display", serif;
    font-size: clamp(1rem, 2vw, 1.4rem);
    line-height: 1.6;
    color: var(--green-dark);
    max-width: 680px;
    margin: 0 auto;
    text-align: center;
}

.avis-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    border: none;
    background: rgba(15, 61, 46, 0.18);
    cursor: pointer;
}

.dot.active {
    background: var(--gold);
}
/* =========================
   CONTACT — FORMULAIRE DEVIS
========================= */

.contact {
    background: var(--white);
    padding: 90px 0;
}

.contact .container.narrow {
    width: min(820px, 92%);
    margin: 0 auto;
}

.contact-form {
    background: var(--white);
    padding: 34px;
    border-radius: 26px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    border: 1px solid rgba(15, 61, 46, 0.16);
    background: var(--white);
    border-radius: 16px;
    padding: 14px 16px;
    font-size: 0.92rem;
    font-family: inherit;
    color: var(--text);
    outline: none;
}

.contact-form textarea {
    min-height: 140px;
    resize: vertical;
}

.input-group {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.input-group label {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--green-dark);
}

.contact-submit {
    width: 100%;
    justify-content: center;
    margin-top: 6px;
}

.contact-success {
    background: #eef8f1;
    color: var(--green-dark);
    border: 1px solid rgba(15, 61, 46, 0.14);
    padding: 14px 18px;
    border-radius: 16px;
    margin-bottom: 18px;
    text-align: center;
}

/* MOBILE */
@media (max-width: 700px) {
    .contact {
        padding: 70px 0;
    }

    .contact-form {
        padding: 24px;
        border-radius: 22px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 14px;
    }
}
/* FIX CONTACT MOBILE */
.contact-form,
.contact-form * {
    box-sizing: border-box;
}

.contact-form input,
.contact-form textarea,
.contact-form select,
.input-group,
.form-row {
    max-width: 100%;
}

@media (max-width: 700px) {
    .contact .container.narrow {
        width: 92%;
        max-width: 92%;
    }

    .contact-form {
        width: 100%;
        padding: 24px 18px;
        overflow: hidden;
    }

    .form-row {
        display: grid;
        grid-template-columns: 1fr;
        gap: 16px;
        width: 100%;
    }

    .input-group {
        width: 100%;
    }

    .contact-form input,
    .contact-form textarea {
        width: 100%;
        min-width: 0;
        height: 58px;
        padding: 14px 16px;
        font-size: 16px;
        border-radius: 18px;
    }

    .contact-form textarea {
        height: 180px;
        min-height: 180px;
    }

    .input-group input[type="date"],
    .input-group input[type="time"] {
        display: block;
        width: 100%;
        min-width: 0;
        max-width: 100%;
        appearance: none;
        -webkit-appearance: none;
    }

    .contact-submit {
        width: 100%;
        height: 58px;
        border-radius: 999px;
        font-size: 16px;
    }
}
/* =========================
   MODALES
========================= */

.modal,
.prestation-modal {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 20px;
}

.modal.open,
.prestation-modal.active {
    display: flex;
}

.modal-backdrop,
.prestation-modal .modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(9, 19, 15, 0.6);
    backdrop-filter: blur(4px);
}

.modal-content,
.prestation-modal .modal-content {
    position: relative;
    z-index: 2;
    background: var(--white);
    width: min(700px, 100%);
    max-height: 82vh;
    overflow-y: auto;
    border-radius: 22px;
    padding: 36px;
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.18);
    text-align: left;
    animation: modalZoom 0.35s ease;
}

.modal-content .eyebrow {
    color: var(--gold);
}

.modal-content h3,
.prestation-modal .modal-text h3 {
    font-family: "Playfair Display", serif;
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    color: var(--green-dark);
    margin-bottom: 14px;
    line-height: 1.15;
    text-align: left;
}

.modal-text,
#modal-description {
    color: var(--text);
    margin-bottom: 22px;
    font-size: 0.94rem;
    line-height: 1.7;
    text-align: left;
}

.modal-text li {
    margin-bottom: 8px;
}

.modal-close,
.prestation-modal .modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 38px;
    height: 38px;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: var(--white);
    color: var(--green-dark);
    font-size: 1.4rem;
    cursor: pointer;
}

.modal-btn {
    margin-top: 8px;
}

.prestation-modal .modal-image {
    height: 140px;
    border-radius: 14px;
    overflow: hidden;
    margin-bottom: 16px;
}

.prestation-modal .modal-image-inner {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

#modal-price {
    color: var(--gold);
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 14px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}
/* =========================
   FOOTER GLOBAL
========================= */

.site-footer {
    background: var(--theme-footer-bg);
    color: var(--theme-footer-text);
    padding: 54px 0 28px;
    position: relative;
    z-index: 1;
}

.footer-container {
    width: min(1180px, 92%);
    margin: 0 auto;
}

.footer-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding-bottom: 26px;
    margin-bottom: 24px;
    border-bottom: 1px solid var(--theme-footer-border);
    text-align: left;
}

.footer-brand {
    max-width: 420px;
}

.footer-logo {
    display: inline-block;
    font-family: "Cormorant Garamond", serif;
    font-size: 1.9rem;
    font-weight: 700;
    color: var(--theme-footer-text);
    text-decoration: none;
    margin-bottom: 10px;
}

.footer-brand p {
    margin: 0;
    color: var(--theme-footer-text);
    opacity: 0.82;
    line-height: 1.6;
    font-size: 0.95rem;
    text-align: left;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-links a,
.footer-bottom a {
    color: var(--theme-footer-text);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover,
.footer-bottom a:hover {
    color: var(--theme-footer-hover);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    flex-wrap: wrap;
    font-size: 0.92rem;
    text-align: left;
}

.footer-bottom p {
    margin: 0;
    opacity: 0.88;
}

.bottom-banner {
    width: 100%;
    height: 38px;
    background-image: url("/wp-content/uploads/2026/05/tissu.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* =========================
   PAGE MOMENTS
========================= */

.theme-moment {
    background: #fff8f4;
}

.theme-moment section {
    position: relative;
}

.theme-moment .section {
    padding: 110px 0;
}

.theme-moment .container {
    width: min(1180px, 92%);
    margin: 0 auto;
}

.theme-moment .narrow {
    width: min(820px, 92%);
    margin: 0 auto;
}

.theme-moment .btn-moment {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--moment-accent);
    color: var(--moment-white);
    border-radius: 999px;
    padding: 14px 30px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s ease;
}

.theme-moment .btn-moment:hover {
    background: var(--moment-primary);
    transform: translateY(-2px);
}

.theme-moment h2 {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(2.4rem, 4vw, 4.2rem);
    line-height: 1;
    color: var(--moment-primary);
    margin-bottom: 18px;
    text-align: center;
}

.theme-moment .section-heading {
    text-align: center;
    margin-bottom: 46px;
}

.theme-moment .section-heading p {
    color: rgba(78, 36, 48, 0.72);
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    line-height: 1.8;
}

.theme-moment .eyebrow {
    display: inline-block;
    color: var(--moment-soft);
    letter-spacing: 0.2em;
    font-size: 0.78rem;
    text-transform: uppercase;
    margin-bottom: 14px;
}

/* HERO */

.theme-moment .hero-moment {
    min-height: 78vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--moment-white);
    background: var(--moment-primary);
    overflow: hidden;
}

.theme-moment .hero-video {
    position: absolute;
    inset: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.theme-moment .hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: rgba(0, 0, 0, 0.42);
}

.theme-moment .hero-content {
    position: relative;
    z-index: 3;
    max-width: 860px;
    color: var(--moment-white);
    text-align: center;
}

.theme-moment .hero-moment .eyebrow {
    color: rgba(255, 255, 255, 0.8);
}

.theme-moment .hero-moment h1 {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(3.4rem, 7vw, 6.5rem);
    line-height: 0.92;
    font-weight: 600;
    margin-bottom: 22px;
    color: var(--moment-white);
}

.theme-moment .hero-moment p {
    max-width: 720px;
    margin: 0 auto 30px;
    font-size: 1.05rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.92);
}

/* ABOUT */

.theme-moment .moment-about {
    padding: 70px 0 120px;
    background: linear-gradient(180deg, #fff8f4 0%, #fbefe7 100%);
    text-align: center;
}

.theme-moment .moment-about-centered {
    max-width: 820px;
    margin: 0 auto;
    padding: 58px 54px;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(210, 84, 122, 0.18);
    box-shadow: 0 30px 80px rgba(78, 36, 48, 0.09);
}

.theme-moment .moment-about-centered h2 {
    font-size: clamp(3rem, 5vw, 5rem);
    margin-bottom: 30px;
}

.theme-moment .moment-about-content {
    max-width: 620px;
    margin: 0 auto;
    text-align: center;
}

.theme-moment .moment-about-content h3 {
    font-family: "Cormorant Garamond", serif;
    font-size: 1.9rem;
    color: var(--moment-primary);
    margin: 26px 0 10px;
}

.theme-moment .moment-about-content p,
.theme-moment .moment-about-content li {
    font-size: 1rem;
    line-height: 1.9;
    color: rgba(78, 36, 48, 0.78);
}

.theme-moment .moment-about-content ul {
    list-style: none;
    padding: 0;
    margin: 22px 0;
}

.theme-moment .moment-about-content li {
    margin-bottom: 12px;
}

.theme-moment .moment-about-content li::after {
    content: "•";
    display: block;
    color: var(--moment-primary);
    margin-top: 8px;
}

.theme-moment .moment-about-content li:last-child::after {
    display: none;
}

.theme-moment .moment-about-age {
    margin-top: 26px;
    padding-top: 24px;
    border-top: 1px solid rgba(78, 36, 48, 0.12);
}

/* GALERIE */

.theme-moment .moment-gallery {
    background: #fff8f4;
    padding-top: 100px;
}

.theme-moment .gallery-text {
    max-width: 760px;
    margin: 20px auto 0;
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(78, 36, 48, 0.78);
    text-align: center;
}

.theme-moment .gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
    margin-top: 54px;
}

.theme-moment .gallery-grid img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    display: block;
}

/* AVIS */

.theme-moment .moment-avis {
    background: #f5eadf;
    text-align: center;
}

.theme-moment .moment-avis-slider {
    max-width: 760px;
    margin: 0 auto;
    min-height: 180px;
    position: relative;
}

.theme-moment .moment-avis-slide {
    display: none;
}

.theme-moment .moment-avis-slide.active {
    display: block;
}

.theme-moment .moment-avis-slide p {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    line-height: 1.35;
    color: var(--moment-primary);
    text-align: center;
}

/* RÉSERVATION */

.theme-moment .moment-reservation {
    background: #fff8f4;
    text-align: center;
}

.theme-moment .reservation-flyer {
    width: min(370px, 90%);
    margin: 0 auto 34px;
}

.theme-moment .reservation-flyer img {
    width: 100%;
    display: block;
    box-shadow: 0 24px 60px rgba(78, 36, 48, 0.14);
}

.theme-moment .reservation-action {
    text-align: center;
}

.theme-moment .reservation-note {
    max-width: 560px;
    margin: 26px auto 0;
    font-size: 0.9rem;
    line-height: 1.8;
    color: rgba(78, 36, 48, 0.68);
}

/* RESPONSIVE */

@media (max-width: 900px) {
    .theme-moment .section {
        padding: 80px 0;
    }

    .theme-moment .hero-moment {
        min-height: 72vh;
    }

    .theme-moment .gallery-grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .theme-moment .gallery-grid img {
        height: 340px;
    }
}

@media (max-width: 600px) {
    .theme-moment .hero-moment {
        min-height: 68vh;
        padding: 90px 0;
    }

    .theme-moment .hero-moment h1 {
        font-size: 3.1rem;
    }

    .theme-moment .hero-moment p {
        font-size: 0.95rem;
    }

    .theme-moment .moment-about-centered {
        padding: 42px 24px;
    }

    .theme-moment .moment-about-content h3 {
        font-size: 1.6rem;
    }

    .theme-moment .gallery-grid img {
        height: 300px;
    }

    .theme-moment .moment-avis-slide p {
        font-size: 1.8rem;
    }
}
/* =========================
   ANIMATIONS
========================= */

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes modalZoom {
    from {
        opacity: 0;
        transform: scale(0.94) translateY(18px);
    }

    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

@keyframes gallerySlide {
    0%, 28% {
        transform: translateX(0);
    }

    33%, 61% {
        transform: translateX(-100%);
    }

    66%, 94% {
        transform: translateX(-200%);
    }

    100% {
        transform: translateX(0);
    }
}
/* =========================
   FIX PAGE MOMENTS
========================= */

/* ABOUT mieux centré */
.theme-moment .moment-about-centered {
    width: min(820px, 92%);
    margin: 0 auto;
    text-align: center;
}

.theme-moment .moment-about-content {
    max-width: 680px;
    margin: 0 auto;
}

.theme-moment .moment-about-content ul {
    list-style: none;
    padding: 0;
    margin: 26px auto;
}

.theme-moment .moment-about-content li {
    text-align: center;
    margin: 0 auto 18px;
}

.theme-moment .moment-about-content li::after {
    content: "✦";
    display: block;
    color: var(--moment-primary);
    font-size: 0.75rem;
    margin-top: 14px;
}

.theme-moment .moment-about-content li:last-child::after {
    display: none;
}

/* AVIS moins énorme */
.theme-moment .moment-avis {
    padding: 80px 0;
}

.theme-moment .moment-avis-slider {
    max-width: 720px;
    min-height: auto;
}

.theme-moment .moment-avis-slide p {
    font-size: clamp(1.45rem, 2.4vw, 2.15rem);
    line-height: 1.45;
}

/* FOOTER rose moments */
body.theme-moment .site-footer {
    background: var(--moment-primary);
    color: var(--moment-white);
}

body.theme-moment .site-footer a,
body.theme-moment .site-footer p,
body.theme-moment .site-footer small {
    color: var(--moment-white);
}

body.theme-moment .site-footer {
    border-top: none;
}
/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1000px) {

    .services-list {
        grid-template-columns: repeat(2, 1fr);
    }

    .options-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .theme-moment .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media (max-width: 900px) {

    .site-header-inner {
        padding: 16px 20px;
        grid-template-columns: 1fr auto;
        gap: 16px;
    }

    .site-logo {
        font-size: 1.6rem;
    }

    .hero {
        min-height: 70vh;
    }

    .hero-content {
        max-width: 90%;
        padding: 80px 20px 60px;
    }

    .hero-text {
        font-size: 0.9rem;
        line-height: 1.65;
    }

    .intro {
        padding: 50px 18px;
    }

    .prestations {
        padding: 70px 0 90px;
    }

    .services-header {
        margin-bottom: 36px;
        padding: 0 18px;
    }

    .services-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 28px;
    }

    .options-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 22px;
    }

    .formules-pricing-grid,
    .prestations .formules-pricing-grid {
        grid-template-columns: 1fr;
    }

    .theme-moment .section {
        padding: 80px 0;
    }

    .theme-moment .gallery-grid {
        display: flex;
        overflow: hidden;
        gap: 0;
        width: 100%;
    }

    .theme-moment .gallery-grid img {
        min-width: 100%;
        width: 100%;
        height: 420px;
        object-fit: cover;
        flex-shrink: 0;
        animation: gallerySlide 15s infinite;
    }

}

@media (max-width: 760px) {

    .site-header {
        position: sticky;
        top: 0;
        z-index: 3000;
    }

    .site-header-inner {
        display: grid;
        grid-template-columns: 1fr auto 1fr;
        align-items: center;
        padding: 14px 18px;
        text-align: center;
    }

    .site-logo {
        grid-column: 2;
        justify-self: center;
    }

    .site-logo img {
        height: 54px;
    }

    .site-nav,
    .header-whatsapp {
        display: none;
    }

    .menu-toggle {
        display: block;
        grid-column: 3;
        justify-self: end;
    }

    .mobile-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        z-index: 3001;
        background: var(--white);
        border-top: 1px solid var(--border);
        padding: 28px 20px 32px;
        box-shadow: 0 18px 45px rgba(15, 61, 46, 0.12);
    }

    .mobile-menu.active {
        display: block;
    }

    .mobile-nav {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 22px;
    }

    .mobile-nav a {
        color: var(--text);
        text-decoration: none;
        font-size: 0.95rem;
        text-transform: uppercase;
        letter-spacing: 0.08em;
    }

    .mobile-whatsapp {
        margin-top: 10px;
        background: var(--green-dark);
        color: var(--white) !important;
        padding: 13px 22px;
        border-radius: 999px;
    }

    body.theme-moment .mobile-menu {
        background: var(--moment-bg);
        border-top: 1px solid rgba(110, 44, 58, 0.08);
    }

    body.theme-moment .mobile-nav a {
        color: var(--moment-text);
    }

    body.theme-moment .mobile-whatsapp {
        background: var(--moment-primary);
        color: var(--moment-white) !important;
    }

    .footer-top,
    .footer-bottom {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-brand,
    .footer-brand p,
    .footer-bottom p {
        text-align: center;
    }

    .footer-links {
        justify-content: center;
        gap: 14px 20px;
    }

}

@media (max-width: 640px) {

    .section,
    .theme-moment .section {
        padding: 64px 0;
    }

    .services-list,
    .options-grid,
    .formules-pricing-grid {
        grid-template-columns: 1fr;
    }

    .hero {
        min-height: 68vh;
    }

    .hero-content {
        max-width: 100%;
        padding: 70px 18px 55px;
    }

    .hero-content h1 {
        font-size: clamp(1.9rem, 9vw, 2.55rem);
        line-height: 1.12;
        margin-bottom: 14px;
    }

    .hero-text {
        max-width: 100%;
        font-size: 0.88rem;
        line-height: 1.65;
        margin-bottom: 22px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 260px;
    }

    .service-image {
        height: 220px;
    }

    .real-content {
        min-height: 85vh;
        height: auto;
        justify-content: flex-end;
        padding: 120px 7% 60px;
    }

    .contact-form {
        padding: 22px;
    }

    .contact-form .form-row,
    .contact-form .form-row-time,
    .contact-form .form-row-people {
        grid-template-columns: 1fr;
    }

}

@media (max-width: 420px) {

    .services-list,
    .options-grid,
    .formules-pricing-grid {
        grid-template-columns: 1fr;
    }

}

@media (max-width: 380px) {

    .site-logo {
        font-size: 1.35rem;
    }

    .hero {
        min-height: 64vh;
    }

    .hero-content {
        padding: 60px 14px 48px;
    }

    .hero-content h1 {
        font-size: 1.75rem;
    }

    .hero-text {
        font-size: 0.84rem;
    }

}

