/* ═══════════════════════════════════════
   De l'Âme au Corps — Candice Kinésiologue
   Feuille de style commune
   ═══════════════════════════════════════ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --teal: #2A8C8C;
  --gold: #C9A84C;
  --bg: #FAFAF8;
  --text: #3a3a3a;
  --text-light: #7a7a7a;
  --white: #ffffff;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Lato', sans-serif;
  font-weight: 300;
  background: var(--bg);
  color: var(--text);
  line-height: 1.8;
  font-size: 0.95rem;
}

/* HEADER COMPACT + MENU RAPPROCHÉ */

header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg);
  border-bottom: 1px solid rgba(201, 168, 76, 0.15);
  padding: 0rem 1.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.logo img {
  height: 220px;
  width: auto;
  display: block;
}

/* Menu recentré + texte plus grand */
nav {
  display: flex;
  gap: 2rem;
  align-items: center;
  margin-left: 2rem; /* rapproche du centre */
}

nav a {
  font-family: 'Lato', sans-serif;
  font-weight: 300;
  font-size: 1.05rem; /* texte plus lisible */
  letter-spacing: 0.04em;
  color: var(--teal);
  text-decoration: none;
  transition: color 0.3s;
}

nav a:hover { color: var(--gold); }
nav a.active { text-decoration: underline; }

/* Mobile */
@media (max-width: 700px) {
  header {
    padding: 0rem 1rem;
  }

  .logo img {
    height: 150px;
  }

  nav {
    margin-left: 0; /* sur mobile, on recentre tout */
  }
}

/* ══ CONTENU PRINCIPAL ══ */
main {
  max-width: 860px;
  margin: 0 auto;
  padding: 60px 2rem 80px;
}

main.large { max-width: 1000px; }

/* ══ TITRES DE PAGE ══ */
.page-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 400;
  color: var(--teal);
  margin-bottom: 2.5rem;
}

/* ══ TEXTE COURANT ══ */
.content p {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.85;
  margin-bottom: 1.2rem;
  text-align: justify;
}

.content p:last-child { margin-bottom: 0; }

.content a {
  color: var(--teal);
  text-decoration: none;
  border-bottom: 1px solid rgba(42,140,140,0.3);
  transition: color 0.3s;
}

.content a:hover { color: var(--gold); }
.content strong { font-weight: 400; }

/* ══ COULEURS UTILITAIRES ══ */
.highlight-teal { color: var(--teal); }
.highlight-gold  { color: var(--gold); }

/* ══ LISTES ══ */
.col-liste {
  list-style: none;
  padding: 0;
  font-size: 0.88rem;
  color: var(--text);
  line-height: 1.8;
}

.col-liste li::before { content: '- '; color: var(--text-light); }
.col-liste.indent { padding-left: 1rem; }

/* ══ BOUTONS ══ */
.btn {
  display: inline-block;
  padding: 0.65rem 1.8rem;
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: 'Lato', sans-serif;
  font-weight: 300;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-decoration: none;
  transition: all 0.3s;
}

.btn:hover { background: var(--gold); color: var(--white); }

.btn-rdv {
  display: inline-block;
  padding: 0.5rem 1.2rem;
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: 'Lato', sans-serif;
  font-weight: 300;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-decoration: none;
  text-align: center;
  transition: all 0.3s;
}

.btn-rdv:hover { background: var(--gold); color: var(--white); }

.link-teal {
  display: inline-block;
  margin-top: 0.5rem;
  font-family: 'Lato', sans-serif;
  font-weight: 300;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  color: var(--gold);
  text-decoration: none;
  border: 1px solid var(--gold);
  padding: 0.5rem 1.4rem;
  transition: all 0.3s;
}

.link-teal:hover { background: var(--gold); color: var(--white); }

/* ══ FOOTER ══ */
footer {
  background: var(--bg);
  border-top: 1px solid rgba(201,168,76,0.15);
  padding: 2.5rem 2rem;
  text-align: center;
}

.footer-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  color: var(--teal);
  margin-bottom: 0.3rem;
}

.footer-phone {
  font-size: 0.88rem;
  color: var(--text-light);
  margin-bottom: 0.8rem;
}

.footer-copy { font-size: 0.75rem; color: var(--text-light); }
.footer-copy a { color: var(--text-light); text-decoration: underline; }

/* ══ PAGE ACCUEIL ══ */
.accroche { text-align: center; margin-bottom: 50px; }

.accroche h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  font-weight: 400;
  color: var(--teal);
  margin-bottom: 0.6rem;
}

