/* =============================== */
/* 🩷 Intro SEO – page CESU/Accueil */
/* =============================== */
.intro-seo {
  text-align: center;
  font-size: 1rem;
  color: #444;
  line-height: 1.6;
  max-width: 900px;
  margin: 0 auto 1.5rem auto;
}

.intro-seo strong {
  color: var(--rose-fonce);
  font-weight: 600;
}

/* 🌷 Icône d’intro Accueil */
.intro-icone {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 14px;
}

.intro-icone img {
  width: 70px;
  height: 70px;
  object-fit: contain;  /* empêche la déformation */
  border: none;
  display: inline-block;
  opacity: 0.95;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.intro-icone img:hover {
  transform: scale(1.05);
  opacity: 1;
}


/* =============================== */
/* 💖 SECTION "COMMENT ÇA MARCHE"  */
/* =============================== */
.accueil-etapes {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.05);
  padding: 2.5rem 1.8rem;
  margin: 3rem auto;
  max-width: 1100px;
  text-align: center;
}

.accueil-etapes h2 {
  color: var(--rose-fonce);
  font-size: 1.8rem;
  margin-bottom: 2rem;
  font-weight: 700;
}

/* === Grille des cartes === */
.etapes-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 28px;
  justify-content: center;
  align-items: stretch;
  max-width: 1000px;
  margin: 0 auto;
}

/* === Cartes individuelles === */
.etape-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  text-align: center;
  background: #fff8fa;
  border: 1px solid #f6b8c8;
  border-radius: 14px;
  padding: 1.6rem 1.2rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  transition: all 0.25s ease;
  height: 100%;
  min-height: 210px;
}

.etape-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  background: #fff3f8;
}

.etape-card .emoji {
  font-size: 2rem;
  margin-bottom: 0.8rem;
}

.etape-card h3 {
  color: var(--texte-gris-fonce);
  font-size: 1.2rem;
  margin-bottom: 0.6rem;
}

.etape-card p {
  font-size: 0.95rem;
  color: var(--texte-gris);
  margin: 0;
  line-height: 1.4;
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* === Répartition spécifique : 3 cartes sur la 1ʳᵉ ligne, 2 cartes larges en dessous === */
.etape-card:nth-child(1),
.etape-card:nth-child(2),
.etape-card:nth-child(3) {
  grid-column: span 2;
}

.etape-card:nth-child(4),
.etape-card:nth-child(5) {
  grid-column: span 3;
}

/* === Responsive === */
@media (max-width: 899px) and (min-width: 600px) {
  .etapes-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .etape-card {
    grid-column: auto;
  }
}

@media (max-width: 599px) {
  .etapes-grid {
    grid-template-columns: 1fr;
  }

  .accueil-etapes {
    padding: 1.8rem 1.2rem;
  }

  .etape-card {
    padding: 1.2rem;
    min-height: auto;
  }
}



/* =============================== */
/* 💕 SECTION PRESTATIONS ACCUEIL */
/* =============================== */
.accueil-prestations {
  background: #fff;
  border-radius: 18px;
  box-shadow: var(--ombre-douce);
  padding: 2.5rem 1.5rem;
  margin: 3rem auto;
  max-width: 1100px;
  text-align: center;
}

.accueil-prestations .accroche-prestations {
  color: #555;
  font-size: 1rem;
  margin-bottom: 2rem;
  font-style: italic;
}

.prestations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 25px;
}

.prestation-card {
  background: #fff8fa;
  border: 1px solid #f6b8c8;
  border-radius: 12px;
  padding: 1.5rem 1rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  transition: all 0.25s ease;
}

.prestation-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  background: #fff3f8;
}

.prestation-card .emoji {
  font-size: 2rem;
  margin-bottom: 0.6rem;
}

.prestation-card h3 {
  color: var(--rose-fonce);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}

.prestation-card p {
  color: #444;
  font-size: 0.95rem;
  margin: 0;
  line-height: 1.4;
}

@media (max-width: 700px) {
  .prestations-grid { grid-template-columns: 1fr; }
}

/* =============================== */
/* 🌷 SECTION À PROPOS ACCUEIL */
/* =============================== */
.accueil-apropos {
  background: #fff;
  border-radius: 18px;
  box-shadow: var(--ombre-douce);
  padding: 2.5rem 1.5rem;
  margin: 3rem auto;
  max-width: 1100px;
}

.accueil-apropos h2 {
  text-align: center;
  color: var(--rose-fonce);
  font-weight: 700;
  margin-bottom: 2rem;
}

.apropos-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 2rem;
}

.apropos-texte p {
  margin-bottom: 1rem;
  color: var(--texte-gris);
  line-height: 1.6;
  text-align: justify;
}

.apropos-image img {
  width: 80%;
  border-radius: 14px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  align-items: center; 

}

@media (max-width: 900px) {
  .apropos-grid { grid-template-columns: 1fr; }
  .apropos-image { order: -1; text-align: center; }
  .apropos-image img { max-width: 90%; }
}

/* 🎞️ Slider accueil – structure et responsive */
.jlb-home-slider {
  width: 100%;
  max-width: 1200px;
  margin: 1.5rem auto 3rem;
  padding: 0;
  overflow: hidden;
  position: relative;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.jlb-home-slider .jlb-block {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.jlb-home-slider img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
  object-fit: cover;
}

/* Responsive */
@media (max-width: 768px) {
  .jlb-home-slider {
    margin: 1rem auto 2rem;
    border-radius: 10px;
  }
}

/* =============================== */
/* 🎞️ SLIDER DE SERVICES (défilement auto 6 images) */
/* =============================== */
.accueil-slider {
  background: #fff;
  border-radius: 18px;
  box-shadow: var(--ombre-douce);
  padding: 2rem 1rem 3rem;
  margin: 3rem auto;
  max-width: 1100px;
  text-align: center;
  overflow: hidden;
  position: relative;
}

.accueil-slider h2 {
  color: var(--rose-fonce);
  font-size: 1.8rem;
  margin-bottom: 2rem;
  font-weight: 700;
}

/* === Track et slides === */
.slider-container {
  overflow: hidden;
  width: 100%;
  position: relative;
}

.slider-track {
  display: flex;
  gap: 20px;
  transition: transform 0.8s ease-in-out;
  will-change: transform;
}

.slide {
  min-width: calc(100% / 3 - 20px);
  background: #fff8fa;
  border: 1px solid #f6b8c8;
  border-radius: 12px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  overflow: hidden;
  text-align: center;
  padding-bottom: 1rem;
  transition: transform 0.25s ease;
}

.slide:hover {
  transform: translateY(-4px);
}

.slide img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  border-bottom: 2px solid #f6b8c8;
  border-radius: 12px 12px 0 0;
}

.slide h3 {
  font-size: 1rem;
  color: var(--rose-fonce);
  margin-top: 0.8rem;
  font-weight: 600;
}

/* === Responsive === */
@media (max-width: 900px) {
  .slide { min-width: calc(100% / 2 - 10px); }
}

@media (max-width: 600px) {
  .slide { min-width: 100%; }
}

