:root {
  --fond-site: #ecdcc8;
  --jaune: #F4D35E;
  --orange-1: #E8A35D;
  --orange-2: #D97A2B;
  --rouge: #8C1D18;
  --noir: #1E1E1E;
}
* {
  box-sizing: border-box;
}
/* Cache la barre mobile par défaut (desktop) */
.mobile-bottom-bar {
  display: none;
}
.site-header {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}
/* =====================
   BASE DU SITE
===================== */

body {
  margin: 0;
  background-color: #ecdcc8;
  color: var(--rouge);
  font-family: inherit;
}
h1, h2, h3 {
  color: var(--noir);
}

/* =====================
   HEADER (logo + titre)
===================== */

.site-header {
  background: linear-gradient(90deg, var(--orange-1), var(--orange-2));
  padding: 20px;
}
.site-header.compact {
  padding: 8px 20px; /* beaucoup moins haut */
}
.header-content {
  display: flex;
  align-items: center;
  justify-content: center; /* CENTRÉ */
  gap: 16px;
}

.logo {
  height: 300px;
  width : auto;
}

.site-title {
  margin: 0; /* IMPORTANT */
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  color: #2f2a26;
}


/* =====================
   MENU (JAUNE)
===================== */

.main-nav {
  background-color: #F7E6B5; /* JAUNE CLAIR */
  padding: 12px 0;
  display: flex;
  justify-content: center;
  gap: 30px;
}

.main-nav a {
  color: var(--rouge);
  text-decoration: none;
  margin: 0 15px;
  font-weight: 500;
}

.main-nav a:hover {
  text-decoration: underline;
}


/* =====================
   CONTENU PRINCIPAL
===================== */

main {
  padding: 40px;
}


/* =====================
   ZONE BIENVENUE (JAUNE)
===================== */

.bienvenue-box {
  background-color: #F7E6B5; /* JAUNE CLAIR */
  padding: 30px;
  border-radius: 12px;
  max-width: 900px;
}
/* =======================
   CONTENU PAGE (APRÈS MENU)
======================= */
.page-content {
  padding: 60px 0;
}
/* SECTION JAUNE */
.yellow-section {
  max-width: 1100px;
  margin: 0 auto;
  background-color: #F4D35E; /* JAUNE */
  border-radius: 16px;
  padding: 40px;
  display: flex;
  gap: 40px;
  align-items: center;
}

/* TEXTE */
.yellow-text {
  flex: 1;
}

.yellow-text h2 {
  margin-top: 0;
  font-size: 32px;
  color: #3A2E2A;
}

.yellow-text p {
  line-height: 1.6;
}

/* IMAGE */
.yellow-image {
  flex: 1;
}

.yellow-image img {
  width: 100%;
  border-radius: 12px;
}

/* BOUTON */
.btn {
  background-color: var(--rouge);
  color: white;
  padding: 12px 24px;
  border-radius: 25px;
  text-decoration: none;
  display: inline-block;
}
.btn:hover {
  opacity: 0.9;
}
/* SECTION TEXTE JAUNE */

.section-jaune {
  background-color: #F4D35E; /* jaune doux */
  padding: 60px 20px;
}

.contenu-texte {
  max-width: 900px;
  margin: 0 auto;
  color: #3A2E2A;
  line-height: 1.7;
}

/* second titre */
.sous-titre {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 25px;
}

/* paragraphes */
.contenu-texte p {
  margin-bottom: 20px;
  font-size: 16px;
}
/* SECTION JAUNE PRINCIPALE */

.section-jaune {
  background-color: #F4D35E;
  padding: 70px 20px;
}

.contenu-texte {
  max-width: 900px;
  margin: 0 auto;
  color: #3A2E2A;
  line-height: 1.8;
}

/* grand titre */
.titre-principal {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 30px;
}

/* sous-titre */
.sous-titre {
  font-size: 24px;
  font-weight: 600;
  margin: 40px 0 20px;
}

/* paragraphes */
.contenu-texte p {
  font-size: 16px;
  margin-bottom: 18px;
}

/* bouton */
.bouton-contact {
  display: inline-block;
  margin-top: 40px;
  padding: 14px 28px;
  background-color: #E07A2F;
  color: #000;
  text-decoration: none;
  font-weight: 600;
  border-radius: 6px;
}

.bouton-contact:hover {
  background-color: #cc6a24;
}
/* FOND CRÈME GLOBAL */
.fond-orange {
  background-color: #ECDCC8;
  padding: 60px 20px;
}

/* BLOC JAUNE ARRONDI */
.bloc-jaune {
  background-color: #F4D35E; /* vrai jaune doux */
  padding: 50px;
  border-radius: 24px;
  max-width: 1000px;
  margin: 0 auto;
  margin-bottom: 40px;
}

