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

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  color: #222;
  background-color: #f7f7f5;
}

/* LAYOUT GLOBAL */
.wrapper {
  max-width: 960px;
  margin: 0 auto;
  padding: 1.5rem;
}

/* Logo uniquement dans le header (évite les conflits) */
header .logo img {
  height: 140px;
  width: auto;
  display: block;
  margin: 0 auto;
}

/* HEADER + LOGO + MENU */
header {
  padding-top: 1rem;
  padding-bottom: 0.6rem;
  text-align: center;
}

header .logo {
  margin-bottom: 0.4rem;
}

/* MENU HORIZONTAL */
nav {
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  padding: 0.5rem 0;
}

nav ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
}

nav a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  letter-spacing: 0.03em;
  padding-bottom: 0.25rem;
  position: relative;
}

nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background-color: #d48a1c; /* rappel tilaka */
  transition: width 0.2s ease-out;
}

nav a:hover::after {
  width: 100%;
}

nav a.active {
  color: #000;
}

nav a.active::after {
  width: 100%;
}

/* CONTENU */
main {
  margin-top: 2rem;
  margin-bottom: 3rem;
}

h1 {
  font-size: 1.9rem;
  margin-bottom: 1rem;
}

h2 {
  font-size: 1.4rem;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}

p {
  margin-bottom: 0.7rem;
}

ul {
  margin-left: 1.3rem;
  margin-bottom: 0.7rem;
}

.promise {
  font-style: italic;
  margin-top: 20px;
}

.note {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: #555;
}

.note a {
  color: #222; /* même couleur que les liens du contenu */
  text-decoration: none;
  border-bottom: 1px solid rgba(212, 138, 28, 0.6); /* rappel tilaka */
  padding-bottom: 1px;
}

.note a:hover {
  border-bottom-color: #d48a1c;
  color: #000;
}

.subtitle {
  font-size: 1.05rem;
  color: #555;
  margin-bottom: 1rem;
}

/* FOOTER */
footer {
  border-top: 1px solid #ddd;
  padding: 1rem 0;
  font-size: 0.85rem;
  text-align: center;
  color: #666;
}

/* RESPONSIVE SIMPLE */
@media (max-width: 600px) {
  .wrapper {
    padding: 1rem;
  }

  header .logo img {
    height: 64px;
  }

  h1 {
    font-size: 1.6rem;
  }
}

/* Lien CTA (ex: yoga) */
.cta-link {
  display: inline-block;
  margin-top: 0.35rem;
  text-decoration: none;
  color: #222;
  font-weight: 600;
  border-bottom: 2px solid #d48a1c;
  padding-bottom: 2px;
}

.cta-link:hover {
  color: #000;
}

/* Bouton CTA (liens qui ressemblent à un bouton) */
.btn{
  display:inline-block;
  padding:.7rem 1rem;
  border-radius:6px;
  text-decoration:none;
  font-weight:600;
  background:#222;
  color:#fff;
}
.btn:hover{ opacity:.92; }

/* Ligne CTA + petite note */
.cta-row{ margin:1.2rem 0; display:flex; gap:.8rem; align-items:center; flex-wrap:wrap; }
.cta-note{ color:#555; font-size:.95rem; }

.editorial {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid #ddd;
  text-align: center;
}

.portrait-coach {
  max-width: 300px;
  margin: 0 0 1.5rem 1.5rem;
}

.portrait-right {
  float: right;
}

.portrait-coach img {
  width: 100%;
  height: auto;
  border-radius: 4px;
  display: block;
}

/* Nettoyage du float après le bloc de texte si nécessaire */
.clearfix::after {
  content: "";
  display: block;
  clear: both;
}

/* Mobile : on repasse l’image au-dessus du texte */
@media (max-width: 768px) {
  .portrait-right {
    float: none;
    margin: 1.5rem auto;
    max-width: 220px;
  }
}

.hero {
  position: relative;
  margin-top: 1.5rem;
  margin-bottom: 2rem;
}

.hero-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 4px; /* comme ton portrait */
}

