/* LOGO INTRO */

/* Overlay plein écran */
/* #logoIntro {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

#logoIntro img {
  width: 40%; 
  transition: transform 1s ease-in-out, width 1s ease-in-out;
} 

Rétrécissement et déplacement vers le haut 
 #logoIntro.shrink img {
  width: 345px; 
  transform: translateY(calc(-50vh + 103px)); 
}

Masque l'overlay après animation 
 #logoIntro.hide {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease;
}

@media (max-width: 768px) {
	#logoIntro {
		display: none;
}
} */ 


/* SWIPER  */

.animation-slide {
  transition: opacity 0.3s ease-in-out;
  opacity: 0;
  pointer-events: none; /* empêche de cliquer sur les slides invisibles */
  position: relative;
  z-index: 1;
}

.animation-slide.active-slide {
  opacity: 1;
  pointer-events: auto;
  z-index: 10;
}

/* ANIMATION GLOBALE  */

.animate-on-scroll {
  opacity: 0;
  transform: translateY(-30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

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

.animate-on-scroll.delay-0 {
  transition-delay: 0s;
}
.animate-on-scroll.delay-1 {
  transition-delay: 0.2s;
}
.animate-on-scroll.delay-2 {
  transition-delay: 0.4s;
}
.animate-on-scroll.delay-3 {
  transition-delay: 0.6s;
}


/* @keyframes fadeSlideDown {
  0% {
    opacity: 0;
    transform: translateY(-50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

header, footer {
  opacity: 0;
} */