/**
 * Warna primary aplikasi — dimuat setelah Bootstrap & theme.
 */
:root,
[data-bs-theme="light"] {
  --bs-primary: #c90200;
  --bs-primary-rgb: 201, 2, 0;
  --bs-primary-text-emphasis: #7f0100;
  --bs-primary-bg-subtle: #fde8e8;
  --bs-primary-border-subtle: #f0a8a7;
}

[data-bs-theme="dark"] {
  --bs-primary: #e62826;
  --bs-primary-rgb: 230, 40, 38;
  --bs-primary-text-emphasis: #f5b3b3;
  --bs-primary-bg-subtle: #3d0a09;
  --bs-primary-border-subtle: #9e0200;
}

/* Hover link: turunan dari primary */
body a:hover {
  color: #9e0200 !important;
}
