/* ============================================================
   ESPRIT YOGA TÉTEGHEM — Feuille de style
   Palette zen : vert sauge, sable, crème
   ============================================================ */

/* Palette tirée du logo : silhouettes pastel (rose, turquoise, corail, lavande, jaune) */
:root {
  --vert: #64b0ab;          /* turquoise du logo : boutons, liens */
  --vert-fonce: #3e6f6c;    /* turquoise foncé : titres */
  --sable: #ead9a0;         /* jaune pâle du logo */
  --creme: #faf7f1;   /* blanc cassé / lin, uni */
  --blanc: #ffffff;
  --encre: #3a3a36;
  --gris: #6f6f6f;          /* gris du texte du logo */
  --accent: #cf8398;        /* rose des silhouettes : détails, surtitres */
  --corail: #d98e58;        /* corail : bouton enfants, touches secondaires */
  --lavande: #a99cc9;       /* lavande : touches secondaires */
  --mauve: #9784c2;         /* mauve : bouton et cours enfants */
  --pale: #edf4f2;          /* fond de section, turquoise très pâle */
  --rayon: 14px;
  --ombre: 0 6px 24px rgba(46, 46, 40, 0.08);
}

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

html { scroll-behavior: smooth; font-size: 17px; } /* base agrandie pour le confort de lecture */

body {
  font-family: "Nunito", "Segoe UI", sans-serif;
  color: var(--encre);
  background: var(--creme);
  line-height: 1.65;
}

h1, h2, .titre-serif {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  line-height: 1.1;
  color: var(--vert-fonce);
}

h3 {
  font-family: "Quicksand", "Nunito", sans-serif;
  font-weight: 600;
  line-height: 1.2;
  color: var(--vert-fonce);
}

h1 { font-size: clamp(3rem, 7.5vw, 5rem); }
.titre-geant { font-size: clamp(4.2rem, 12vw, 8.5rem); line-height: 1; }
h2 { font-size: clamp(2.2rem, 5vw, 3.4rem); }
h3 { font-size: 1.35rem; }

img { max-width: 100%; display: block; }

a { color: var(--vert-fonce); }

.conteneur {
  width: min(1100px, 92%);
  margin: 0 auto;
}

/* ---------- En-tête / navigation ---------- */
/* Capsule flottante blanche (esprit maë), liseré multicolore en bordure */
header {
  position: sticky;
  top: 0.8rem;
  z-index: 50;
  background: transparent;
  padding: 0 0.8%;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.6rem 2rem;
  background: #ffffff;
  border-radius: 999px;
  box-shadow: 0 8px 30px rgba(46, 46, 40, 0.10);
  max-width: 1900px;
  margin: 0 auto;
}

.logo {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--vert-fonce);
  text-decoration: none;
}

.logo { display: flex; align-items: center; }

.logo img { height: 82px; width: auto; }

@media (max-width: 820px) {
  .logo img { height: 46px; }
}



.nav ul {
  display: flex;
  gap: 1.4rem;
  list-style: none;
}

.nav ul a {
  text-decoration: none;
  font-size: 1rem;
  letter-spacing: 0.03em;
  color: var(--encre);
  padding-bottom: 3px;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s, color 0.2s;
}

.nav ul a:hover, .nav ul a.actif {
  color: var(--vert);
  border-color: var(--vert);
}

/* Menu mobile */
.burger {
  display: none;
  background: none;
  border: none;
  font-size: 1.6rem;
  color: var(--vert-fonce);
  cursor: pointer;
}

@media (max-width: 820px) {
  .burger { display: block; }
  .nav ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 4%;
    right: 4%;
    margin-top: 0.5rem;
    flex-direction: column;
    gap: 0;
    background: var(--blanc);
    border-radius: 20px;
    box-shadow: var(--ombre);
  }
  .nav ul.ouvert { display: flex; }
  .nav ul li { text-align: center; }
  .nav ul a { display: block; padding: 0.9rem; border-bottom: none; }
}

/* ---------- Sections génériques ---------- */
section { padding: 4rem 0; }

