/* Styles pour le carrousel d'images avec des dégradés de couleurs comme exemples */

.carousel-slide-content {
  width: 100%;
  height: 400px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: white;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
  padding: 2rem;
  text-align: center;
  position: relative;
  background-size: cover;
  background-position: center;
}

.carousel-slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  text-align: center;
}

.carousel-slide-content h3 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: white;
  position: relative;
  z-index: 2;
}

.carousel-slide-content p {
  font-size: 1.2rem;
  max-width: 80%;
  color: rgba(255, 255, 255, 0.95);
  position: relative;
  z-index: 2;
  margin-bottom: 1rem;
}

.carousel-slide-overlay .btn {
  position: relative;
  z-index: 2;
}

.slide-1 {
  background: linear-gradient(135deg, #ff9a9e 0%, #fad0c4 100%);
}

.slide-2 {
  background: linear-gradient(135deg, #a1c4fd 0%, #c2e9fb 100%);
}

.slide-3 {
  background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
}

.slide-4 {
  background: linear-gradient(135deg, #84fab0 0%, #8fd3f4 100%);
}

/* Styles responsives pour le carrousel */
@media (max-width: 768px) {
  .carousel-slide-content {
    height: 300px;
    font-size: 1.5rem;
  }
  
  .carousel-slide-overlay {
    background: rgba(0, 0, 0, 0.5);
    padding: 1.5rem;
  }
  
  .carousel-slide-content h3 {
    font-size: 2rem;
  }
  
  .carousel-slide-content p {
    font-size: 1rem;
    max-width: 90%;
  }
}

@media (max-width: 480px) {
  .carousel-slide-content {
    height: 250px;
    font-size: 1.2rem;
    padding: 1rem;
  }
  
  .carousel-slide-overlay {
    background: rgba(0, 0, 0, 0.6);
    padding: 1rem;
  }
  
  .carousel-slide-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
  }
  
  .carousel-slide-content p {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
  }
}