/* ============================================================
   JULIE BROHARD – NATUROPATHE
   Refonte visuelle complète – juin 2025
   ============================================================
   Pour modifier les couleurs → section :root
   Pour modifier l'adresse/tél → pied de page de chaque .html
   ============================================================ */

/* === PALETTE & VARIABLES === */
:root {
  --bark:         #2C1A0E;   /* Très foncé – héro, footer */
  --cream:        #F3EDE2;   /* Fond principal */
  --white:        #FFFFFF;
  --taupe:        #8B7355;   /* Accent couleur logo */
  --taupe-dark:   #6A5438;
  --taupe-mid:    #A08866;
  --taupe-light:  #C8B59A;
  --taupe-pale:   #EDE4D6;
  --muted:        #7A6B5E;
  --border:       #DDD0C0;

  --display: 'Cormorant Garamond', Georgia, serif;
  --body:    'DM Sans', system-ui, sans-serif;

  --nav-h: 74px;
  --max-w: 1120px;
  --trans: 0.28s ease;
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: smooth; }
body  { font-family: var(--body); background: var(--cream); color: var(--bark); line-height: 1.75; font-size: 1rem; }
img   { max-width: 100%; height: auto; display: block; }
a     { color: inherit; text-decoration: none; }
ul    { list-style: none; }
button { cursor: pointer; background: none; border: none; }

/* === TYPOGRAPHIE === */
h1, h2, h3, h4 { font-family: var(--display); line-height: 1.15; color: var(--bark); }
h1 { font-size: clamp(2.6rem, 5.5vw, 5rem); font-weight: 300; }
h2 { font-size: clamp(1.8rem, 3.5vw, 3rem);  font-weight: 400; }
h3 { font-size: clamp(1.2rem, 2vw,   1.8rem); font-weight: 400; }
em { font-style: italic; }
p  { color: var(--muted); line-height: 1.8; }
strong { color: var(--bark); font-weight: 500; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: sticky; top: 0; z-index: 200;
  height: var(--nav-h);
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: var(--max-w); margin: 0 auto;
  padding: 0 2.5rem; height: 100%;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo { display: flex; align-items: center; }
.nav-logo img { height: 46px; width: auto; }

.nav-links { display: flex; align-items: center; gap: 2.5rem; }
.nav-links a {
  font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--muted); position: relative; transition: color var(--trans);
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; right: 0;
  height: 1px; background: var(--taupe);
  transform: scaleX(0); transform-origin: left; transition: transform var(--trans);
}
.nav-links a:hover, .nav-links a.active { color: var(--taupe); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }

.nav-cta {
  background: var(--taupe); color: var(--white) !important;
  padding: 0.55rem 1.4rem; border-radius: 2px; font-size: 0.78rem !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--taupe-dark) !important; }

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  padding: 8px; -webkit-tap-highlight-color: transparent; touch-action: manipulation;
}
.hamburger span {
  display: block; width: 24px; height: 1.5px;
  background: var(--bark); transition: all var(--trans);
}
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Menu mobile */
.mobile-menu {
  display: none; flex-direction: column;
  position: fixed; top: var(--nav-h); left: 0; right: 0;
  background: var(--white); border-bottom: 2px solid var(--taupe);
  box-shadow: 0 8px 40px rgba(44,26,14,0.15);
  padding: 0.5rem 0 1rem; z-index: 199;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  padding: 1rem 2rem; font-size: 0.9rem; color: var(--bark);
  border-bottom: 1px solid var(--border); letter-spacing: 0.02em;
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu .mobile-cta {
  margin: 0.75rem 1.5rem 0; padding: 1rem;
  background: var(--taupe); color: var(--white) !important;
  text-align: center; border-radius: 2px; text-transform: uppercase;
  font-size: 0.8rem; letter-spacing: 0.1em; border-bottom: none !important;
}

/* ============================================================
   BOUTONS
   ============================================================ */
.btn {
  display: inline-block; font-family: var(--body);
  font-size: 0.8rem; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 0.9rem 2.2rem; border-radius: 2px; border: 1px solid transparent;
  transition: all var(--trans); cursor: pointer;
}
.btn-primary { background: var(--taupe); color: var(--white); border-color: var(--taupe); }
.btn-primary:hover { background: var(--taupe-dark); border-color: var(--taupe-dark); transform: translateY(-2px); box-shadow: 0 6px 24px rgba(139,115,85,.35); }

.btn-outline-light { background: transparent; color: var(--white); border-color: rgba(255,255,255,.55); }
.btn-outline-light:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.9); }

.btn-white { background: var(--white); color: var(--taupe-dark); border-color: var(--white); }
.btn-white:hover { background: var(--cream); transform: translateY(-2px); }

