/* Small custom styles on top of Tailwind */
html {
  scroll-behavior: smooth;
}

/* Ensure nice focus states */
input:focus, textarea:focus {
  outline: none;
}

/* Optional: subtle animation for cards */
@media (prefers-reduced-motion: no-preference) {
  .hover-lift:hover {
    transform: translateY(-2px);
    transition: transform 0.2s ease;
  }
}
