/* 🎸 Style global */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  line-height: 1.6;
  color: #333;
}

section {
  padding: 50px 20px;
}
h2 {
    color: #c44;
    margin-bottom: 20px;
}

/* === HERO HEADER === */
.hero-header {
  position: relative;
  height: 90vh;
  background: url("Images/Banniere.jpg") center/cover no-repeat;
  color: white;
}

.hero-header .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55); /* léger assombrissement pour la lisibilité du texte */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1rem 2rem;
}

/* NAVIGATION */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: #e0b973;
}

/* s'assurer que le parent sert de référence pour le positionnement absolu */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  background-color: #252222; /* fond noir */
  position: relative; /* <-- important */
}

/* cacher la checkbox visuellement (déjà présent) */
#menu-toggle { display: none; }

/* icone burger - par défaut cachée sur desktop */
.menu-icon { display: none; font-size: 26px; cursor: pointer; color: #e74c3c; }

/* menu desktop (ligne) */
.menu { list-style: none; display: flex; gap: 1.5rem; margin:0; padding:0; }

.menu.open { display: flex !important; flex-direction: column; }

.menu a {
  color: #fff; /* texte blanc */
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.menu a:hover {
  color: #e74c3c; /* accent rouge */
}

/* --- Version mobile --- */
@media (max-width: 768px) {
  .menu-icon { display: block; }

  /* hide the horizontal menu by default on mobile */
  .menu {
    display: none;
    position: absolute;
    top: 62px; /* hauteur du header, à ajuster si nécessaire */
    left: 0;
    right: 0;
    background: #252222;
    flex-direction: column;
    gap: 0;
    padding: 10px 20px;
    box-shadow: 0 6px 18px rgba(255, 255, 255, 0.08);
    z-index: 1100;
  }

  .menu li {
    border-top: 1px solid rgba(255, 255, 255, 1);
  }
  .menu li:first-child {
    border-top: none;
  }

  .menu a {
    display: block;
    padding: 12px 0;
    color: #fff;
  }

  /* <-- UTILISER LA .menu DIRECTEMENT (input et ul sont siblings) */
  #menu-toggle:checked ~ .menu {
    display: flex;
  }
}

/* HERO TEXT */
.hero-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  padding-bottom: 4rem; /* moins d’espace en bas */
  padding-top: 6rem; /* ajoute un espace au-dessus */
  transform: translateY(0px); /* déplace légèrement le bloc vers le haut */
  transition: transform 0.3s ease, padding 0.3s ease;
}

.hero-content h2 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
  font-weight: 700;
  color: #f5e9d7; /* Blanc chaud */
  text-shadow: 0 0 12px rgba(255, 255, 255, 0.4),
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: #e0b973; /* Doré doux */
  text-shadow: 0 0 8px rgba(224, 185, 115, 0.4),
               0 0 16px rgba(224, 185, 115, 0.2);
}

.cta-button {
  background-color: #e0b973;
  color: #000;
  padding: 0.8rem 1.6rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s;
}

.cta-button:hover {
  background-color: #d1a85c;
}

.logo img {
  height: 60px;
  width: auto;
  transition: transform 0.3s ease;
}

.logo img:hover {
  transform: scale(1.05);
}

nav ul {
  list-style: none;
  display: flex;
  gap: 25px;
  margin: 0;
  padding: 0;
}

nav a {
  text-decoration: none;
  color: #fdf5e6; /* blanc crème assorti au logo */
  font-weight: 600;
  transition: color 0.3s ease;
}

nav a:hover {
  color: #ffb347;
}

/* ✅ Version tablette */
@media (max-width: 1024px) {
  .hero-content {
    transform: translateY(-100px);
    padding-top: 4rem;
  }
}