/* TITRES */
.titre-principal {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 30px;
}

.sous-titre {
  font-size: 24px;
  font-weight: 600;
  margin: 40px 0 20px;
}

/* TEXTE */
.bloc-jaune p {
  font-size: 16px;
  margin-bottom: 18px;
}

/* BOUTON */
.bouton-contact {
  display: inline-block;
  margin-top: 40px;
  padding: 14px 28px;
  background-color: #E07A2F;
  color: #000;
  text-decoration: none;
  font-weight: 600;
  border-radius: 6px;
}

.bouton-contact:hover {
  background-color: #cc6a24;
}
/* disposition texte + photo */
.contenu-approche {
  display: flex;
  gap: 40px;
  align-items: center;
}

/* texte */
.texte-approche {
  flex: 1;
}

/* photo */
.photo-approche {
  flex: 1;
  text-align: center;
}

.photo-approche img {
  max-width: 100%;
  height: auto;
  border-radius: 20px;
}
/* FORÇAGE DU DÉGRADÉ DU HEADER */
.site-header {
  background: linear-gradient(to right, #F7E2C9, #E07A2F) !important;
}
/* ===== PAGE MES ACCOMPAGNEMENTS ===== */

.accompagnements-section {
  padding: 60px 20px;
}

.accompagnements-box {
  background-color: #F4D35E; /* jaune */
  max-width: 900px;
  margin: 0 auto;
  padding: 40px;
  border-radius: 25px;
}

.accompagnements-box h1 {
  margin-top: 0;
  font-size: 36px;
}

.accompagnements-box p {
  font-size: 18px;
  line-height: 1.6;
}

/* bouton */
.btn-principal {
  display: inline-block;
  margin-top: 30px;
  padding: 12px 24px;
  background-color: #E07A2F;
  color: #000;
  text-decoration: none;
  border-radius: 20px;
  font-weight: 500;
}

.btn-principal:hover {
  opacity: 0.9;
}
/* =========================
   PAGE À PROPOS
========================= */

.apropos-section {
  padding: 60px 0;
}

.apropos-container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  gap: 40px;
  padding: 0 20px;
}

/* Bloc texte jaune */
.apropos-texte {
  border-radius: 20px;
  padding: 40px;
  flex: 1;
}

.apropos-texte h1 {
  margin-top: 0;
  font-size: 32px;
  color: var(--noir);
}

.apropos-texte h2 {
  font-size: 20px;
  margin-bottom: 20px;
  font-weight: normal;
  color: var(--noir);
}

.apropos-texte p {
  line-height: 1.6;
  margin-bottom: 16px;
}

/* Zone photo (vide pour l’instant) */
.apropos-photo {
  flex: 1;
  border-radius: 20px;
  background-color: #ddd;
  min-height: 400px;
}
.contact-section {
  padding: 60px 20px;
}

.contact-box {
  background-color: #F4D35E;
  max-width: 900px;
  margin: auto;
  padding: 40px;
  border-radius: 20px;
}

.contact-box h1 {
  margin-top: 0;
}

form {
  margin-top: 30px;
}

.form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  flex: 1;
  display: flex;
  flex-direction: column;
}

input,
textarea {
  padding: 10px;
  border-radius: 6px;
  border: none;
  font-size: 14px;
}

textarea {
  resize: vertical;
}

.btn-principal {
  background-color: #E58A2A;
  color: #000;
  border: none;
  padding: 12px 30px;
  border-radius: 25px;
  cursor: pointer;
  font-size: 15px;
}

.btn-principal:hover {
  opacity: 0.9;
}
.site-footer {
  background-color: #f2f2f2;
  text-align: center;
  padding: 20px;
  font-size: 14px;
}

.site-footer a {
  color: #333;
  text-decoration: none;
}

.site-footer a:hover {
  text-decoration: underline;
}
.cgv-section {
  padding: 60px 20px;
}

.cgv-box {
  background-color: #F4D35E;
  max-width: 900px;
  margin: auto;
  padding: 40px;
  border-radius: 20px;
}

.cgv-box h1 {
  margin-top: 0;
}

.cgv-box h2 {
  margin-top: 30px;
}
/* ===============================
   BOUTONS PRENDRE RENDEZ-VOUS
================================ */

.btn-rdv {
  display: inline-block;
  margin-top: 16px;
  padding: 12px 24px;

  background-color: var(--orange-1);
  color: white;

  text-decoration: none;
  font-weight: 600;
  font-size: 15px;

  border-radius: 30px;
  cursor:pointer;

  transition:background-color 0.3s ease, transform 0.2s ease;
}
.btn-rdv:hover {
  background-color: var(--orange-2);
  transform: translateY(-2px);
}
/* ===========================
   BOUTONS PRENDRE RDV (FORCE)
   =========================== */

