/* animations.css *//* -----------------------------------------
   ANIMATIONS
------------------------------------------*/

.fade-in {
    animation: fadeIn 1s ease forwards;
}

@keyframes fadeIn {
    0% { opacity: 0; transform: translateY(15px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* Button hover pulse */
.big-button:hover {
    transform: scale(1.03);
}