.btn-outline { background: transparent; color: var(--taupe); border-color: var(--taupe); }
.btn-outline:hover { background: var(--taupe); color: var(--white); }

/* ============================================================
   HÉRO — LE CŒUR DU DESIGN
   Split éditorial : panneau sombre gauche + portrait droite
   ============================================================ */
.hero {
  display: grid;
  grid-template-columns: 45fr 55fr;
  min-height: 100vh;
  background: var(--bark);
}

/* Panneau texte */
.hero-panel {
  background: var(--bark);
  display: flex; align-items: center;
  padding: 5rem 4.5rem 5rem 5rem;
  position: relative;
}
.hero-panel::after {   /* ligne décorative verticale */
  content: '';
  position: absolute; right: 0; top: 10%; bottom: 10%;
  width: 1px; background: rgba(200,181,154,.18);
}
.hero-inner { display: flex; flex-direction: column; gap: 1.75rem; max-width: 520px; }

.hero-eyebrow {
  font-family: var(--body); font-size: 0.72rem; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--taupe-light);
  display: flex; align-items: center; gap: 0.75rem;
}
.hero-eyebrow::before {
  content: ''; display: inline-block;
  width: 32px; height: 1px; background: var(--taupe-light);
}

.hero-title {
  font-family: var(--display);
  font-size: clamp(2.6rem, 4vw, 4.6rem);
  font-weight: 300; line-height: 1.12; color: var(--white);
}
.hero-title em { color: var(--taupe-light); font-style: italic; }

.hero-sub { color: rgba(255,255,255,.6); font-size: 0.95rem; max-width: 360px; }

.hero-divider {
  width: 48px; height: 1px; background: var(--taupe-mid); flex-shrink: 0;
}

.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* Photo portrait */
.hero-photo {
  position: relative; overflow: hidden;
}
.hero-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
}

/* ============================================================
   EN-TÊTES DE PAGE INTÉRIEURE
   ============================================================ */

/* Simple (Présentation) */
.page-header {
  background: var(--white); padding: 5rem 2rem 4rem;
  text-align: center; border-bottom: 1px solid var(--border);
}
.page-header .eyebrow {
  font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--taupe); margin-bottom: 0.75rem;
}

/* Avec photo + bandeau (Prestations, Rendez-vous) */
.page-header-photo {
  position: relative; height: 380px; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.page-header-photo .header-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 40%;
}
.page-header-photo .header-band {
  position: relative; z-index: 2;
  background: rgba(193,172,146,.90);
  padding: 2.5rem 5rem; min-width: 55%; max-width: 85%; text-align: center;
}
.page-header-photo .header-band h1 {
  font-family: var(--display);
  font-size: clamp(1.4rem, 2.5vw, 2.2rem);
  font-weight: 400; font-style: normal; letter-spacing: 0.22em; text-transform: uppercase;
  color: #38291e;
}

/* ============================================================
   SECTIONS
   ============================================================ */
.section { padding: 7rem 2.5rem; }
.section-sm { padding: 5rem 2.5rem; }
.section-inner { max-width: var(--max-w); margin: 0 auto; }
.section-alt { background: var(--white); }
.section-bark { background: var(--bark); }

/* Avec fond texturé */
.section-textured { position: relative; overflow: hidden; }
.section-textured .section-bg-img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center; opacity: .18; z-index: 0;
}
.section-textured .section-inner { position: relative; z-index: 1; }

/* Intro de section centrée */
.section-intro { text-align: center; max-width: 580px; margin: 0 auto 4rem; }
.section-intro .eyebrow {
  font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--taupe); margin-bottom: 0.75rem;
}
.section-intro h2 { margin-bottom: 0.75rem; }
.section-intro p { font-size: 0.95rem; }

/* Séparateur entre sections */
.divider {
  width: 48px; height: 1px; background: var(--taupe-light);
  margin: 0 auto 1.5rem;
}

/* ============================================================
   MISE EN PAGE SPLIT (2 colonnes)
   ============================================================ */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center; }
.split.split-40-60 { grid-template-columns: 2fr 3fr; }
.split.reverse .split-img { order: -1; }

.split-img img {
  width: 100%; aspect-ratio: 3/4; object-fit: cover;
  border-radius: 2px; box-shadow: 0 16px 48px rgba(44,26,14,.16);
}
.split-img img.landscape { aspect-ratio: 4/3; }

.split-text { display: flex; flex-direction: column; gap: 1.25rem; }
.split-text .eyebrow {
  font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--taupe);
}

/* ============================================================
   CITATION
   ============================================================ */
