/* --- SCROLL REVEAL ANIMATIONS --- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

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

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

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

/* Pre-load animation for Hero */
.hero-content h1 {
    animation: fadeUp 1s ease-out forwards;
    opacity: 0;
}

.hero-content p {
    animation: fadeUp 1s ease-out 0.2s forwards;
    opacity: 0;
}

.hero-actions {
    animation: fadeUp 1s ease-out 0.4s forwards;
    opacity: 0;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
