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

:root {
  /* Colors - Light Mode */
  --color-primary: #b91c1c;
  --color-primary-hover: #991b1b;
  --color-accent: #9a3412;
  --color-accent-hover: #7c2d12;
  --color-background: #fef2f2;
  --color-backgroundAlt: #ffffff;
  --color-text: #1c1917;
  --color-textMuted: #57534e;
  --color-textLight: #525048;
  --color-border: #fecaca;
  --color-success: #16a34a;
  --color-error: #dc2626;

  /* RGB values for opacity utilities */
  --color-primary-rgb: 185 28 28;
  --color-accent-rgb: 154 52 18;

  /* Typography */
  --font-family: Inter, system-ui, sans-serif;
  --font-display: Poppins, system-ui, sans-serif;
  --font-weight-heading: 800;
  --font-weight-body: 400;

  /* Spacing */
  --radius: 0.75rem;
  --radius-small: 0.375rem;
  --radius-large: 1rem;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-card: 0 10px 40px -10px rgba(220, 38, 38, 0.15);
  --shadow-button: 0 10px 30px -10px rgba(220, 38, 38, 0.4);
  --shadow-hover: 0 20px 50px -15px rgba(220, 38, 38, 0.25);

  /* Button Style */
  --button-radius: 0.5rem;
}

/* Colors - Dark Mode */
html.dark {
  --color-primary: #f87171;
  --color-primary-hover: #ef4444;
  --color-accent: #fb923c;
  --color-accent-hover: #f97316;
  --color-background: #1c1917;
  --color-backgroundAlt: #292524;
  --color-text: #fafaf9;
  --color-textMuted: #a8a29e;
  --color-textLight: #a8a29e;
  --color-border: #44403c;
  --color-success: #4ade80;
  --color-error: #f87171;

  /* RGB values for dark mode */
  --color-primary-rgb: 248 113 113;
  --color-accent-rgb: 251 146 60;
}
