/* ============================================
   MERCS Theme - Color overrides
   Based on MERCS logo: teal/navy, orange, green
   ============================================ */
:root {
  /* Primary colors — dark teal/navy from logo outer ring */
  --color-primary: #1B3A4B;         /* Dark teal-navy */
  --color-primary-light: #2D5F73;   /* Medium teal */
  --color-primary-dark: #122A37;    /* Deeper navy */

  /* Accent — warm orange from logo antenna section */
  --color-accent: #D4893F;          /* Warm amber-orange */
  --color-accent-light: #E6A55A;    /* Light amber */

  /* Backgrounds */
  --color-bg: #f0f4f6;              /* Cool off-white */
  --color-bg-card: #ffffff;         /* Card/content bg */
  --color-bg-header: var(--color-primary);
  --color-bg-footer: #1B3A4B;       /* Dark teal-navy */

  /* Text */
  --color-text: #2A2A2A;
  --color-text-light: #556670;
  --color-text-on-primary: #ffffff;
  --color-text-on-footer: #A8C4D0;  /* Light teal-blue */

  /* Borders */
  --color-border: #B8CDD6;          /* Soft teal-gray */
  --color-border-light: #DDE6EA;    /* Light cool gray */

  /* Status colors (for live data) */
  --color-ok: #4caf50;
  --color-warn: #ff9800;
  --color-error: #f44336;
}
