/* Sequential section animations for numbered sections */
.section-hidden {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

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

/* Ensure the transitions are smooth across different devices */
@media (prefers-reduced-motion: reduce) {
  .section-hidden {
    transition: opacity 0.3s ease-out;
    transform: none;
  }
}
