@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap');

body {
    font-family: 'Roboto', sans-serif !important;
}

@keyframes slowZoom {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); }
}

@keyframes drift {
    0% { background-position: 0 0; }
    100% { background-position: 40px 40px; }
}

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

.animate-slow-zoom {
    animation: slowZoom 30s linear infinite alternate;
}

.animate-drift {
    animation: drift 20s linear infinite;
}

.animate-fade-in-up {
    animation: fadeInUp 0.3s ease-out forwards;
}

/* Scroll Reveal Helper Class (toggled via JS) */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(3rem);
    transition: all 1s ease-out;
}

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