.quote-section { padding: 6rem 2.5rem; background: var(--bark); }
.quote-block {
  max-width: 640px; margin: 0 auto; text-align: center;
}
.quote-block blockquote {
  font-family: var(--display); font-style: italic; font-weight: 300;
  font-size: clamp(1.3rem, 2.2vw, 1.9rem);
  color: rgba(255,255,255,.85); line-height: 1.6; margin-bottom: 1.25rem;
}
.quote-block .quote-ornament { color: var(--taupe-mid); font-size: 2.5rem; line-height: 1; margin-bottom: 1rem; }
.quote-block cite { font-size: 0.75rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--taupe-light); }

/* ============================================================
   LISTE INDICATIONS
   ============================================================ */
.indications { columns: 2; column-gap: 2rem; }
.indications li {
  break-inside: avoid; padding: 0.35rem 0 0.35rem 1.4rem;
  position: relative; font-size: 0.93rem; color: var(--muted);
}
.indications li::before {
  content: ''; position: absolute; left: 0; top: 0.75rem;
  width: 6px; height: 6px; border-radius: 50%;
  border: 1px solid var(--taupe-mid); background: transparent;
}

/* ============================================================
   PRESTATIONS — LISTE ÉLÉGANTE (plus de cartes photo)
   ============================================================ */
.prestation-list { margin-top: 1rem; }
.prestation-row {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 3.5rem;
  padding: 3rem 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
  transition: background var(--trans);
}
.prestation-row:first-child { border-top: 1px solid var(--border); }

.prestation-meta { text-align: right; padding-top: 0.3rem; }
.prestation-price {
  font-family: var(--display); font-size: 2.4rem; font-weight: 300;
  color: var(--taupe); line-height: 1;
}
.prestation-duration {
  font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--muted); margin-top: 0.5rem; line-height: 1.5;
}

.prestation-content h3 {
  font-family: var(--display); font-size: 1.6rem; font-weight: 400;
  color: var(--bark); margin-bottom: 0.75rem;
}
.prestation-content p { font-size: 0.92rem; max-width: 640px; }
.prestation-content .btn { margin-top: 1rem; }

/* ============================================================
   BOÎTES D'INFORMATION
   ============================================================ */
.info-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--border); margin-top: 4rem; }
.info-box {
  background: var(--white); padding: 2rem 1.75rem;
}
.info-box .ib-icon { font-size: 1.4rem; margin-bottom: 0.75rem; }
.info-box h4 { font-family: var(--body); font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--taupe); margin-bottom: 0.5rem; }
.info-box p { font-size: 0.875rem; line-height: 1.65; }