a.btn-rdv {
  display: inline-block;
  margin-top: 16px;
  padding: 12px 24px;

  background-color: var(--orange-1) !important;
  color: var(--noir) !important;

  text-decoration: none !important;
  font-weight: 600;
  font-size: 15px;

  border-radius: 30px;
  cursor: pointer;

  border: none !important;

  transition: background-color 0.3s ease, transform 0.2s ease;
}

a.btn-rdv:hover {
  background-color: var(--orange-2) !important;
  transform: translateY(-2px);
}
/* =========================
   BLOCS OFFRES (texte + image)
========================= */

.bloc-offre {
  background-color: var(--jaune);
  border-radius: 24px;
  padding: 32px;
  margin: 40px auto;
  max-width: 1100px;

  display: flex;
  align-items: center;
  gap: 32px;
}

.bloc-offre.reverse {
  flex-direction: row-reverse;
}

.bloc-offre-texte {
  flex: 1;
}

.bloc-offre-texte h2 {
  margin-top: 0;
}

.bloc-offre-image {
  flex: 0 0 200px auto;
  text-align: center;
}

.bloc-offre-image img {
  width: 200px;
  max-width: 100%;
  height: auto;
  border-radius: 20px;
}

/* Responsive mobile */
@media (max-width: 768px) {
  .bloc-offre,
  .bloc-offre.reverse {
    flex-direction: column;
  }
}
/* HEADER COMPACT (pages internes) */
.site-header.compact {
  padding: 12px 20px;
}

.site-header.compact .logo {
  height: 70px;
}

.site-header.compact .site-title {
  font-size: 26px;
}
.site-header.compact .header-content {
  align-items: flex-start;
}
/* ================================
   HEADER COMPACT (Future / Jeune maman)
   ================================ */

.site-header.compact {
  padding: 8px 20px;
  max-height: 140px;
  overflow: hidden;
}

.site-header.compact .header-content {
  align-items: flex-start;
}
.photo-approche {
  width: 320px;
  height: auto;
  border-radius: 20px;
}
/* ===== A PROPOS ===== */

.apropos-contenu {
  display: flex;
  align-items: center;
  gap: 40px;
}

.apropos-texte {
  flex: 2;
}

.apropos-image {
  flex: 1;
  text-align: left;
}

.apropos-image img {
  max-width: 260px;
  height: auto;
  border-radius: 20px;
}

/* Mobile */
@media (max-width: 768px) {
  .apropos-contenu {
    flex-direction: column;
    text-align: center;
  }

  .apropos-image img {
    max-width: 200px;
  }
}
/* PAGE A PROPOS – TITRES */
.apropos-bloc h1 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--noir)
}

.apropos-texte h2 {
    color: var(--noir)
 font-weight; normal
  font-size: 20px;
  margin-bottom: 20px;
}
/* FORCE TITRES NOIRS - PAGE À PROPOS */
.apropos-bloc h1,
.apropos-bloc h2 {
  color: var(--noir) !important;
}
/* =====================
   RESPONSIVE MOBILE
   ===================== */
@media (max-width: 768px) {
@media (max-width: 768px) {
  header h1 {
    
  font-size: 32px;
  line-height: 1.2;
}
    white-space: normal;
    text-align: center;
  }
}
  body {
    font-size: 18px;
    line-height: 1.6;
  }

  h1 {
    font-size: 28px;
    line-height: 1.3;
  }

  h2 {
    font-size: 22px;
    line-height: 1.4;
  }

  h3 {
    font-size: 20px;
  }

  p {
    font-size: 18px;
    line-height: 1.7;
  }

  /* Contenu principal */
  .page-content {
    padding: 20px;
  }

  /* Bloc jaune (à propos, contact, etc.) */
  .bloc-jaune {
    padding: 25px 20px;
    border-radius: 16px;
  }

  /* Colonnes → une seule colonne */
  .apropos-contenu,
  .form-row {
    flex-direction: column;
    gap: 16px;
  }

  /* Images */
  img {
    max-width: 100%;
    height: auto;
  }

  /* Formulaire */
  input,
  textarea {
    font-size: 18px;
    padding: 14px;
  }

  button,
  .btn-principal {
    font-size: 18px;
    padding: 14px 20px;
  }

  /* Menu */
  .main-nav a {
    display: block;
    padding: 12px 0;
    font-size: 18px;
  }
}
header {
  width: 100%;
  max-width: 100%;
  overflow-x: visible
}
/* ======================
   MENU MOBILE
====================== */
/* MENU MOBILE */
@media (max-width: 768px) {
  .main-nav {
    display: flex;
flex-wrap: wrap;
    /* ✅ CENTRAGE RÉEL */
    justify-content: center;
    align-items: center;
    gap: 20px;

    /* ✅ BARRE QUI ÉPOUSE LE CONTENU */
    width: fit-content;
    max-width: calc(100% - 32px);
    margin: 0 auto;

    padding: 12px 20px;
    background: #F9EBC8;
    border-radius: 14px;
  }

  .main-nav a {
    white-space: nowrap;
    text-align: center;
  }
}
@media (max-width: 768px) {
  .main-nav a[href="contact.html"],
  .main-nav a[href="prendre-rendez-vous.html"] {
    display: none;
  }
}
/* ======================
   BARRE BAS MOBILE
====================== */

