/* theme-light.css */
/* À charger APRÈS style.css */

:root{
  --bg:#f6f8ff;
  --card:#ffffff;
  --muted:#4f628a;
  --text:#0b1220;
  --line:rgba(11,18,32,.12);

  --accent:#2563eb;     /* bleu */
  --accent2:#16a34a;    /* vert */

  --shadow: 0 14px 40px rgba(11,18,32,.12);
  --radius: 18px;
  --max: 1080px;
}

/* Fond plus clean (optionnel, mais joli en light) */
body{
  background:
    radial-gradient(1000px 520px at 20% 0%, rgba(37,99,235,.10), transparent 60%),
    radial-gradient(900px 480px at 85% 10%, rgba(22,163,74,.08), transparent 55%),
    var(--bg);
}

/* Les cards en light : un poil plus “mat” */
.card{
  background: rgba(255,255,255,.86);
}

/* Navbar claire */
.nav{
  background: rgba(246,248,255,.78);
  border-bottom: 1px solid var(--line);
}
.list li{
  padding:10px 0;
  border-top:1px dashed rgba(255,255,255,.10);
  color: rgba(98, 121, 187, 0.92);
}