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

@keyframes heroZoom {
  from { transform: scale(1.15); }
  to { transform: scale(1); }
}

.animate-fade-up {
  animation: fadeUp 1s ease-out both;
}

.animate-hero {
  animation: heroZoom 1.2s ease-out both;
}
