/* ═══════════════════════════════════════════════
   CENTRE AL KHITANA — style.css
   ═══════════════════════════════════════════════ */

/* ─── TOKENS ──────────────────────────────────── */
:root {
  --rose:        #C9937A;
  --mauve:       #8B5E6B;
  --blush:       #E8C5B8;
  --blush-light: #F5EBE6;
  --beige:       #F9F4F0;
  --dark:        #2D1F1F;
  --grey:        #7A6A6A;
  --white:       #FFFFFF;
  --wa:          #25D366;   /* WhatsApp green */
  --gap:         clamp(3rem, 6vw, 6rem);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Montserrat', sans-serif; color: var(--dark); background: var(--white); overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 clamp(1.25rem, 4vw, 2.5rem); }
.section { padding: var(--gap) 0; }

/* ─── TYPE ────────────────────────────────────── */
h1, h2, h3 { font-family: 'Cormorant Garamond', serif; line-height: 1.15; }
h1 { font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 300; letter-spacing: .08em; }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 300; }
h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; font-weight: 400; }
p  { line-height: 1.85; color: var(--grey); font-size: .88rem; font-weight: 300; }
.eyebrow {
  font-size: .65rem; font-weight: 500; letter-spacing: .2em;
  text-transform: uppercase; color: var(--rose); margin-bottom: 1rem;
  display: block;
}

/* ─── BUTTONS ─────────────────────────────────── */
.btn {
  display: inline-block;
  padding: .9rem 2.4rem;
  border-radius: 50px;
  font-family: 'Montserrat', sans-serif;
  font-size: .78rem; font-weight: 500;
  letter-spacing: .12em; text-transform: uppercase;
  cursor: pointer; transition: all .22s;
  border: 1.5px solid transparent;
}
.btn-rose  { border-color: var(--white); color: var(--white); background: transparent; }
.btn-rose:hover  { background: var(--white); color: var(--rose); }
.btn-dark  { border-color: var(--mauve); color: var(--mauve); background: transparent; }
.btn-dark:hover  { background: var(--mauve); color: var(--white); }
.btn-filled { background: var(--rose); border-color: var(--rose); color: var(--white); }
.btn-filled:hover { background: var(--mauve); border-color: var(--mauve); }

/* ─── NAVBAR ──────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  background: rgba(255,255,255,.97);
  border-bottom: 1px solid rgba(180,130,115,.18);
  height: 72px; display: flex; align-items: center;
  transition: box-shadow .2s;
}
nav.scrolled { box-shadow: 0 2px 20px rgba(180,130,115,.15); }
.nav-inner { width: 100%; display: flex; align-items: center; justify-content: space-between; }
.nav-logo  { display: flex; align-items: center; gap: .6rem; }
.nav-lotus { font-size: 1.5rem; color: var(--rose); line-height: 1; }
.nav-name  { font-family: 'Cormorant Garamond', serif; font-size: .88rem; font-weight: 400; letter-spacing: .22em; text-transform: uppercase; color: var(--dark); }
.nav-links { margin-left: 2rem; }
.nav-links { display: flex; align-items: center; gap: 2.5rem; list-style: none; }
.nav-links a {
  font-size: .72rem; font-weight: 500; letter-spacing: .14em;
  text-transform: uppercase; color: var(--dark); transition: color .15s;
  padding-bottom: 2px; border-bottom: 1.5px solid transparent;
}
.nav-links a:hover { color: var(--rose); }
.nav-links a.active { color: var(--mauve); border-bottom-color: var(--mauve); }
.nav-cta { margin-left: .5rem; }
.nav-burger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.nav-burger span { display: block; width: 24px; height: 1.5px; background: var(--dark); transition: .2s; }

/* ─── MOBILE MENU ─────────────────────────────── */
.mobile-menu {
  display: none; position: fixed;
  top: 72px; left: 0; right: 0; z-index: 199;
  background: var(--white);
  border-bottom: 1px solid rgba(180,130,115,.15);
  padding: 1.5rem clamp(1.25rem, 4vw, 2.5rem);
  flex-direction: column; gap: 0;
  box-shadow: 0 8px 24px rgba(45,31,31,.1);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  padding: .75rem 0; font-size: .85rem; font-weight: 500;
  letter-spacing: .1em; text-transform: uppercase;
  border-bottom: 1px solid rgba(180,130,115,.12); color: var(--dark);
}
.mobile-menu a.active { color: var(--mauve); }
.mobile-menu .btn { margin-top: 1.25rem; text-align: center; }

