/* --- Global Font Imports and Utility Classes --- */
/* These styles are foundational and can be used by any component. */

/* --- Fade-in Animation Utility --- */
/* This can be used by any element on the site by adding the "fade-in" class. */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}