/* MOBILE */
@media (max-width: 768px) {
  .hero-header {
    height: auto;
    padding: 80px 20px; /* Ajoute de l’espace autour du texte */
    background-position: top;
    background-size: cover;
    background-position: center;
  }
  
  .hero-content {
    transform: none; /* remet au centre */
    padding-top: 2rem;
    padding-bottom: 3rem;
  }

  .nav-links {
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
  }

  .header-hero h1 {
    font-size: 2rem; /* Texte plus petit sur mobile */
  }

  .hero-content h2 {
    font-size: 1.6rem;
  }

  .hero-content p {
    font-size: 1rem;
  }
}


.credit-photo {
  position: absolute;
  bottom: 10px;
  right: 10px;
  font-size: 0.7rem;
  color: white;
  background: rgba(0, 0, 0, 0.5);
  padding: 3px 6px;
  border-radius: 5px;
  text-align: right;
}
nav {
    background: #222;
    padding: 10px;
    text-align: center;
}
nav a {
    color: white;
    margin: 0 15px;
    text-decoration: none;
    font-weight: bold;
}
section {
    padding: 60px 20px;
    max-width: 1500px;
    margin: auto;
}

/* Besoin */
.problem {
  background: #fafafa; /* léger ton chaud pour rester cohérent avec ton thème */
  padding: 60px 20px;
  color: #333;
}

