/* PRT Appliance — Design Tokens */
/* Brand palette derived from primerepairteam.ca */

:root,
[data-theme='light'] {
  /* Brand Colors */
  --color-primary: #4BA0E8;       /* Primary Blue */
  --color-primary-dark: #1E88E2;  /* Darker blue for gradients */
  --color-primary-darker: #115289;
  --color-primary-hover: #3a8fd7;
  --color-secondary: #6FBF52;     /* Green */
  --color-secondary-hover: #5aad3e;
  --color-accent-red: #BC0C09;    /* Red accent */
  --color-teal: #46C6CF;          /* Teal for gradients */
  --color-teal-blue: #47A8E3;

  /* Surfaces */
  --color-bg: #FFFFFF;
  --color-surface: #F9F9FA;
  --color-surface-2: #F6F6F7;
  --color-surface-offset: #F1F2F3;
  --color-divider: #E2E2E8;
  --color-border: #D8D8DE;

  /* Text */
  --color-text: #2B2B2B;
  --color-heading: #425D74;
  --color-text-muted: #677D8F;
  --color-text-faint: #A7B3BD;
  --color-text-inverse: #FFFFFF;

  /* Footer */
  --color-footer-bg: #FFFFFF;
  --color-footer-bar: #2A333A;
  --color-footer-text: #899198;

  /* Type Scale */
  --text-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
  --text-sm: clamp(0.875rem, 0.8rem + 0.35vw, 1rem);
  --text-base: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
  --text-lg: clamp(1.125rem, 1rem + 0.75vw, 1.5rem);
  --text-xl: clamp(1.5rem, 1.2rem + 1.25vw, 2.25rem);
  --text-2xl: clamp(2rem, 1.2rem + 2.5vw, 3.5rem);
  --text-3xl: clamp(2.5rem, 1rem + 4vw, 5rem);
  --text-hero: clamp(2.5rem, 1rem + 4vw, 4.5rem);

  /* Spacing */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;

  /* Radius */
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(66, 93, 116, 0.08);
  --shadow-md: 0 4px 16px rgba(66, 93, 116, 0.12);
  --shadow-lg: 0 12px 40px rgba(66, 93, 116, 0.16);
  --shadow-card: 0 2px 12px rgba(66, 93, 116, 0.10);

  /* Transitions */
  --transition: 200ms cubic-bezier(0.16, 1, 0.3, 1);

  /* Layout */
  --content-narrow: 640px;
  --content-default: 960px;
  --content-wide: 1200px;

  /* Fonts */
  --font-display: 'Plus Jakarta Sans', 'Segoe UI', sans-serif;
  --font-body: 'Plus Jakarta Sans', 'Segoe UI', sans-serif;
}

/* Dark mode override */
[data-theme='dark'] {
  --color-bg: #111820;
  --color-surface: #161e28;
  --color-surface-2: #1c2530;
  --color-surface-offset: #1a2230;
  --color-divider: #253040;
  --color-border: #2d3d50;
  --color-text: #d0dce8;
  --color-heading: #a8c4d8;
  --color-text-muted: #7a96aa;
  --color-text-faint: #4a6070;
  --color-footer-bg: #0d1520;
  --color-footer-bar: #080e18;
}
