/* ============================================
   HOME ANIMATIONS - Custom Styles
   Additional styles for smooth entrance animations
   ============================================ */

/* Hide elements with data-animation initially */
[data-animation] {
    opacity: 0;
}

/* Ensure elements are visible after animation */
[data-animation].animate__animated {
    animation-duration: 0.8s;
}

/* Custom animation delays for staggered effects */
.animate__delay-1 {
    animation-delay: 0.1s;
}

.animate__delay-2 {
    animation-delay: 0.2s;
}

.animate__delay-3 {
    animation-delay: 0.3s;
}

.animate__delay-4 {
    animation-delay: 0.4s;
}

/* Slower animations for large sections */
.home-rooms-section,
.home-excursions-section,
.home-proyects-section,
.home-blog-section,
.home-tourist-programs {
    animation-duration: 1s !important;
}

/* Faster animations for headers */
.home-rooms-header,
.home-excursions-header,
.home-blog-header,
.section-title {
    animation-duration: 0.6s !important;
}

/* Smooth card entrance animations */
.home-room-card,
.home-excursion-card,
.home-proyect-card,
.home-blog-card,
.home-blog-featured-card,
.home-tour-card {
    animation-duration: 0.7s !important;
}
