/* TTOW Design System - CSS Custom Properties */
:root {
  /* Oregon Brand */
  --color-primary: #003831;
  --color-accent: #FDB827;

  /* Aliases (backward compat with theme.css) */
  --oregon-green: #003831;
  --oregon-gold: #FDB827;

  /* Neutrals */
  --color-bg: #0f0f0f;
  --color-surface: #1a1a1a;
  --color-card: #242424;
  --color-border: #333333;

  /* Aliases */
  --dark-bg: #0f0f0f;
  --dark-surface: #1a1a1a;
  --dark-card: #242424;
  --border-color: #333333;

  /* Text */
  --color-text: #ffffff;
  --color-text-muted: #b0b0b0;
  --text-primary: #ffffff;
  --text-secondary: #b0b0b0;

  /* Semantic */
  --color-success: #10b981;
  --color-warning: #f59e0b;
  --color-danger: #ef4444;
  --color-info: #3b82f6;
  --success: #10b981;
  --warning: #f59e0b;
  --danger: #ef4444;
  --info: #3b82f6;

  /* Spacing (new system) */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-12: 3rem;

  /* Spacing (old system - backward compat) */
  --spacing-xs: 0.25rem;
  --spacing-sm: 0.5rem;
  --spacing-md: 1rem;
  --spacing-lg: 1.5rem;
  --spacing-xl: 2rem;
  --spacing-2xl: 3rem;

  /* Typography */
  --font-sans: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-size-xs: 0.75rem;
  --font-size-sm: 0.875rem;
  --font-size-base: 1rem;
  --font-size-lg: 1.125rem;
  --font-size-xl: 1.25rem;
  --font-size-2xl: 1.5rem;
  --font-size-3xl: 2rem;

  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.4);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.5);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.6);
  --shadow-gold: 0 0 12px rgba(253, 184, 39, 0.3);

  /* Z-index */
  --z-base: 1;
  --z-dropdown: 100;
  --z-modal: 200;
}