@media (max-width: 768px) {
  .mobile-bottom-bar {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--fond-site);
    padding: 14px 16px;
    justify-content: space-between;
    align-items: center;
    z-index: 999;
  }
}
  .mobile-bottom-bar .cta {
    background: var(--jaune);
    color: var(--noir);
    padding: 8px 14px;
    border-radius: 20px;
  }
.mobile-bottom-bar a {
  color: var(--noir);
  text-decoration: none;
  font-weight: 600;
  background: var(--jaune);
}
  body {
    padding-bottom: 80px; /* pour ne pas cacher le contenu */
  }
 /* =========================
   MENU HAUT – MOBILE UNIQUEMENT
========================= */
@media (max-width: 768px) {

  .main-nav {
    display: flex;
    flex-wrap: wrap;              /* autorise 2 lignes */
    justify-content: center;
    gap: 14px 22px;

    background: #F9EBC8;
    padding: 16px 20px;
    border-radius: 16px;

    max-width: calc(100% - 24px);
    margin: 16px auto;
  }

  .main-nav a {
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    color: var(--rouge);
    white-space: nowrap;
  }

  /* on cache uniquement Contact et Prendre RDV en haut */
  .main-nav a[href="contact.html"],
  .main-nav a[href="prendre-rendez-vous.html"] {
    display: none;
  }
}
  .main-nav a {
    font-size: 16px;              /* lisible sur téléphone */
    font-weight: 500;
    text-decoration: none;
    color: var(--rouge);
    white-space: nowrap;
  }

  /* On cache les liens desktop inutiles en haut */
  .main-nav a[href="contact.html"],
  .main-nav a[href="prendre-rendez-vous.html"] {
    display: none;
  }
/* =========================
   E-BOOKS
========================= */

.ebook-card {
  background: #F9EBC8;
  border-radius: 24px;
  padding: 32px;
  margin: 32px auto;
  max-width: 1000px;

  display: flex;
  gap: 32px;
  align-items: center;
}

.ebook-text {
  flex: 1;
}

.ebook-text h3 {
  margin-top: 0;
  margin-bottom: 16px;
}

.ebook-text p {
  margin-bottom: 12px;
  line-height: 1.6;
}

/* bouton */
.btn-ebook {
  display: inline-block;
  margin-top: 16px;
  padding: 12px 20px;
  background: #F4D35E;
  color: #5B2A1D;
  text-decoration: none;
  font-weight: 600;
  border-radius: 999px;
}

/* image */
.ebook-image {
  flex: 0 0 220px;
  max-height: 260px;
  overflow: hidden;
}

.ebook-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}
@media (max-width: 768px) {
  .ebook-card {
    flex-direction: column;
    text-align: center;
    padding: 24px;
  }

  .ebook-image {
    width: 100%;
    max-width: 220px;
  }

  .btn-ebook {
    width: 100%;
    text-align: center;
  }
}
/* Harmonisation CTA e-books avec bouton RDV */
a.cta {
  display: inline-block;
  margin-top: 16px;
  padding: 12px 24px;

  background-color: var(--orange-1);
  color: white;

  text-decoration: none;
  font-weight: 600;
  font-size: 15px;

  border-radius: 30px;
  cursor: pointer;

  transition: background-color 0.3s ease, transform 0.2s ease;
}

a.cta:hover {
  background-color: var(--orange-2);
  transform: translateY(-2px);
}
/* Fix titre header mobile */
@media (max-width: 768px) {
  .site-header .site-title {
    font-size: 22px;       /* taille adaptée mobile */
    line-height: 1.2;
    text-align: center;
    white-space: normal;  /* autorise le retour à la ligne */
  }

  .site-header .header-content {
    align-items: center;  /* centre le contenu */
    text-align: center;
  }
}