/*
 * Torque colour scheme (CSS override layer).
 * Loaded via theme color_scheme: [torque]. Overrides --bs-primary and related
 * variables so the theme uses the Torque palette without adding SASS colour maps.
 * Matches chr156r33n.github.io/jekyll.
 */
:root {
  --torque-deep-navy: #00072D;
  --torque-dark-blue: #001C55;
  --torque-mid-dark-blue: #0A2472;
  --torque-bright-blue: #0E6BA8;
  --torque-light-blue: #A6E1FA;

  /* Override theme primary to Torque bright blue */
  --bs-primary: var(--torque-bright-blue);
  --bs-primary-rgb: 14, 107, 168;
  --bs-link-color-rgb: 14, 107, 168;
  --bs-link-hover-color-rgb: 14, 107, 168;
  --bs-primary-rgb: 14, 107, 168;
  --bs-soft-primary: #d4eef8;
  --bs-pale-primary: #e8f5fa;
  --bs-bullet-soft-primary: #c2e4f4;
  --bs-icon-fill-primary: #4a9ec9;
  --bs-icon-solid-fill-primary: #0E6BA8;
  --bs-border-soft-primary: rgba(14, 107, 168, 0.2);
}

/* Torque utility classes for dark sections */
.bg-torque-dark {
  background-color: var(--torque-deep-navy) !important;
}

.bg-torque-mid {
  background-color: var(--torque-dark-blue) !important;
}

.bg-torque-light {
  background-color: var(--torque-light-blue) !important;
}

.text-torque-dark {
  color: var(--torque-deep-navy) !important;
}

.text-torque-light {
  color: var(--torque-light-blue) !important;
}

.text-torque-accent {
  color: var(--torque-bright-blue) !important;
}