.section-titre {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section-titre .surtitre {
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-size: 0.8rem;
  color: var(--accent);
  margin-bottom: 0.4rem;
}

/* ---------- Héros ---------- */
.heros {
  background: var(--creme);
  padding: 5rem 0 4rem;
}

.heros .conteneur {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3rem;
  align-items: center;
}

.heros p.accroche {
  font-size: 1.2rem;
  color: var(--gris);
  margin: 1rem 0 1.8rem;
}

@media (max-width: 820px) {
  .heros .conteneur { grid-template-columns: 1fr; text-align: center; }
  .heros img { margin: 0 auto; max-width: 320px; }
}

/* ---------- Boutons ---------- */
.btn {
  display: inline-block;
  padding: 0.9rem 2.1rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 500;
  letter-spacing: 0.03em;
  transition: transform 0.15s, box-shadow 0.15s;
}

.btn:hover { transform: translateY(-2px); box-shadow: var(--ombre); }

.btn-plein { background: var(--vert); color: var(--blanc); }
.btn-contour { border: 2px solid var(--vert); color: var(--vert-fonce); }
.btn-enfants { background: var(--mauve); color: var(--blanc); } /* mauve : inscriptions enfants */

.groupe-btn { display: flex; gap: 1rem; flex-wrap: wrap; }

@media (max-width: 820px) { .groupe-btn { justify-content: center; } }

/* ---------- Cartes ---------- */
.grille {
  display: grid;
  gap: 1.5rem;
}

.grille-2 { grid-template-columns: repeat(2, 1fr); }
.grille-3 { grid-template-columns: repeat(3, 1fr); }
.grille-4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 900px) {
  .grille-3, .grille-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .grille-2, .grille-3, .grille-4 { grid-template-columns: 1fr; }
}

.carte {
  background: var(--blanc);
  border: 1.5px solid rgba(100, 176, 171, 0.45);
  border-radius: 20px;
  padding: 1.8rem;
}

.carte h3 { margin-bottom: 0.6rem; }

.carte .etiquette {
  display: inline-block;
  background: var(--pale);
  color: var(--vert-fonce);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  padding: 0.25rem 0.8rem;
  border-radius: 999px;
  margin-bottom: 0.8rem;
}

/* ---------- Bandeau appel à l'action ---------- */
.bandeau {
  background: var(--vert);
  color: var(--blanc);
  text-align: center;
  border-radius: var(--rayon);
  padding: 1.6rem 1.5rem;
  max-width: 640px;
  margin: 0 auto;
}

.bandeau h2 { color: var(--blanc); margin-bottom: 0.3rem; font-size: 1.5rem; }
.bandeau p { margin-bottom: 1rem; opacity: 0.9; }
.bandeau .btn { background: var(--blanc); color: var(--vert-fonce); }

/* ---------- Citations ---------- */
blockquote {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.4rem;
  font-style: italic;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
  color: var(--vert-fonce);
}

blockquote footer {
  font-family: "Nunito", sans-serif;
  font-size: 0.9rem;
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent);
  margin-top: 1rem;
  background: none;
  padding: 0;
}

/* ---------- Planning ---------- */
.jour h3 {
  border-bottom: 2px solid var(--sable);
  padding-bottom: 0.4rem;
  margin-bottom: 0.9rem;
}

.creneau {
  padding: 0.6rem 0;
  border-bottom: 1px dashed rgba(110, 110, 100, 0.25);
  font-size: 1rem;
}

.creneau:last-child { border-bottom: none; }

.creneau .heure { font-weight: 600; color: var(--vert-fonce); }
.creneau .detail { color: var(--gris); }

/* Étiquettes de cours particuliers dans le planning : petites pastilles de rappel */
.tag-chaise, .tag-enfants {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 500;
  padding: 0.15rem 0.7rem;
  border-radius: 999px;
  margin-top: 0.3rem;
}

