
/* ==========================================================
   THEME GLOBAL – RAZLEBOL
   Clair / Sombre (site uniquement)
   ========================================================== */

/* ---------- Mode clair (défaut) ---------- */
:root {
  --bg-main: #ffffff;
  --bg-section: #f7f7f7;

  --text-main: #222222;
  --text-muted: #555555;

  --primary: #8E24AA;
  --primary-soft: #f3e5f5;

  --border-soft: #dddddd;
}

/* ---------- Mode sombre global ---------- */
html.dark-theme {
  --bg-main: #121212;
  --bg-section: #1e1e1e;

  --text-main: #eaeaea;
  --text-muted: #b0b0b0;

  --primary: #c77dff;
  --primary-soft: #2a1f33;

  --border-soft: #333333;
}

/* ---------- Application globale ---------- */
body {
  margin: 0;
  background-color: var(--bg-main);
  color: var(--text-main);
  font-family: system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}

a {
  color: var(--primary);
}

hr {
  border: none;
  border-top: 1px solid var(--border-soft);
}

/* ---------- Carte : reste claire en mode sombre ---------- */
html.dark-theme #map {
  border: 1px solid var(--border-soft);
  border-radius: 6px;
}
