/* Brickyard Brand Colors & Design Tokens */

:root {
  /* Brand Colors */
  --color-primary: #2f6e93;        /* Brickyard Blue */
  --color-primary-dark: #245670;   /* Darker blue for hover states */
  --color-primary-light: #4a8fb8;  /* Lighter blue for accents */
  
  /* Neutral Colors */
  --color-dark: #1a1a1a;           /* Almost black for text */
  --color-gray-dark: #4a4a4a;      /* Dark gray for secondary text */
  --color-gray: #8a8a8a;           /* Mid gray */
  --color-gray-light: #e5e5e5;     /* Light gray for borders */
  --color-off-white: #f8f9fa;      /* Off-white for backgrounds */
  --color-white: #ffffff;
  
  /* Typography */
  --font-sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  --font-size-base: 18px;
  --font-size-small: 16px;
  --font-size-large: 20px;
  --line-height-base: 1.6;
  --line-height-tight: 1.2;
  
  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 3rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;
  
  /* Layout */
  --max-width-content: 1200px;
  --max-width-text: 720px;
  --border-radius: 8px;
  
  /* Transitions */
  --transition-fast: 0.15s ease;
  --transition-base: 0.3s ease;
}
