/* assets/css/style.css */

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.translate-hero-card {
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%   { transform: translateY(0); box-shadow: 0 0.5rem 1rem rgba(0,0,0,.15); }
  50%  { transform: translateY(-6px); box-shadow: 0 1.25rem 2rem rgba(0,0,0,.18); }
  100% { transform: translateY(0); box-shadow: 0 0.5rem 1rem rgba(0,0,0,.15); }
}

textarea {
  resize: vertical;
}
