/* ============================================
   Theme: ApexMotors
   
   Customize colors, typography, and spacing below.
   Changes here affect all pages automatically.
   ============================================ */

:root {
  /* Colors - Light Mode */
  --color-primary: #DC2626;
  --color-primary-hover: #B91C1C;
  --color-accent: #71717A;
  --color-accent-hover: #52525B;
  --color-background: #FAFAFA;
  --color-backgroundAlt: #FFFFFF;
  --color-text: #18181B;
  --color-textMuted: #71717A;
  --color-textLight: #A1A1AA;
  --color-border: #E4E4E7;
  --color-success: #16A34A;
  --color-error: #DC2626;
  
  /* RGB values for opacity utilities */
  --color-primary-rgb: 220 38 38;
  --color-accent-rgb: 113 113 122;
  
  /* Typography */
  --font-family: Inter, system-ui, sans-serif;
  --font-display: Outfit, system-ui, sans-serif;
  --font-weight-heading: 800;
  --font-weight-body: 400;
  
  /* Spacing */
  --radius: 0.5rem;
  --radius-small: 0.25rem;
  --radius-large: 0.75rem;
  --radius-full: 9999px;
  
  /* Shadows */
  --shadow-card: 0 10px 40px -10px rgba(0, 0, 0, 0.2);
  --shadow-button: 0 10px 30px -10px rgba(220, 38, 38, 0.4);
  --shadow-hover: 0 20px 50px -15px rgba(0, 0, 0, 0.25);
  
  /* Button Style */
  --button-radius: 0.5rem;
}

/* Colors - Dark Mode */
html.dark {
  --color-primary: #F87171;
  --color-primary-hover: #EF4444;
  --color-accent: #A1A1AA;
  --color-accent-hover: #D4D4D8;
  --color-background: #09090B;
  --color-backgroundAlt: #18181B;
  --color-text: #FAFAFA;
  --color-textMuted: #A1A1AA;
  --color-textLight: #71717A;
  --color-border: #27272A;
  --color-success: #4ADE80;
  --color-error: #F87171;
  
  /* RGB values for dark mode */
  --color-primary-rgb: 248 113 113;
  --color-accent-rgb: 161 161 170;
}
