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

:root {
  /* Colors - Light Mode */
  --color-primary: #92400e;
  --color-primary-hover: #78350f;
  --color-accent: #92400e;
  --color-accent-hover: #78350f;
  --color-background: #fef3c7;
  --color-backgroundAlt: #fffbeb;
  --color-text: #1c1917;
  --color-textMuted: #57534e;
  --color-textLight: #6b5e56;
  --color-border: #d6d3d1;
  --color-success: #16a34a;
  --color-error: #dc2626;

  /* RGB values for opacity utilities */
  --color-primary-rgb: 146 64 14;
  --color-accent-rgb: 146 64 14;

  /* Typography */
  --font-family: DM Sans, system-ui, sans-serif;
  --font-display: Playfair Display, serif;
  --font-weight-heading: 700;
  --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(146, 64, 14, 0.15);
  --shadow-button: 0 10px 30px -10px rgba(146, 64, 14, 0.4);
  --shadow-hover: 0 20px 50px -15px rgba(146, 64, 14, 0.25);

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

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

  /* RGB values for dark mode */
  --color-primary-rgb: 217 119 6;
  --color-accent-rgb: 251 191 36;
}