.problem-container {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.problem h2 {
  color: #e74c3c;
  margin-bottom: 25px;
  font-size: 1.8em;
}

.problem p {
  line-height: 1.7;
  font-size: 1.1em;
  margin-bottom: 20px;
}

.problem-highlight {
  margin-top: 30px;
  font-weight: 600;
  color: #e74c3c;
  font-size: 1.15em;
}

/* 📱 Adaptation mobile */
@media (max-width: 768px) {
  .problem h2 {
    font-size: 1.5em;
  }

  .problem p {
    font-size: 1em;
  }
}

.solution {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 70px 20px;
  background: #fafafa;
  color: #222;
  max-width: 1100px;
  margin: 0 auto;
}

.solution-container {
  max-width: 850px;
  margin: 0 auto;
  text-align: center;
}

.solution h2 {
  color: #e74c3c;
  font-size: 1.9em;
  margin-bottom: 30px;
}

.solution h3 {
  color: #e7503c;
  font-size: 1.6em;
  margin-bottom: 30px;
}

.solution p {
  line-height: 1.7;
  font-size: 1.1em;
  margin-bottom: 20px;
}

.solution-points {
  list-style: none;
  padding: 0;
  margin: 30px 0;
  text-align: left;
  display: inline-block;
}

.solution-points li {
  font-size: 1.05em;
  margin-bottom: 12px;
  line-height: 1.6;
}

.solution-highlight {
  margin-top: 30px;
  font-weight: 600;
  color: #e74c3c;
  font-size: 1.15em;
}

.solution .image {
  flex: 1;
  text-align: right;
}

.solution img {
  max-width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.solution img:hover {
  transform: scale(1.03);
}

/* 📱 Mobile responsive */
@media (max-width: 768px) {
  .solution h2 {
    font-size: 1.5em;
  }

  .solution p, .solution-points li {
    font-size: 1em;
  }
  .solution {
    flex-direction: column-reverse;
    text-align: center;
  }

  .solution .image {
    text-align: center;
  }

  .solution img {
    max-width: 80%;
  }
}

.benefices {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 70px 20px;
  background: #fafafa;
  color: #222;
  max-width: 1100px;
  margin: 0 auto;
  flex-direction: column;
}

.benefices-container {
  max-width: 850px;
  margin: 0 auto;
  text-align: center;
}

.benefices h2 {
  color: #e74c3c;
  font-size: 1.9em;
  margin-bottom: 30px;
}

.benefices p {
  font-size: 1.1em;
  line-height: 1.7;
  margin-bottom: 25px;
}

.benefices-list {
  list-style: none;
  padding: 0;
  margin: 30px 0;
  text-align: left;
  display: inline-block;
}

.benefices-list li {
  font-size: 1.05em;
  margin-bottom: 14px;
  line-height: 1.6;
}

.benefices-highlight {
  margin-top: 35px;
  font-weight: 600;
  color: #e74c3c;
  font-size: 1.15em;
}

/* 📱 Mobile */
@media (max-width: 768px) {
  .benefices h2 {
    font-size: 1.5em;
  }

  .benefices p, .benefices-list li {
    font-size: 1em;
  }
  .benefices img {
    max-width: 80%;
  }
}

.deroulement {
  background-color: #fafafa;
  padding: 80px 20px;
  text-align: center;
  color: #222;
}

.deroulement-container {
  max-width: 900px;
  margin: 0 auto;
}

.deroulement h2 {
  color: #e74c3c;
  font-size: 1.9em;
  margin-bottom: 40px;
}

.deroulement p {
  font-size: 1.1em;
  line-height: 1.7;
  margin-bottom: 30px;
}

.etapes {
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin: 40px 0;
  text-align: left;
}

.etape {
  background: #fafafa;
  border-radius: 15px;
  padding: 20px 25px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: transform 0.2s ease;
}

.etape:hover {
  transform: scale(1.02);
}

.etape h3 {
  color: #e74c3c;
  font-size: 1.2em;
  margin-bottom: 10px;
}

.deroulement-conclusion {
  font-weight: 600;
  color: #e74c3c;
  margin-top: 40px;
  font-size: 1.15em;
}

/* 📱 Mobile */
@media (max-width: 768px) {
  .deroulement h2 {
    font-size: 1.6em;
  }
  .etape h3 {
    font-size: 1.1em;
  }
  .deroulement p {
    font-size: 1em;
  }
}


/* 🎶 Section À propos */
.apropos {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    max-width: 1000px;
}

.apropos-img {
    max-width: 300px;
    border-radius: 10px;
    flex: 1;
}

.apropos-texte {
    flex: 2;
    min-width: 250px;
}

/* Public cible */
.public-cible {
  padding: 60px 20px;
  background: #fafafa;
  text-align: center;
}

.public-cible h2 {
  color: #e74c3c;
  margin-bottom: 20px;
}

.public-cible .intro {
  max-width: 900px;
  margin: 0 auto 40px;
  font-size: 1.1em;
  color: #333;
  line-height: 1.6;
}

.profils {
  display: flex;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.profil {
  background: white;
  border-radius: 16px;
  padding: 25px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  flex: 1 1 300px;
  max-width: 450px;
  text-align: left;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.profil:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.15);
}

.profil-photo {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 15px;
}

.profil h3 {
  color: #e74c3c;
  margin-bottom: 10px;
}

.profil p {
  color: #333;
  line-height: 1.5;
}

.public-cible .objectif {
  margin-top: 40px;
  font-weight: 500;
  font-size: 1.1em;
}

/* 📱 Responsive */
@media (max-width: 768px) {
  .profils {
    flex-direction: column;
    align-items: center;
  }

  .profil {
    text-align: center;
  }

  .profil p {
    text-align: center;
  }
}

#localisation {
  text-align: center;
  padding: 50px 20px;
  /*background-color: #f5f5f5;*/
  color: #3b2f2f;
}

#localisation p {
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

/* 💰 Section Tarifs */
.tarifs div {
    background: #f5f5f5;
    padding: 20px;
    border-radius: 10px;
    flex: 1;
    min-width: 200px;
    text-align: center;
}
.tarifs ul {
    list-style: none;
    padding: 0;
}
.tarifs li {
    background: #f4f4f4;
    margin: 10px 0;
    padding: 15px;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.tarifs button {
  margin-top: 10px;
  background: #333; /* ✅ plus sobre */
  color: white;
  padding: 10px 50px;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.3s ease;
}

.tarifs button:hover {
  transform: scale(1.05);
  background: #555; /* ✅ variation sobre */
}


/* Section contact */
.contact {
  background: #fafafa;
  color: #222;
  text-align: center;
  padding: 80px 20px;
  border-top: 2px solid #eee;
}

.contact-container {
  max-width: 700px;
  margin: 0 auto;
}

.contact h2 {
  font-size: 2em;
  margin-bottom: 20px;
  color: #e74c3c;
}

.contact-text {
  font-size: 1.1em;
  line-height: 1.7;
  margin-bottom: 40px;
  color: #444;
}

.whatsapp-button {
  display: inline-block;
  background-color: #25d366;
  color: #fff;
  font-weight: 600;
  font-size: 1.2em;
  padding: 15px 35px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.25s ease;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.whatsapp-button:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

.contact-subtext {
  font-size: 0.95em;
  margin-top: 25px;
  color: #666;
}

@media (max-width: 768px) {
  .contact h2 {
    font-size: 1.6em;
  }
  .contact-text {
    font-size: 1em;
  }
  .whatsapp-button {
    font-size: 1.1em;
    padding: 12px 28px;
  }
}


/* Section Formules */
.offre {
  background-color: #fff;
  padding: 100px 20px;
  text-align: center;
}

.offre-container {
  max-width: 850px;
  margin: 0 auto;
}

.offre h2 {
  color: #e74c3c;
  font-size: 1.9em;
  margin-bottom: 30px;
}

.offre .intro {
  font-size: 1.15em;
  margin-bottom: 40px;
  color: #333;
  line-height: 1.7;
}

.details-offre {
  list-style: none;
  padding: 0;
  margin: 0 auto 40px;
  text-align: left;
  max-width: 600px;
}

.details-offre li {
  margin-bottom: 15px;
  background: #fdfaf6;
  border-left: 4px solid #e74c3c;
  padding: 15px 20px;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.prix {
  margin: 40px 0 20px;
}

.prix p {
  font-size: 1.4em;
  color: #e74c3c;
  font-weight: bold;
}

.offre .cta {
  background-color: #e74c3c;
  color: #fff;
  border: none;
  border-radius: 12px;
  padding: 14px 32px;
  font-size: 1.1em;
  cursor: pointer;
  transition: all 0.2s ease;
}

.offre .cta:hover {
  transform: scale(1.05);
  background-color: #cf3c2d;
}

.offre .note {
  color: #555;
  font-size: 1em;
  margin-top: 30px;
  font-style: italic;
}

/* 📱 Responsive */
@media (max-width: 768px) {
  .offre h2 {
    font-size: 1.6em;
  }
  .offre .intro {
    font-size: 1em;
  }
  .details-offre li {
    font-size: 0.95em;
  }
  .offre .cta {
    width: 100%;
  }
}



/* 🎄 Section Offre de Noël */
/*
.offre-noel {
  background: #fff8f0;
  padding: 4rem 2rem;
  border-top: 3px solid #f8b26a;
  border-bottom: 3px solid #f8b26a;
}

.offre-noel-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.offre-noel-text {
  flex: 1 1 450px;
}

.offre-noel-text h2 {
  color: #d2691e;
  font-size: 2rem;
  margin-bottom: 1rem;
}

.offre-noel-text p {
  font-size: 1.1rem;
  color: #444;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.cta-noel {
  display: inline-block;
  background-color: #f8b26a;
  color: white;
  padding: 0.9rem 1.6rem;
  border-radius: 2rem;
  text-decoration: none;
  font-weight: bold;
  transition: transform 0.2s ease, background-color 0.3s ease;
}

.cta-noel:hover {
  background-color: #e5964d;
  transform: scale(1.05);
}

.offre-noel-image {
  flex: 1 1 350px;
  text-align: center;
}

.offre-noel-image img {
  max-width: 100%;
  border-radius: 1rem;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
*/

/* 📱 Responsive */
/*
@media (max-width: 768px) {
  .offre-noel-container {
    flex-direction: column;
    text-align: center;
  }

  .offre-noel-text h2 {
    font-size: 1.7rem;
  }
}
*/

/* Section Témoignages */
#temoignages {
  padding: 50px 20px;
  background: #f9f9f9;
  text-align: center;
}

.temoignage {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 800px;
  margin: 20px auto;
  gap: 20px;
  text-align: left;
}

.temoignage img.temoignage-photo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.temoignage blockquote {
  background: white;
  padding: 15px 20px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  font-style: italic;
  flex: 1;
}

.temoignage .stars {
  font-size: 25px; /* Taille des étoiles */
  color: #f1c40f;
  margin-top: 5px;
  text-align: left;
}


/* Container photo + étoiles */
.temoignage-photo-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Fade-out sur le dernier témoignage visible */
.fade-out {
  position: relative;
}

.fade-out blockquote::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(transparent, #f9f9f9);
  border-radius: inherit;
  pointer-events: none;
}

/* Avis cachés avant clic */
.hidden {
  display: none;
}

/* Bouton Voir plus */
#voir-plus {
  background: #e74c3c;
  color: white;
  border: none;
  padding: 12px 20px;
  border-radius: 8px;
  font-size: 1.1em;
  cursor: pointer;
  margin-top: 10px;
  transition: 0.3s;
}

#voir-plus:hover {
  background: #c0392b;
}

/* Bouton voir moins */
#voir-moins {
  background: #e74c3c;
  color: white;
  border: none;
  padding: 12px 20px;
  border-radius: 8px;
  font-size: 1.1em;
  cursor: pointer;
  margin-top: 15px;
  transition: 0.3s;
}