/* ============================================================
   CONTACT & FORMULAIRE
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: start; }

.contact-items { display: flex; flex-direction: column; gap: 2rem; }
.contact-item { display: flex; gap: 1.25rem; align-items: flex-start; }
.ci-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: var(--taupe-pale); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-size: 1.1rem;
}
.ci-body { display: flex; flex-direction: column; gap: 0.2rem; padding-top: 0.3rem; }
.ci-label { font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); }
.ci-value { font-size: 0.93rem; color: var(--bark); }
.ci-value a { color: var(--taupe); }
.ci-value a:hover { text-decoration: underline; }

/* Formulaire */
.form-group { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1.2rem; }
.form-group label { font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 0.9rem 1rem;
  border: 1px solid var(--border); background: var(--white);
  font-family: var(--body); font-size: 0.93rem; color: var(--bark);
  border-radius: 2px; outline: none; appearance: none;
  transition: border-color var(--trans), box-shadow var(--trans);
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  border-color: var(--taupe); box-shadow: 0 0 0 3px rgba(139,115,85,.12);
}
.form-group textarea { height: 155px; resize: vertical; }
.form-success { display: none; padding: 1.25rem; background: #edf7ee; border: 1px solid #b2d9b5; border-radius: 2px; color: #2d6a30; font-size: 0.9rem; margin-top: 1rem; }
.form-note { font-size: 0.8rem; color: var(--muted); background: var(--cream); padding: 1rem; margin-top: 0.75rem; line-height: 1.65; }

/* ============================================================
   CARTE DE LIEU
   ============================================================ */
.location-card { background: var(--white); box-shadow: 0 4px 24px rgba(44,26,14,.09); }
.location-card iframe { width: 100%; height: 260px; border: none; display: block; }
.location-card-body { padding: 1.75rem; }
.location-badge {
  display: inline-block; font-size: 0.68rem; letter-spacing: 0.12em; text-transform: uppercase;
  background: var(--taupe-pale); color: var(--taupe);
  border: 1px solid var(--taupe-light); padding: 0.22rem 0.7rem; border-radius: 99px;
  margin-bottom: 0.6rem;
}
.location-card h3 { font-family: var(--body); font-size: 1rem; font-weight: 600; margin-bottom: 0.3rem; }
.location-card p { font-size: 0.88rem; }
.location-card a.map-link { font-size: 0.82rem; color: var(--taupe); display: inline-block; margin-top: 0.5rem; }
.location-card a.map-link:hover { text-decoration: underline; }

/* ============================================================
   BANNIÈRE CTA
   ============================================================ */
.cta-section {
  background: var(--bark); padding: 7rem 2.5rem; text-align: center;
}
.cta-section h2 {
  font-family: var(--display); font-style: italic; font-weight: 300;
  color: var(--white); margin-bottom: 1rem;
}
.cta-section p { color: rgba(255,255,255,.6); max-width: 500px; margin: 0 auto 2.5rem; font-size: 0.95rem; }

/* ============================================================
   BADGES
   ============================================================ */
.badge-row { display: flex; gap: 0.6rem; flex-wrap: wrap; }
.badge {
  font-size: 0.72rem; letter-spacing: 0.07em; text-transform: uppercase;
  color: var(--taupe); border: 1px solid var(--taupe-light);
  padding: 0.28rem 0.75rem; border-radius: 99px; background: var(--taupe-pale);
}

/* ============================================================
   PIED DE PAGE
   ============================================================ */
footer { background: var(--bark); color: rgba(255,255,255,.6); padding: 5.5rem 2.5rem 2.5rem; }
.footer-inner { max-width: var(--max-w); margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 5rem; margin-bottom: 4rem; }

.footer-logo img {
  height: 44px; filter: brightness(0) invert(0.8); opacity: .75;
  margin-bottom: 1.25rem;
}
.footer-logo p { font-size: 0.88rem; line-height: 1.8; }
.footer-col h4 {
  font-family: var(--body); font-size: 0.68rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: rgba(255,255,255,.3); margin-bottom: 1.25rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.7rem; }
.footer-col ul li a { font-size: 0.88rem; color: rgba(255,255,255,.55); transition: color var(--trans); }
.footer-col ul li a:hover { color: var(--white); }
.footer-col address { font-style: normal; font-size: 0.88rem; line-height: 1.85; }
.footer-col address a { color: rgba(255,255,255,.55); transition: color var(--trans); }
.footer-col address a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08); padding-top: 1.75rem;
  text-align: center; font-size: 0.75rem; color: rgba(255,255,255,.25);
}

/* ============================================================
   SECTION RÉSERVATION EN LIGNE
   ============================================================ */
.booking-section {
  background: var(--taupe-pale); padding: 5rem 2.5rem; text-align: center;
}
.booking-section h2 { font-style: italic; font-weight: 400; margin-bottom: 0.75rem; }
.booking-section p { max-width: 520px; margin: 0 auto 2rem; font-size: 0.95rem; }
.booking-note { margin-top: 1.5rem; font-size: 0.88rem; color: var(--muted); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 768px) {
  .nav-links { display: none !important; }
  .hamburger  { display: flex !important; }

  /* Hero : passage en fond photo sur mobile */
  .hero {
    display: block; position: relative;
    min-height: 100svh; background: var(--bark);
  }
  .hero-panel {
    position: relative; z-index: 2;
    padding: 5rem 1.5rem 3rem;
    background: rgba(44,26,14,.82);
  }
  .hero-panel::after { display: none; }
  .hero-photo {
    position: absolute; inset: 0;
  }
  .hero-photo img { opacity: .35; }

  .split { grid-template-columns: 1fr; gap: 2.5rem; }
  .split.reverse .split-img { order: unset; }
  .split-img img { aspect-ratio: 16/9; }

  .contact-grid { grid-template-columns: 1fr; gap: 3.5rem; }
  .footer-grid   { grid-template-columns: 1fr; gap: 2.5rem; }
  .info-grid     { grid-template-columns: 1fr 1fr; }
  .indications   { columns: 1; }

  .prestation-row { grid-template-columns: 1fr; gap: 1rem; }
  .prestation-meta { text-align: left; display: flex; gap: 1rem; align-items: baseline; }

  .page-header-photo { height: 260px; }
  .page-header-photo .header-band { padding: 1.75rem 2rem; min-width: 88%; }

  .section  { padding: 4.5rem 1.5rem; }
  .section-sm { padding: 3.5rem 1.5rem; }
  .quote-section { padding: 4.5rem 1.5rem; }
  .cta-section   { padding: 4.5rem 1.5rem; }
  .booking-section { padding: 4rem 1.5rem; }

  .hero-actions { flex-direction: column; }
  .btn { width: 100%; text-align: center; }
}

@media (max-width: 480px) {
  .info-grid { grid-template-columns: 1fr; }
  .hero-title { font-size: 2.4rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition: none !important; animation: none !important; }
}
