.presentation {
  max-width: 900px;
  margin: 2rem auto;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 1rem;
  box-shadow: 0 4px 12px rgba(0,0,0,.15);
  font-family: Arial, Helvetica, sans-serif;
  color: #222;
  line-height: 1.6;
}
.presentation p {
  color: #000;
  text-align: justify;
}
.presentation h1,
.presentation h2,
.presentation h3,
.presentation li {
  color: #000;
}

.hero {
  text-align: center;
  padding: 1rem 2rem;
  background: #fff;
  border-radius: 1.5rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.12);
  margin-bottom: 2rem;
}

.hero-icon {
  font-size: 2.5rem;
  color: #6BAF46;
  margin-bottom: 0.5rem;
}

.hero .titre {
  font-size: 2.2rem;
  font-weight: 700;
  color: #000;
  margin: 0;
  line-height: 1.3;
}

.hero .titre span {
  font-weight: 400;
  font-size: 1.3rem;
  color: #333;
}

.hero-divider {
  width: 80px;
  height: 3px;
  background: #00aaff;
  margin: 1rem auto;
  border-radius: 2px;
}

.hero .sous-titre.highlight {
  font-size: 1.1rem;
  color: #333;
  margin-top: 1.5rem;
  text-align: center;
  font-style: italic;
  background: lightgrey;
  display: inline-block;
  padding: 0.6rem 1.2rem;
  border-radius: 50px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}

.hero .sous-titre.highlight i {
  color: #00aaff;
  margin-right: 0.4rem;
}
/* Titre responsive : étoiles + texte alignés sur 1 ligne partout */
.titre.responsive-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  margin: .5rem 0 1rem 0;
  line-height: 1.2;
  font-weight: 800;
  color: #000;
  /* taille fluide desktop/tablette */
  white-space: nowrap;     /* empêche les retours à la ligne */
  flex-wrap: nowrap;       /* reste sur une ligne */
}

.titre.responsive-title span {
  display: inline-block;
  text-align: center;
  font-size: 2.2rem;
  font-weight: bold;
}

.titre.responsive-title .fa-star {
  color: #6BAF46;
  font-size: 1.5rem;
}

/* Mobile : on réduit encore un peu pour tenir sur 1 ligne */
@media (max-width: 560px) {
  .titre.responsive-title span{
    gap: .4rem;
    font-size:0.6em;
  }
  .titre.responsive-title .fa-star {
    font-size: 0.6em;
  }
}

/* Accroche */
.accroche {
  background: #fff;
  padding: 2rem;
  border-left: 5px solid #00aaff;
  border-radius: 0.5rem;
  margin-bottom: 2rem;
  font-size: 1.1rem;
  color: #000;
}

/* Grille des atouts */
.grid-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  list-style: none;
  padding: 0;
  margin: 2rem 0;
}

.grid-features li {
  background: #fff;
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  text-align: center;
  font-size: 1rem;
  color: #000;
}

.grid-features li i {
  font-size: 1.3rem;   /* réduit la taille (avant 2rem) */
  color: #00aaff;
  margin-bottom: 0.3rem;
  vertical-align: middle;
}

.grid-features li strong {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.grid-features li strong i {
  font-size: 1.1rem; /* encore un peu plus petit que le texte */
  margin: 0;
}

/* Publics visés */
.badges {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.badges li {
  background: #f5f5f5;
  border-radius: 50px;
  padding: 0.6rem 1.2rem;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #000;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}

.badges li i {
  color: #00aaff;
}

/* Activités autour */
.grid-activites {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.grid-activites article {
  background: #fff;
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  color: #000;
}

.grid-activites article h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: #000;
}

.grid-activites article i {
  color: #00aaff;
  margin-right: 0.3rem;
}

/* Liste expérience */
/* Puces "check" avec retrait suspendu (hanging indent) */
.list-check {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.list-check li {
  position: relative;
  padding-left: 1.6rem;      /* espace réservé pour l'icône */
  margin: 0.6rem 0;
  line-height: 1.5;
}

/* Icône positionnée en absolu = le texte ne "passe" plus dessous */
.list-check li i {
  position: absolute;
  left: 0;
  top: 0.15rem;               /* ajuste l’alignement vertical */
  font-size: 1rem;
  color: #28a745;             /* vert check */
  width: 1.2rem;              /* largeur fixe pour la stabilité */
  text-align: center;
}

/* Option mobile : icône un poil plus petite */
@media (max-width: 560px) {
  .list-check li { padding-left: 1.4rem; }
  .list-check li i { font-size: 0.95rem; top: 0.2rem; width: 1rem; }
}


/* Call to action */
.cta {
  margin: 3rem auto;
  background: #fff;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  max-width: 800px;
}

.cta .grand-texte {
  font-size: 1.4rem;
  line-height: 1.6;
  color: #000;
  text-align: center;
}

.cta .grand-texte strong {
  display: block;
  font-size: 1.6rem;
  margin: 0.5rem 0;
  color: #6BAF46; /* vert nature */
}

.cta .grand-texte i {
  color: #6BAF46;
  margin: 0 0.5rem;
  font-size: 1.2rem;
}


.btn {
  display: inline-block;
  padding: 0.8rem 1.5rem;
  margin: 0.5rem;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-primaire {
  background: #00aaff;
  color: #fff;
}

.btn-primaire:hover {
  background: #0088cc;
}

.btn-secondaire {
  background: #f5f5f5;
  color: #000;
  border: 1px solid #ccc;
}

.btn-secondaire:hover {
  background: #e0e0e0;
}

/* Carousel */
.carousel {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 1em;
}

.carousel img {
  width: 100px;
  height: 75px;
  object-fit: cover;
  border: 2px solid white;
  cursor: pointer;
  transition: transform 0.3s ease;
  border-radius: 0.8rem;
}

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

/* Modal responsive avec <picture> */
.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.8);
  justify-content: center;
  align-items: center;
  transition: opacity 0.3s ease;
}

.modal.show {
  display: flex;
}

.modal picture {
  width: 80vw;
  max-height: 90vh;
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.3s ease, transform 0.3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
}

.modal.show picture {
  opacity: 1;
  transform: scale(1);
}

.modal picture img {
  /* width: 100%; */
  height: auto;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.7);
}

.modal .close {
  position: absolute;
  top: 20px;
  right: 30px;
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  text-decoration: none;
  z-index: 30;
  cursor:pointer;
}
/* Responsive */
@media (max-width: 600px) {
  .carousel img {
    width: 70px;
    height: 52px;
  }
}
