/* Base hidden state for animations */
.animated {
  opacity: 0;
  transform: translateY(30px); /* Start below and move up */
  transition: opacity 1.5s ease-out, transform 1.5s ease-out;
}

/* When visible, the element will fade in and move into place */
.animated.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Optional: Delay animations for staggered effects */
.delay-1 {
  transition-delay: 0.2s;
}

.delay-2 {
  transition-delay: 0.4s;
}

.delay-3 {
  transition-delay: 0.6s;
}

.delay-4 {
  transition-delay: 0.8s;
}

/* Smooth scrolling for the entire page */
html {
  scroll-behavior: smooth;
}
