/* ============================================
   BASE.CSS - Adapté pour themes.css
   ⚠️ IMPORTANT: Ce fichier ne définit PAS les couleurs
   Les couleurs viennent de themes.css
   ============================================ */

/* ===========================
   VARIABLES GLOBALES (DIMENSIONS SEULEMENT)
   =========================== */

/* ===========================
   RESET & BASE
   =========================== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  padding: 0;
  min-height: 100vh;
  font-family: var(--font-main);
  font-size: var(--text-base);
  line-height: 1.6;
  color: var(--text-dark);
  background: var(--bg-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
