/* Animations de base pour les éléments */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-visible {
  opacity: 1;
  transform: translateY(0);
}


/* Animation d'entrée du hero avec scale et fondu */
.hero {
  opacity: 1;
  /* transition: opacity 1s ease-out; */
}

.hero-visible {
  opacity: 1;
}

.hero-visible .hero__title {
  animation: fadeInUp 0.8s ease-out forwards;
}

.hero-visible .hero__service {
  opacity: 0;
  animation: fadeInRight 0.5s ease-out forwards;
}

.hero-visible .hero__service--desk {
  animation-delay: 0.3s;
}

.hero-visible .hero__service--meeting {
  animation-delay: 0.5s;
}

.hero-visible .hero__service--event {
  animation-delay: 0.7s;
}

.hero-visible .hero__service--box {
  animation-delay: 0.9s;
}

.hero-visible .btn {
  opacity: 0;
  animation: fadeIn 0.5s ease-out 1s forwards;
}

/* Animation spécifique pour les images du hero */
.hero-visible .hero__image-wrapper {
  opacity: 0;
  transform: translateY(40px);
  animation: fadeInUp 0.7s ease-out forwards;
}

.hero-visible .hero__image-wrapper--1 {
  animation-delay: 0.2s;
}

.hero-visible .hero__image-wrapper--2 {
  animation-delay: 0.4s;
}

.hero-visible .hero__image-wrapper--3 {
  animation-delay: 0.6s;
}

.hero-visible .hero__image-wrapper--4 {
  animation-delay: 0.8s;
}

/* Animation pour les cartes de prix */
.price__card {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out, box-shadow 0.3s ease;
}

.price-card-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Animation pour les témoignages */
.testimonial {
  opacity: 1;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out, box-shadow 0.3s ease;
}

.testimonial.animate-visible {
  opacity: 1;
  transform: translateY(0);
}





/* Keyframes pour différentes animations */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}