#voir-moins:hover {
  background: #c0392b;
}

/* Version mobile */
@media (max-width: 768px) {
  .temoignage .stars {
    text-align: center;
    font-size: 24px; /* encore un peu plus gros sur mobile si tu veux */
  }
}

@media (max-width: 768px) {
  .temoignage {
    flex-direction: column;
    text-align: center;
  }

  .temoignage blockquote {
    text-align: center;
  }
}

/* FAQ */
.faq {
  background: #fafafa;
  padding: 70px 20px;
  color: #222;
}

.faq-container {
  max-width: 850px;
  margin: 0 auto;
}

.faq h2 {
  text-align: center;
  color: #e74c3c;
  font-size: 1.9em;
  margin-bottom: 40px;
}

.faq-item {
  border-bottom: 1px solid #ddd;
  margin-bottom: 15px;
  overflow: hidden;
}

.faq-question {
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  font-size: 1.1em;
  font-weight: 600;
  padding: 15px;
  color: #222;
  cursor: pointer;
  transition: all 0.3s ease;
}

.faq-question:hover {
  color: #e74c3c;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.3s ease;
  opacity: 0;
  padding: 0 15px;
}

.faq-answer p {
  margin: 15px 0;
  line-height: 1.6;
}

.faq-item.active .faq-answer {
  max-height: 500px; /* suffisant pour contenir le texte */
  opacity: 1;
}

@media (max-width: 768px) {
  .faq h2 {
    font-size: 1.6em;
  }
  .faq-question {
    font-size: 1em;
  }
}


/* Footer */
footer {
    background: #222;
    color: white;
    text-align: center;
    padding: 20px;
}

/* 📱 Responsive */
@media (max-width: 768px) {
  header {
    padding: 60px 20px;
    min-height: 300px;
  }

  .apropos {
    flex-direction: column;
    text-align: center;
  }

  .apropos-img {
    max-width: 80%;
  }

  .tarifs {
    flex-direction: column;
    align-items: center;
  }

  .tarifs div {
    width: 80%;
  }

  form {
    width: 90%;
  }
}

/* === ANIMATION HERO === */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(300px);
  }
  100% {
    opacity: 1;
    transform: translateY(-200);
  }
}

/* Applique l’animation au contenu du hero */
.hero-content {
  animation: fadeInUp 1.2s ease-out forwards;
}

.hero-content .cta-button {
  animation: fadeInUp 1.2s ease-out forwards;
  animation-delay: 0.6s;
}



@media (max-width: 600px) {
  .hero-content {
    animation: none;
    opacity: 1;
    transform: none;
  }
}