/* ========================= */
/* 1. RESET & BASE */
/* ========================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
}

body {
  font-family: "Georgia", serif;
  color: #26403D;
  line-height: 1.6;
  min-height: 100vh;
  background: linear-gradient(
    to bottom,
    #d8cfe6 0%,
    #95c9a9 60%,
    #9bb48a 100%
  );
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
}


/* ========================= */
/* 2. NAVBAR (COMMUN) */
/* ========================= */
.navbar {
  background: #26403D;
  padding: 1rem;
  text-align: center;
}

.navbar ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 2rem;
}

.navbar a {
  color: #faf7f4;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s;
}

.navbar a:hover {
  color: #D68B7B;
}


/* ===================================================== */
/* 3. HERO - COACHING */
/* ===================================================== */
.coaching-hero {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  text-align: center;
  padding: 3rem 1.5rem;
  position: relative;
}

.coaching-hero .hero-text {
  max-width: 600px;
  z-index: 2;
}

.coaching-hero h1 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin-bottom: 1rem;
  color: #26403D;
}

.coaching-hero p {
  font-size: 1.2rem;
  font-style: italic;
  color: #333;
}

/* Images décoratives */
.hero-image {
  width: 140px;
  opacity: 0.9;
}

.hero-image img {
  width: 100%;
  height: auto;
  display: block;
}


/* ===================================================== */
/* 4. SECTIONS - COACHING */
/* ===================================================== */
.coaching-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  max-width: 1100px;
  margin: 3rem auto;
  padding: 2rem;
  background: #faf7f4;
  border-radius: 25px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.coaching-section.reverse {
  flex-direction: row-reverse;
}

.coaching-text {
  flex: 1;
  text-align: left;
}

.coaching-text h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: #26403D;
  border-left: 4px solid #D68B7B;
  padding-left: 0.8rem;
}

.coaching-text p {
  margin-bottom: 1rem;
  color: #444;
  line-height: 1.8;
  font-size: 1.05rem;
}

.coaching-text blockquote {
  margin-top: 1rem;
  padding: 1rem 1.5rem;
  background: #f2ebe9;
  border-left: 4px solid #D68B7B;
  font-style: italic;
  color: #333;
  border-radius: 10px;
}

.coaching-image {
  flex: 1;
  text-align: center;
}

.coaching-image img {
  max-width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.12);
}


/* ===================================================== */
/* 5. HIGHLIGHTS - COACHING */
/* ===================================================== */
.coaching-highlight {
  max-width: 1100px;
  margin: 3rem auto;
  padding: 3rem 2rem;
  background: #faf7f4;
  border-radius: 25px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.1);
  text-align: center;
}

.coaching-highlight h2 {
  font-size: 1.8rem;
  color: #26403D;
  margin-bottom: 1.5rem;
  border-bottom: 2px solid #D68B7B;
  display: inline-block;
  padding-bottom: 0.3rem;
}

.coaching-highlight ul {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
  text-align: left;
  display: inline-block;
}

.coaching-highlight ul li {
  font-size: 1.05rem;
  margin-bottom: 0.8rem;
  padding-left: 1.2rem;
  position: relative;
  color: #444;
}

.coaching-highlight ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #D68B7B;
  font-weight: bold;
}

.coaching-highlight img {
  margin-top: 1.5rem;
  max-width: 80%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.12);
}


/* ===================================================== */
/* 6. HERO - CONTACT */
/* ===================================================== */
.contact-hero {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 3rem 1.5rem;
  position: relative;
}

.contact-hero .hero-text {
  max-width: 700px;
}

.contact-hero h1 {
  font-size: clamp(2rem, 4vw, 2.6rem);
  margin-bottom: 1rem;
  color: #26403D;
}

.contact-hero p {
  font-size: 1.1rem;
  color: #333;
  font-style: italic;
}

/* ========================= */
/* SECTION CONTACT INFO */
/* ========================= */
.contact-info {
  max-width: 700px;              /* largeur contrôlée */
  margin: 3rem auto;             /* centre horizontalement */
  padding: 2.5rem;
  background: #faf7f4;
  border-radius: 20px;
  text-align: center;            /* centre le texte */
  box-shadow: 0 4px 14px rgba(0,0,0,0.08);
}