.tag-chaise { color: var(--accent); background: #ffffff; }   /* rose : yoga sur chaise, comme l'annonce */
.tag-enfants { color: var(--mauve); background: #ffffff; }   /* mauve : cours enfants, comme le bouton */

/* Repère visuel sur tout le créneau : liseré et fond colorés */
.creneau-chaise, .creneau-enfants {
  border-radius: 10px;
  padding: 0.6rem 0.8rem;
  margin: 0.4rem -0.3rem;
  border-bottom: none;
}

.creneau-chaise { background: #f9eef1; border-left: 4px solid var(--accent); }
.creneau-chaise .heure { color: var(--accent); }

.creneau-enfants { background: #f1eef7; border-left: 4px solid var(--mauve); }
.creneau-enfants .heure { color: var(--mauve); }

/* ---------- Tarifs ---------- */
.tarifs ul { list-style: none; }

.tarifs li {
  display: flex;
  justify-content: space-between;
  padding: 0.7rem 0;
  border-bottom: 1px dashed rgba(110, 110, 100, 0.25);
}

.tarifs li:last-child { border-bottom: none; }

.tarifs .prix { font-weight: 600; color: var(--accent); white-space: nowrap; margin-left: 1rem; }

/* ---------- Profs ---------- */
.prof { text-align: center; }

.prof img {
  width: 140px;
  height: 140px;
  object-fit: cover;
  border-radius: 50%;
  margin: 0 auto 1rem;
  background: var(--pale);
}

.prof .ecole { font-size: 0.95rem; color: var(--gris); }

/* ---------- Contact ---------- */
.contact-bloc {
  background: var(--blanc);
  border-radius: var(--rayon);
  padding: 2rem;
  box-shadow: var(--ombre);
}

.contact-bloc p { margin-bottom: 0.5rem; }

/* ---------- Pied de page ---------- */
footer.pied {
  background: var(--vert);
  color: #ffffff;
  padding: 3rem 0 2rem;
  margin-top: 4rem;
  font-size: 0.95rem;
}

footer.pied a { color: #ffffff; }

.pied-grille {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
  margin-bottom: 2rem;
}

.pied-logo {
  height: 74px;
  width: auto;
  background: #ffffff;
  padding: 8px 16px;
  border-radius: 18px;
  margin-bottom: 1rem;
}

.pied-liens {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem 2rem;
  justify-self: end;
  text-align: left;
}

.pied-liens a { text-decoration: none; }
.pied-liens a:hover { text-decoration: underline; }

.pied-eco {
  border-top: 1px solid rgba(255, 255, 255, 0.35);
  padding-top: 1.2rem;
  text-align: center;
  font-size: 0.9rem;
  opacity: 0.95;
}

.pied-bas {
  text-align: center;
  font-size: 0.85rem;
  margin-top: 0.6rem;
}

@media (max-width: 700px) {
  .pied-grille { grid-template-columns: 1fr; text-align: center; }
  .pied-liens { justify-self: center; text-align: center; }
  .pied-logo { margin: 0 auto 1rem; }
}

/* ---------- Encart nouveauté (Yoga sur chaise) ---------- */
.nouveaute {
  background: #f9f0f3; /* rose très pâle, tiré du logo */
  border-radius: var(--rayon);
  padding: 0.9rem 1.3rem;
  display: flex;
  align-items: center;
  gap: 1.2rem;
  flex-wrap: wrap;
}

.nouveaute .badge {
  color: var(--accent);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  white-space: nowrap;
}

.nouveaute h3 { color: var(--accent); margin-bottom: 0.2rem; }
.nouveaute .contenu { flex: 1; min-width: 220px; }

/* ---------- BiBYoga : recherche et galerie ---------- */
.recherche {
  display: block;
  width: min(500px, 100%);
  margin: 0 auto 2rem;
  padding: 0.9rem 1.4rem;
  border: 2px solid var(--sable);
  border-radius: 999px;
  font-family: "Nunito", sans-serif;
  font-size: 1rem;
  background: var(--blanc);
  color: var(--encre);
}

.recherche:focus { outline: none; border-color: var(--vert); }

.livre {
  background: var(--blanc);
  border: 1.5px solid rgba(100, 176, 171, 0.45);
  border-radius: 20px;
  overflow: hidden;
  text-align: center;
}

.livre img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  background: var(--pale);
}

.livre .infos { padding: 0.8rem; }
.livre .numero {
  display: inline-block;
  background: var(--pale);
  color: var(--vert-fonce);
  font-size: 0.75rem;
  padding: 0.15rem 0.7rem;
  border-radius: 999px;
  margin-bottom: 0.4rem;
}
.livre .titre { font-weight: 500; font-size: 1rem; }
.livre .auteur { font-size: 0.92rem; color: var(--gris); }

.livre .bascule {
  margin-top: 0.5rem;
  background: none;
  border: 1px solid var(--vert);
  color: var(--vert-fonce);
  border-radius: 999px;
  padding: 0.3rem 0.9rem;
  font-family: "Nunito", sans-serif;
  font-size: 0.8rem;
  cursor: pointer;
}

.livre .bascule:hover { background: var(--pale); }

/* ---------- Page professeurs ---------- */
.bio { max-width: 800px; margin: 0 auto 3rem; }
.bio h2 { margin-bottom: 0.3rem; }
.bio .lignee { color: var(--accent); font-style: italic; margin-bottom: 1rem; }
.bio .signature { font-style: italic; color: var(--gris); margin-top: 1rem; }
.bio + .bio { border-top: 1px solid var(--sable); padding-top: 3rem; }

/* ---------- Divers ---------- */
.texte-centre { text-align: center; }
.marge-haut { margin-top: 1.5rem; }
.note { font-size: 0.95rem; color: var(--gris); font-style: italic; }
