/* ==========================================================================
   theme.css — variante CORPORATE
   >>> C'est le fichier à modifier en premier pour adapter le template à un
   nouveau client : couleurs, polices, rayons. <<<
   ========================================================================== */

:root {
  --color-bg: #ffffff;
  --color-bg-alt: #f5f6f8;
  --color-surface: #ffffff;
  --color-text: #33394a;
  --color-text-muted: #666e80;
  --color-heading: #14213d;
  --color-primary: #1e3a5f;
  --color-primary-hover: #14283f;
  --color-on-primary: #ffffff;
  --color-accent: #c9a227;
  --color-border: #e2e5ec;

  --font-heading: Georgia, "Times New Roman", serif;
  --font-body: "Segoe UI", system-ui, -apple-system, sans-serif;

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 14px;

  --shadow-sm: 0 1px 3px rgba(20, 33, 61, 0.08);
  --shadow-md: 0 12px 28px rgba(20, 33, 61, 0.12);
}

[data-theme="dark"] {
  --color-bg: #0e1a2e;
  --color-bg-alt: #132238;
  --color-surface: #16273f;
  --color-text: #cdd4e0;
  --color-text-muted: #8b93a7;
  --color-heading: #f2f4f8;
  --color-primary: #4f7fb0;
  --color-primary-hover: #6a97c4;
  --color-on-primary: #0e1a2e;
  --color-accent: #d8b542;
  --color-border: #223550;

  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 12px 28px rgba(0, 0, 0, 0.4);
}
