/* Minimal custom styles - Tailwind handles most styling */

html {
  scroll-behavior: smooth;
}

/* Smooth scroll animations */
@media (prefers-reduced-motion: no-preference) {
  [data-scroll] {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  }
  
  [data-scroll].visible {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Form input focus styles are handled by Tailwind */
/* Custom scrollbar for webkit browsers */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: #555;
}
