/* ============================================================================
   CANOPUS.LK – THEME TOKENS (COLORS, RADIUS, SHADOWS, SPACING)
   ============================================================================ */

:root {
  /* BRAND COLORS */
  --c-primary: #198754;
  --c-primary-dark: #146c43;
  --c-primary-soft: #e6f4ea;

  --c-accent: #0d3b22;
  --c-accent-soft: #f3f7f4;

  --c-danger: #dc3545;
  --c-warning: #ffc107;
  --c-info: #0dcaf0;

  /* NEUTRALS */
  --c-bg: #ffffff;
  --c-bg-alt: #f7f7f7;
  --c-border: #e2e2e2;
  --c-text: #2b2b2b;
  --c-text-soft: #6f6f6f;
  --c-muted: #6c757d;

  /* TYPO */
  --font-main: "Inter", "Segoe UI", Arial, sans-serif;

  /* RADIUS */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  /* SHADOWS */
  --shadow-sm: 0 2px 10px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 18px rgba(0,0,0,0.08);
  --shadow-lg: 0 10px 28px rgba(0,0,0,0.14);

  /* SPACING SCALE (REM-based) */
  --space-xs: 0.35rem;
  --space-sm: 0.6rem;
  --space-md: 1rem;
  --space-lg: 1.6rem;
  --space-xl: 2.4rem;
  --space-2xl: 3.5rem;
  --space-3xl: 5rem;
}
