/* ==========================================================================
   BEL RP — Thème (polices + surcharges)
   Modifie ici la police si tu veux : change 'Rajdhani' (titres) ou 'Roboto'
   (texte). Pense à mettre à jour le lien Google Fonts dans partials/head.html.
   ========================================================================== */
:root {
  --font-display: 'Rajdhani', 'Segoe UI', sans-serif;   /* titres */
  --font-body: 'Roboto', 'Segoe UI', Arial, sans-serif; /* texte courant */
}

html { color-scheme: dark; }

body {
  background: var(--background, #05030b);
  color: #fff;
  font-family: var(--font-body);
}

/* Case à cocher du formulaire */
input[type="checkbox"] { accent-color: #9237fa; }

/* Lien de navigation actif (géré par /js/menu.js) */
.nav-link.is-active { color: #d8adff; }        /* neon-300 */
[data-nav-mobile] a.is-active { color: #d8adff; }

/* ==========================================================================
   Tableaux du Code criminel
   ========================================================================== */
.cc-table-wrap { overflow-x: auto; margin-top: 1.5rem; border-radius: 0.75rem; border: 1px solid rgba(255,255,255,.08); }
.cc-table { width: 100%; border-collapse: collapse; font-size: .9rem; min-width: 520px; }
.cc-table thead th {
  text-align: left; padding: .85rem 1rem; white-space: nowrap;
  font-family: var(--font-display); text-transform: uppercase; letter-spacing: .12em;
  font-size: .72rem; color: #d8adff;
  background: rgba(146,55,250,.10); border-bottom: 1px solid rgba(255,255,255,.10);
}
.cc-table tbody td { padding: .8rem 1rem; border-bottom: 1px solid rgba(255,255,255,.06); color: rgba(255,255,255,.72); vertical-align: top; }
.cc-table tbody tr:last-child td { border-bottom: 0; }
.cc-table tbody tr:hover td { background: rgba(255,255,255,.025); }
.cc-table .cc-art { font-family: var(--font-display); font-weight: 600; color: rgba(216,173,255,.85); white-space: nowrap; }
.cc-table .cc-amende { color: #e4ce99; white-space: nowrap; }        /* gold */
.cc-table .cc-prison { color: rgba(255,255,255,.9); white-space: nowrap; }

/* Liste de définitions (articles) */
.cc-def { margin-top: 1.5rem; display: grid; gap: 1.1rem; }
.cc-def dt { font-family: var(--font-display); font-weight: 600; text-transform: uppercase; letter-spacing: .04em; color: #fff; }
.cc-def dd { margin: .35rem 0 0; color: rgba(255,255,255,.66); line-height: 1.7; font-size: .95rem; }
