/* =========================================
   PALETTE "SOFT GLOW" & VARIABLES
   ========================================= */
:root {
    --bg-main: #fdfcfb;      /* Blanc cassé ultra lumineux */
    --bg-cream: #f6f0eb;     /* Beige crème doux */
    --bg-card: #ffffff;      /* Blanc pur pour les cartes */
    --nude-accent: #dcbba8;  /* Nude chaud (boutons, liens) */
    --nude-hover: #cfa692;   /* Nude plus foncé pour le survol */
    --pink-light: #faddd7;   /* Rose poudré très léger */
    --text-dark: #5c4f45;    /* Marron glacé */
    --text-light: #8a7d75;   /* Taupe clair */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
}

/* =========================================
   RESETS ET BASE
   ========================================= */
* { margin: 0; padding: 0; box-sizing: border-box; scroll-behavior: smooth; }

body {
    background-color: var(--bg-main);
    color: var(--text-dark);
    font-family: var(--font-body);
    line-height: 1.7;
    overflow-x: hidden;
}

.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }
.text-center { text-align: center; }

/* =========================================
   HEADER ET NAVIGATION
   ========================================= */
header {
    display: flex; justify-content: space-between; align-items: center;
    padding: 20px 40px; background: rgba(253, 252, 251, 0.95);
    position: sticky; top: 0; z-index: 1000;
    border-bottom: 1px solid rgba(220, 187, 168, 0.3);
    backdrop-filter: blur(5px);
}
.logo { font-family: var(--font-heading); font-size: 1.5rem; font-weight: 600; letter-spacing: 2px; color: var(--text-dark); }
nav { display: flex; align-items: center; gap: 25px; }
nav a { color: var(--text-dark); text-decoration: none; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1px; transition: 0.3s; font-weight: 500; }
nav a:hover { color: var(--nude-accent); }
.btn-nav { background: var(--nude-accent); color: #fff !important; padding: 10px 25px; border-radius: 30px; transition: 0.3s; }
.btn-nav:hover { background: var(--nude-hover); }

/* =========================================
   HERO SECTION
   ========================================= */
.hero {
    height: 85vh; display: flex; align-items: center; justify-content: center; text-align: center;
    background: linear-gradient(135deg, var(--bg-main) 0%, var(--pink-light) 100%);
    padding: 0 20px;
}
.hero h1 { font-family: var(--font-heading); font-size: 4.2rem; line-height: 1.15; margin-bottom: 25px; color: var(--text-dark); }
.hero h1 span { color: var(--nude-accent); font-style: italic; }
.hero p { font-size: 1.1rem; color: var(--text-light); margin-bottom: 40px; max-width: 550px; margin-left: auto; margin-right: auto; }

/* BOUTONS */
.btn-nude {
    background: var(--nude-accent); color: #fff; padding: 16px 40px; text-decoration: none;
    font-weight: 600; text-transform: uppercase; letter-spacing: 1px; border: none; border-radius: 30px;
    cursor: pointer; transition: all 0.3s ease; display: inline-block;
    box-shadow: 0 8px 20px rgba(220, 187, 168, 0.4);
}
.btn-nude:hover { background: var(--nude-hover); transform: translateY(-3px); box-shadow: 0 12px 25px rgba(220, 187, 168, 0.5); }

/* =========================================
   SECTIONS GÉNÉRALES
   ========================================= */
.section-light { background-color: var(--bg-main); padding: 90px 0; }
.section-cream { background-color: var(--bg-cream); padding: 90px 0; }
.section-title { font-family: var(--font-heading); font-size: 2.8rem; margin-bottom: 15px; color: var(--text-dark); }
.section-title span { color: var(--nude-accent); font-style: italic; }
.subtitle { color: var(--text-light); margin-bottom: 60px; font-size: 1.05rem; }

/* =========================================
   SECTION QUI JE SUIS (ABOUT)
   ========================================= */
.about-wrapper { display: flex; align-items: center; gap: 60px; justify-content: center; }
.about-text { flex: 1; max-width: 500px; }
.desc-text { color: var(--text-light); margin-bottom: 20px; font-size: 1.05rem; }
.about-image { flex: 1; display: flex; justify-content: center; }
.placeholder-img {
    width: 100%; max-width: 400px; height: 500px;
    background: var(--pink-light);
    border-radius: 20px;
    display: flex; align-items: center; justify-content: center; text-align: center;
    color: var(--nude-hover); font-weight: 500; font-style: italic;
    border: 2px dashed var(--nude-accent);
    box-shadow: 0 15px 30px rgba(220, 187, 168, 0.2);
}

/* =========================================
   CARTES DE SERVICES
   ========================================= */
.grid-services { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 35px; }
.service-card {
    background: var(--bg-card); padding: 45px 35px; border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
    transition: all 0.3s ease; border: 1px solid transparent; text-align: left;
}
.service-card:hover { transform: translateY(-8px); border-color: var(--pink-light); box-shadow: 0 15px 40px rgba(220, 187, 168, 0.2); }
.service-card h3 { font-family: var(--font-heading); font-size: 1.6rem; margin-bottom: 8px; color: var(--text-dark); }
.price { color: var(--nude-accent); font-weight: 600; font-size: 1.15rem; margin-bottom: 15px; }
.desc { color: var(--text-light); margin-bottom: 30px; font-size: 0.95rem; }
.link-nude { color: var(--nude-accent); text-decoration: none; font-weight: 600; text-transform: uppercase; font-size: 0.85rem; letter-spacing: 1px; transition: 0.3s; }
.link-nude:hover { color: var(--text-dark); }

/* =========================================
   INFOS IMPORTANTES
   ========================================= */
.info-box { background: var(--bg-card); padding: 50px; border-radius: 20px; box-shadow: 0 15px 40px rgba(0,0,0,0.05); text-align: left; }
.info-list { list-style-type: none; color: var(--text-dark); }
.info-list li { margin-bottom: 20px; font-size: 1.05rem; padding-bottom: 15px; border-bottom: 1px solid var(--bg-cream); }
.info-list li:last-child { margin-bottom: 0; padding-bottom: 0; border-bottom: none; }
.info-list strong { color: var(--nude-accent); }

/* =========================================
   RÉSERVATION ZCAL
   ========================================= */
.booking-card { background: var(--bg-card); border-radius: 20px; box-shadow: 0 20px 50px rgba(220, 187, 168, 0.2); margin: 0 auto; }
.zcal-container { width: 100%; height: 600px; border-radius: 15px; overflow: hidden; background: #fafafa; border: 1px solid #eee; }
.form-note { font-size: 0.8rem; color: var(--text-light); text-align: center; margin-top: 25px; font-style: italic; }

/* =========================================
   FOOTER
   ========================================= */
footer { background: var(--bg-cream); text-align: center; padding: 40px 20px; font-size: 0.9rem; color: var(--text-light); border-top: 1px solid rgba(220, 187, 168, 0.3); }

/* =========================================
   📱 RESPONSIVE (OPTIMISATION MOBILE)
   ========================================= */
@media (max-width: 768px) {
    /* Header & Nav */
    header { flex-direction: column; padding: 15px; }
    .logo { margin-bottom: 15px; }
    nav { flex-wrap: wrap; justify-content: center; gap: 12px; }
    nav a { font-size: 0.8rem; }
    .hide-mobile { display: none; } /* Cache le bouton "Prendre RDV" du menu pour éviter l'encombrement */

    /* Hero */
    .hero { height: auto; padding: 80px 20px; }
    .hero h1 { font-size: 2.8rem; }
    .hero p { font-size: 1rem; margin-bottom: 30px; }

    /* Sections Générales */
    .section-light, .section-cream { padding: 60px 0; }
    .section-title { font-size: 2.2rem; }
    .subtitle { margin-bottom: 40px; font-size: 0.95rem; }

    /* About Section */
    .about-wrapper { flex-direction: column; gap: 40px; text-align: center; }
    .about-text { max-width: 100%; }
    .placeholder-img { height: 350px; }

    /* Services Grid */
    .grid-services { grid-template-columns: 1fr; gap: 20px; }
    .service-card { padding: 30px 25px; }

    /* Info Box */
    .info-box { padding: 30px 20px; }
    .info-list li { font-size: 0.95rem; }

    /* Zcal Container */
    .booking-card { padding: 25px 15px !important; }
    .zcal-container { height: 500px; } /* Ajuste la hauteur de l'iframe sur mobile */
}