@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;600;800;900&display=swap");

:root {
  --primary: #10b981; /* Vert Émeraude vif */
  --primary-hover: #059669;
  --dark-bg: #064e3b; /* Vert Forêt très profond */
  --light-bg: #f0fdf4; /* Fond vert très clair (presque blanc) */
  --text-main: #064e3b;
}

body {
  font-family: "Inter", sans-serif;
  background-color: var(--light-bg);
  color: var(--text-main);
  scroll-behavior: smooth;
}

/* Cacher la barre de défilement pour les carrousels s'il y en a */
.no-scrollbar::-webkit-scrollbar {
  display: none;
}
