.elementor-2 .elementor-element.elementor-element-58f8b33{--display:flex;}/* Start custom CSS for html, class: .elementor-element-6d6c435 *//* Hero en mode bannière */
.hero {
  background: url('https://images.unsplash.com/photo-1511542229800-663a99ca1817') center/cover no-repeat;
  color: white;
  text-align: center;
  width: 100%;
  height: 80vh; /* hauteur de la bannière */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  position: relative;
}

/* Fond assombri */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  z-index: 1;
}

.hero h1,
.hero p,
.hero a {
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-size: 4rem;              /* plus grand */
  margin-bottom: 1rem;
  color: #ffffff;               /* blanc pur */
  text-shadow: 2px 2px 8px rgba(0,0,0,0.7); /* ombre plus forte pour contraste */
  font-weight: 700;             /* plus gras */
}

.hero p {
  font-size: 1.8rem;            /* un peu plus grand aussi */
  margin-bottom: 2rem;
  color: #f8f8f8;               /* blanc cassé */
  text-shadow: 1px 1px 6px rgba(0,0,0,0.6); /* légère ombre */
  font-weight: 500;
}

.hero a {
  background: #2d6a4f;
  color: #fff;
  padding: 1rem 2rem;
  text-decoration: none;
  border-radius: 30px;
  font-weight: bold;
  transition: background 0.3s, transform 0.2s;
}

.hero a:hover {
  background: #1b4332;
  transform: scale(1.05);
}

/* Décalage progressif des slides */
.swiper-slide:nth-child(1) {
  transform: translateY(0px);
}
.swiper-slide:nth-child(2) {
  transform: translateY(20px);
}
.swiper-slide:nth-child(3) {
  transform: translateY(40px);
}
.swiper-slide:nth-child(4) {
  transform: translateY(60px);
}
.swiper-slide:nth-child(5) {
  transform: translateY(80px);
}

/* Pour que le décalage soit plus fluide */
.swiper-slide {
  transition: transform 0.5s ease;
}

/* Bloc slider avec ombre plus large */
.section .swiper {
  width: 100%;
  padding: 3rem 2rem; /* espace intérieur */
  background: #fff; /* fond blanc pour contraste */
  border-radius: 20px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25); /* grosse ombre étendue */
  margin: 0 auto 4rem auto; /* espace entre les blocs */
}

/* Slides sans ombre (elles héritent de l’ombre du bloc) */
.section .swiper-slide {
  background: transparent;
  box-shadow: none;
}

/* Titres des sections (slider) */
.section h2 {
  font-size: 28px; /* taille fixe */
  font-weight: 900;
  color: #2d6a4f;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 2.5rem;

  /* Effet 3D avec plusieurs ombres */
  text-shadow: 
    2px 2px 0 #1b4332,   /* ombre verte foncée */
    4px 4px 0 #00000033; /* ombre noire légère */
  transition: transform 0.3s ease, text-shadow 0.3s ease;
}

/* Effet interactif au hover */
.section h2:hover {
  transform: scale(1.05);
  text-shadow: 
    3px 3px 0 #1b4332,
    6px 6px 10px rgba(0,0,0,0.5);
}

/* Séparateur sous les titres */
.section h2::after {
  content: "🐇 🐇 🐇";  /* lapins séparateurs */
  display: block;
  margin-top: 1rem;
  font-size: 18px; /* adapté à la taille 28px du titre */
  color: #2d6a4f;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}/* End custom CSS */