/* style.css - pour ajouter quelques ajustements Tailwind */
html {
  scroll-behavior: smooth;
}
body {
  font-family: 'Inter', sans-serif;
}
.nav-link:hover {
  color: #34D399; /* effet hover vert */
}
.button-primary {
  @apply bg-green-500 text-gray-900 font-bold px-6 py-3 rounded-full hover:bg-green-600 transition;
}
.button-secondary {
  @apply bg-transparent border-2 border-white text-white font-bold px-6 py-3 rounded-full hover:bg-white hover:text-gray-900 transition;
}