/* Scroll Animations for Športal Residence */

/* Initial state for fade-in-up elements is handled by GSAP in the JS file */
/* The animation is controlled entirely by the scroll-animations.js file */

/* Ensure smooth transitions when elements are animated */
.section-label, h2, p, .grid-item, .feature-item, .timeline-item, 
.vybavenie-slider-container, .apartments-table, .map-container,
.info-section-item, .gallery-section, .location-section {
    transition: transform 0.5s ease-out, opacity 0.5s ease-out;
}

/* Special slide-from-right animation for financing section images */
.slide-from-right {
    transition: transform 0.8s ease-out, opacity 0.8s ease-out;
    /* Initial state will be set by GSAP */
    will-change: transform, opacity;
}