.contact-info h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: #26403D;
  border-bottom: 2px solid #D68B7B;
  display: inline-block;
  padding-bottom: 0.4rem;
}

.contact-info p {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: #333;
}

.contact-info a {
  color: #D68B7B;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s;
}

.contact-info a:hover {
  color: #b97064;
  text-decoration: underline;
}

/* ========================= */
/* SECTION CONTACT FORM */
/* ========================= */
.contact-form {
  max-width: 700px;
  margin: 3rem auto;
  padding: 2.5rem;
  background: #faf7f4;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 4px 14px rgba(0,0,0,0.08);
}

.contact-form h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: #26403D;
  border-bottom: 2px solid #D68B7B;
  display: inline-block;
  padding-bottom: 0.4rem;
}

.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.form-group {
  text-align: left;
}

.form-group label {
  display: block;
  margin-bottom: 0.4rem;
  font-weight: bold;
  color: #26403D;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.8rem;
  border-radius: 10px;
  border: 1px solid #ccc;
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #D68B7B;
  outline: none;
  box-shadow: 0 0 6px rgba(214, 139, 123, 0.4);
}

.contact-form button {
  margin-top: 1rem;
}






/* ===================================================== */
/* 8. QUOTE (COMMUN) */
/* ===================================================== */
.quote-section {
  text-align: center;
  margin: 4rem auto;
  max-width: 900px;
  padding: 2rem;
}

.quote-section img {
  max-width: 180px;
  margin-bottom: 1rem;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.quote-section blockquote {
  font-size: 1.3rem;
  font-style: italic;
  color: #26403D;
  margin-bottom: 0.8rem;
}

.quote-section span {
  display: block;
  margin-top: 0.5rem;
  font-size: 1rem;
  color: #555;
}


/* ===================================================== */
/* 9. CTA (COMMUN) */
/* ===================================================== */
.cta {
  text-align: center;
  margin: 3rem 0;
}

.btn-cta {
  font-size: 1.2rem;
  padding: 1rem 2rem;
  background: #D68B7B;
  color: white;
  border-radius: 30px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  text-decoration: none;
  display: inline-block;
  transition: transform 0.2s, background 0.3s;
}

.btn-cta:hover {
  background: #b97064;
  transform: scale(1.05);
}

.cta-note {
  margin-top: 1rem;
  font-size: 0.95rem;
  color: #333;
  font-style: italic;
}


/* ===================================================== */
/* 10. FOOTER (COMMUN) */
/* ===================================================== */
.footer {
  background: #26403D;
  color: #faf7f4;
  padding: 2rem 1rem 1rem;
  margin-top: 3rem;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1100px;
  margin: auto;
  gap: 2rem;
  align-items: flex-start;
}

.footer-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.footer-logo img {
  width: 150px;
  height: auto;
  margin-bottom: 0.8rem;
}

.footer-logo h3 {
  font-size: 1.2rem;
  color: #fff;
}

.footer h4 {
  margin-bottom: 1rem;
  color: #fff;
}

.footer p, .footer a {
  color: #faf7f4;
  font-size: 0.95rem;
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-bottom {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.85rem;
  border-top: 1px solid rgba(255,255,255,0.2);
  padding-top: 1rem;
}


/* ===================================================== */
/* 11. RESPONSIVE */
/* ===================================================== */
@media (max-width: 1024px) {
  .coaching-section,
  .contact-section {
    flex-direction: column;
    text-align: center;
  }

  .coaching-section.reverse,
  .contact-section.reverse {
    flex-direction: column;
  }

  .coaching-text,
  .contact-text {
    text-align: center;
  }

  .coaching-highlight ul {
    text-align: center;
  }
}

@media (max-width: 768px) {
  .navbar ul {
    flex-direction: column;
    gap: 1rem;
  }

  .coaching-hero h1,
  .contact-hero h1 {
    font-size: 1.8rem;
  }

  .coaching-hero p,
  .contact-hero p {
    font-size: 1rem;
  }

  .coaching-content,
  .contact-content {
    border-radius: 20px;
    padding: 2rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .hero-image {
    display: none;
  }

  .quote-section img {
    max-width: 120px;
  }
}