/* ─── PAGE HERO (pages intérieures) ───────────── */
.page-hero {
  background: var(--blush);
  padding: calc(72px + 3.5rem) 0 3.5rem;
  text-align: center;
}
.page-hero h1 { color: var(--white); font-style: italic; margin-bottom: .75rem; }
.page-hero p  { color: rgba(255,255,255,.75); max-width: 500px; margin: 0 auto; }

/* ─── FOOTER ──────────────────────────────────── */
footer { background: var(--dark); padding: 3rem 0 1.5rem; }
.footer-top {
  display: flex; justify-content: space-between;
  align-items: flex-start; gap: 3rem; flex-wrap: wrap;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
  margin-bottom: 1.5rem;
}
.footer-brand .f-logo-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem; letter-spacing: .18em;
  text-transform: uppercase; color: var(--white);
  margin-bottom: .6rem;
}
.footer-brand p { font-size: .78rem; color: rgba(255,255,255,.42); max-width: 280px; line-height: 1.7; }
.footer-col h4 {
  font-size: .65rem; font-weight: 600; letter-spacing: .2em;
  text-transform: uppercase; color: rgba(255,255,255,.32);
  margin-bottom: 1rem;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: .6rem; }
.footer-col ul a { font-size: .78rem; color: rgba(255,255,255,.52); transition: color .15s; }
.footer-col ul a:hover { color: var(--white); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: .5rem;
  font-size: .72rem; color: rgba(255,255,255,.28);
}
.footer-bottom a { color: rgba(255,255,255,.28); transition: color .15s; }
.footer-bottom a:hover { color: rgba(255,255,255,.6); }
.footer-links { display: flex; gap: 1.5rem; flex-wrap: wrap; }

/* ─── MODAL RDV ───────────────────────────────── */
.modal-overlay {
  display: none; position: fixed; inset: 0; z-index: 300;
  background: rgba(45,31,31,.58); backdrop-filter: blur(4px);
  align-items: center; justify-content: center;
}
.modal-overlay.open { display: flex; }
.modal {
  background: var(--white); padding: 2.5rem;
  max-width: 460px; width: 92%; position: relative;
  animation: fadeUp .25s ease;
}
@keyframes fadeUp { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }
.modal-close {
  position: absolute; top: 1rem; right: 1.25rem;
  background: none; border: none; cursor: pointer;
  font-size: 1.2rem; color: var(--grey); line-height: 1;
}
.modal h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.7rem; font-weight: 300; margin-bottom: .4rem; color: var(--dark); }
.modal > p { font-size: .82rem; color: var(--grey); margin-bottom: 1.75rem; }
.modal-option {
  display: flex; gap: 1rem; align-items: center;
  border: 1px solid rgba(180,130,115,.22);
  padding: 1.25rem; margin-bottom: .75rem;
  cursor: pointer; transition: border-color .15s, background .15s;
  text-decoration: none;
}
.modal-option:hover { border-color: var(--rose); background: var(--blush-light); }
.modal-option .mo-icon { font-size: 1.7rem; flex-shrink: 0; }
.modal-option strong { font-size: .88rem; color: var(--dark); display: block; margin-bottom: .1rem; }
.modal-option span  { font-size: .75rem; color: var(--grey); }

/* ─── FLOATING WIDGETS ────────────────────────── */
.float-wrap {
  position: fixed;
  /* décalé vers le haut pour ne pas chevaucher le chat Tawk.to en bas à droite */
  bottom: 7rem; right: 1.75rem;
  z-index: 150;
  display: flex; flex-direction: column;
  align-items: flex-end; gap: .75rem;
}

