/* ============================================
   Theme: IronSteed
   
   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: #ca8a04;
  --color-accent-hover: #a16207;
  --color-background: #fafaf9;
  --color-backgroundAlt: #f5f5f4;
  --color-text: #1c1917;
  --color-textMuted: #57534e;
  --color-textLight: #78716c;
  --color-border: #e7e5e4;
  --color-success: #059669;
  --color-error: #dc2626;

  /* RGB values for opacity utilities */
  --color-primary-rgb: 185 28 28;
  --color-accent-rgb: 202 138 4;

  /* Typography */
  --font-family: DM Sans, system-ui, sans-serif;
  --font-display: Sora, system-ui, sans-serif;
  --font-weight-heading: 700;
  --font-weight-body: 400;

  /* Spacing */
  --radius: 0.25rem;
  --radius-small: 0.125rem;
  --radius-large: 0.5rem;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-card: 0 10px 40px -10px rgba(185, 28, 28, 0.2);
  --shadow-button: 0 10px 30px -10px rgba(185, 28, 28, 0.5);
  --shadow-hover: 0 20px 50px -15px rgba(202, 138, 4, 0.3);

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

/* Colors - Dark Mode */
html.dark {
  --color-primary: #f87171;
  --color-primary-hover: #fca5a5;
  --color-accent: #facc15;
  --color-accent-hover: #fde047;
  --color-background: #0a0a0a;
  --color-backgroundAlt: #171717;
  --color-text: #fafaf9;
  --color-textMuted: #d6d3d1;
  --color-textLight: #a8a29e;
  --color-border: #292524;
  --color-success: #34d399;
  --color-error: #f87171;

  /* RGB values for dark mode */
  --color-primary-rgb: 248 113 113;
  --color-accent-rgb: 250 204 21;
}