/* Texte par-dessus l'image */
.hero-text {
  position: absolute;
  left: 1rem;
  bottom: 2.75rem;
  max-width: 520px;
  padding: 1rem 1rem;
  background: rgba(247, 247, 245, 0.85); /* proche du fond */
  border-radius: 4px;
}

.hero-text h1 {
  margin: 0 0 0.5rem 0;
  font-size: 1.6rem;
}

.hero-text p {
  margin: 0 0 0.5rem 0;
  text-align: left; /* évite ton justify global si tu préfères ici */
}

/* Mobile : texte sous l'image */
@media (max-width: 600px) {
  .hero-text {
    position: static;
    margin-top: 0.75rem;
    padding: 0;
    background: transparent;
  }
}

/* Accueil (si l'image est trop haute) : borne de hauteur */
.home-hero .page-image{
  max-height:420px;
  object-fit:cover;
}
@media (max-width:768px){
  .home-hero .page-image{ max-height:300px; }
}

.illustration-coaching {
  max-width: 100%;
  margin: 1.5rem 0 2rem 0;
}

.illustration-coaching img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 4px; /* même logique que portrait / hero */
}

.content-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;
  margin: 1.5rem 0;
}

/* Images de page : cohérence + bord léger */
/*.page-figure{ margin:1.2rem 0; }*/
.page-image{
  width:100%;
  height:auto;
  display:block;
  border-radius:4px;
  box-shadow:0 1px 10px rgba(0,0,0,.08);
}

/* Liens dans le contenu (hors menu) */
main a {
  color: #222;
  text-decoration: none;
  border-bottom: 1px solid rgba(212, 138, 28, 0.6); /* rappel tilaka */
  padding-bottom: 1px;
}

main a:hover {
  border-bottom-color: #d48a1c;
}

main p {
  text-align: justify;
  hyphens: auto;
}

/* ----------------------------
   FORMULAIRE CONTACT
   ---------------------------- */
.contact-form{
  margin-top: 1rem;
  max-width: 720px; /* "couvrant" sans prendre toute la largeur */
}

.contact-form .form-row{
  margin-bottom: 1rem;
}

/* évite les <br> nécessaires, mais même si tu les gardes ça marche */
.contact-form label{
  display: inline-block;
  font-weight: 600;
  margin-bottom: .35rem;
}

/* champs plus grands + harmonisés */
.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea{
  width: 100%;
  font: inherit;
  color: #222;
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 6px;
  padding: 0.7rem 0.8rem;
  line-height: 1.4;
}

/* message plus confortable */
.contact-form textarea{
  min-height: 180px;
  resize: vertical;
}

/* focus propre et cohérent avec le tilaka */
.contact-form input:focus,
.contact-form textarea:focus{
  outline: none;
  border-color: #d48a1c;
  box-shadow: 0 0 0 3px rgba(212, 138, 28, 0.18);
}

/* zone d'action : bouton + note comme tes CTA */
.contact-form .form-actions{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .75rem 1rem;
  margin-top: 1.25rem;
}

/* (optionnel) petit espace avant reCAPTCHA */
.contact-form .g-recaptcha{
  margin-top: .25rem;
}

/* Cadre pour les images */
.img-card{
  background: #fff;                 /* le cadre blanc */
  border: 1px solid rgba(0,0,0,.10);/* liseré fin */
  border-radius: 22px;              /* arrondis */
  padding: 10px;                    /* “marge” blanche autour de l’image */
  box-shadow: 0 6px 20px rgba(0,0,0,.12); /* ombre douce */
  display: inline-block;            /* s’adapte à la largeur */
  margin: 1.2rem 0;
}

.img-card img{
  display: block;                   /* enlève le petit espace inline */
  width: 100%;
  height: auto;
  border-radius: 16px;              /* arrondi intérieur (un peu moins que le cadre) */
}