@tailwind base;
@tailwind components;
@tailwind utilities;

body {
  font-family: 'Inter', sans-serif;
}

.smooth-scroll {
  scroll-behavior: smooth;
}

/* Custom hover effects */
nav a:hover {
  transform: translateY(-2px);
}

button:hover, a:hover:not(.underline) {
  transform: scale(1.05);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  nav ul {
    flex-direction: column;
    gap: 1rem;
  }
}