/*
 * DaisyUI fast install drops the Tailwind CLI binary and daisyUI plugin in
 * web/assets/styles. The watcher writes compiled utilities to
 * public/assets/styles/output.css.
 *
 * Layer project overrides or design tokens here—this file ships after the
 * generated bundle so your tweaks win without touching the compiled CSS.
 */

/* Smooth animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}

/* Better focus states */
*:focus-visible {
  outline: 2px solid #0ea5e9;
  outline-offset: 2px;
}

/* Card hover effects */
.card-interactive {
  transition: all 0.3s ease;
}

.card-interactive:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}
