/* home-page.css */
body {
    font-family: 'Inter', sans-serif;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

/* Fix for Snap Scrolling & Mobile */
.snap-container {
    scroll-snap-type: y mandatory;
    overflow-y: auto;
    height: 100vh;
    height: 100dvh;
}

.snap-section {
    scroll-snap-align: start;
    scroll-snap-stop: always;
    height: 100vh;
    height: 100dvh;
    width: 100%;
}

/* Fade-in Animation for Page Load */
.animate-entry {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease-out forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Scroll Reveal Animation */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-on-scroll.active {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered Delays */
.delay-100 { transition-delay: 0.1s; }
.delay-200 { transition-delay: 0.2s; }
.delay-300 { transition-delay: 0.3s; }

/* Mobile Reset: Disable Snap for better UX */
@media (max-width: 768px) {
    .snap-container {
        scroll-snap-type: none;
        height: auto;
        overflow-y: visible;
    }
    .snap-section {
        height: auto !important;
        min-height: 100vh;
        scroll-snap-align: none;
    }
}