/* WhatsApp bubble */
.wa-btn {
  width: 54px; height: 54px; border-radius: 50%;
  background: var(--wa);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  cursor: pointer; transition: transform .2s, box-shadow .2s;
  text-decoration: none;
}
.wa-btn:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,.5); }
.wa-btn svg { width: 28px; height: 28px; fill: white; }
.wa-tooltip {
  position: absolute; right: 62px;
  background: var(--dark); color: var(--white);
  font-size: .72rem; font-weight: 500; letter-spacing: .04em;
  padding: .4rem .75rem; border-radius: 4px;
  white-space: nowrap; pointer-events: none;
  opacity: 0; transition: opacity .2s;
}
.wa-btn:hover + .wa-tooltip,
.wa-tooltip-wrap:hover .wa-tooltip { opacity: 1; }
.wa-tooltip::after {
  content: ''; position: absolute; left: 100%; top: 50%;
  transform: translateY(-50%);
  border: 5px solid transparent;
  border-left-color: var(--dark);
}

/* Contact form bubble */
.contact-bubble {
  width: 54px; height: 54px; border-radius: 50%;
  background: var(--rose);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(201,147,122,.4);
  cursor: pointer; transition: transform .2s, box-shadow .2s;
  border: none; position: relative;
}
.contact-bubble:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(201,147,122,.5); }
.contact-bubble svg { width: 24px; height: 24px; fill: white; }
.contact-tooltip {
  position: absolute; right: 62px; top: 50%; transform: translateY(-50%);
  background: var(--dark); color: var(--white);
  font-size: .72rem; font-weight: 500; letter-spacing: .04em;
  padding: .4rem .75rem; border-radius: 4px;
  white-space: nowrap; pointer-events: none;
  opacity: 0; transition: opacity .2s;
}
.contact-bubble:hover .contact-tooltip { opacity: 1; }
.contact-tooltip::after {
  content: ''; position: absolute; left: 100%; top: 50%;
  transform: translateY(-50%);
  border: 5px solid transparent;
  border-left-color: var(--dark);
}

/* Mini contact panel */
.mini-form-panel {
  display: none;
  position: fixed; bottom: 13rem; right: 1.75rem; z-index: 151;
  width: 300px;
  background: var(--white);
  box-shadow: 0 8px 40px rgba(45,31,31,.18);
  padding: 1.5rem;
  animation: fadeUp .2s ease;
}
.mini-form-panel.open { display: block; }
.mini-form-panel h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem; font-weight: 400; color: var(--dark);
  margin-bottom: .25rem;
}
.mini-form-panel p { font-size: .75rem; color: var(--grey); margin-bottom: 1rem; }
.mini-form-panel input,
.mini-form-panel textarea {
  width: 100%;
  padding: .65rem .85rem;
  border: 1px solid rgba(180,130,115,.3);
  font-family: 'Montserrat', sans-serif;
  font-size: .8rem; color: var(--dark); font-weight: 300;
  background: var(--white); outline: none;
  transition: border-color .15s; margin-bottom: .65rem;
  border-radius: 0;
}
.mini-form-panel input:focus,
.mini-form-panel textarea:focus { border-color: var(--rose); }
.mini-form-panel textarea { min-height: 80px; resize: vertical; }
.mini-form-panel .mini-close {
  position: absolute; top: .75rem; right: .9rem;
  background: none; border: none; cursor: pointer;
  font-size: 1rem; color: var(--grey); line-height: 1;
}
.mini-form-panel .btn { width: 100%; text-align: center; padding: .75rem; font-size: .72rem; }
.mini-success { display: none; text-align: center; padding: 1rem 0; }
.mini-success p { color: var(--mauve); font-size: .82rem; }

/* ─── SCROLL REVEAL ───────────────────────────── */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .55s, transform .55s; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ─── RESPONSIVE ──────────────────────────────── */
@media (max-width: 900px) {
  .nav-links, .nav-cta { display: none; }
  .nav-burger { display: flex; }
  .footer-top { flex-direction: column; gap: 2rem; }
}
@media (max-width: 560px) {
  .footer-bottom { flex-direction: column; text-align: center; }
  .mini-form-panel { width: calc(100vw - 2rem); right: 1rem; }
  .float-wrap { right: 1rem; bottom: 6rem; }
}