.accroche p {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.3rem, 2.5vw, 1.7rem);
  font-weight: 400;
  color: var(--teal);
  line-height: 1.4;
}

.bloc-visuel {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  margin-bottom: 50px;
}

.bloc-visuel img.photo {
  width: 260px;
  height: 200px;
  object-fit: cover;
  border-radius: 4px;
}

.bloc-visuel img.logo-center { width: 200px; height: auto; }

.intro-text { margin-bottom: 40px; }

.intro-text p {
  margin-bottom: 0.8rem;
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.85;
}

.btn-wrapper { text-align: center; margin: 1.8rem 0 2.5rem; }

.btn-wrapper {
  text-align: center;
  margin-top: 2rem;
}

hr.sep {
  border: none;
  border-top: 1px solid rgba(201,168,76,0.25);
  margin: 0 0 2.5rem;
}

.kinesio-teaser p {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.85;
  margin-bottom: 1rem;
}

/* ══ PAGE SÉANCE ══ */
.etape { margin-bottom: 1.8rem; text-align: justify; }

.etape-titre {
  font-family: 'Lato', sans-serif;
  font-weight: 300;
  font-size: 0.95rem;
  color: var(--gold);
  display: inline;
}

.etape p {
  display: inline;
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.85;
}

.infos { margin-top: 2rem; }

.infos p {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.85;
  text-align: justify;
  margin-bottom: 1.2rem;
}

/* ══ PAGE TARIFS ══ */
.grille {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  align-items: start;
}

.colonne { display: flex; flex-direction: column; gap: 1rem; }

.col-titre {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--teal);
  line-height: 1.3;
}

.col-tarif { font-size: 0.88rem; color: var(--text-light); line-height: 1.5; }
.col-texte { font-size: 0.88rem; color: var(--text); line-height: 1.8; }

.col-sous-titre {
  font-size: 0.88rem;
  font-weight: 400;
  color: var(--text);
  margin-top: 0.5rem;
  text-decoration: underline;
}

.col-note { font-size: 0.82rem; color: var(--text-light); font-style: italic; }

/* ══ PAGE CONTACT ══ */
.intro { text-align: center; margin-bottom: 2.5rem; }
.intro p { font-size: 0.95rem; color: var(--text); line-height: 1.85; }

.form-wrapper { max-width: 560px; margin: 0 auto; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

.form-group { display: flex; flex-direction: column; gap: 0.3rem; margin-bottom: 1rem; }
.form-group label { font-size: 0.85rem; color: var(--text); }
.form-group label span { color: var(--teal); }

.form-group input,
.form-group textarea {
  font-family: 'Lato', sans-serif;
  font-weight: 300;
  font-size: 0.88rem;
  color: var(--text);
  background: var(--white);
  border: 1px solid rgba(201, 168, 76, 0.35);
  padding: 0.65rem 0.9rem;
  outline: none;
  transition: border-color 0.3s;
  width: 100%;
  border-radius: 0;
  -webkit-appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: #bbb; font-style: italic; }

.form-group input:focus,
.form-group textarea:focus { border-color: var(--teal); }

.form-group textarea { resize: vertical; min-height: 130px; }

.btn-envoyer {
  display: block;
  width: 100%;
  padding: 0.8rem;
  background: var(--gold);
  border: none;
  color: var(--white);
  font-family: 'Lato', sans-serif;
  font-weight: 300;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: background 0.3s;
  margin-top: 0.5rem;
}

.btn-envoyer:hover { background: #b8943d; }

/* ══ MOBILE ══ */
@media (max-width: 700px) {
  header { padding: 0 1.2rem; }

  nav {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 75px; left: 0; right: 0;
    background: var(--bg);
    padding: 2rem;
    gap: 1.5rem;
    border-bottom: 1px solid rgba(201,168,76,0.15);
  }

  nav.open { display: flex; }
  .hamburger { display: flex; }

  .bloc-visuel { flex-direction: column; gap: 1.5rem; }
  .bloc-visuel img.photo { width: 100%; height: 200px; }
  .bloc-visuel img.logo-center { width: 160px; }

  .grille { grid-template-columns: 1fr; }
  .colonne { border-bottom: 1px solid rgba(201,168,76,0.15); padding-bottom: 2rem; }
  .colonne:last-child { border-bottom: none; }

  .form-row { grid-template-columns: 1fr; }

  .content p,
  .etape,
  .infos p { text-align: left; }
}
