/**
 * Theme Variables - CSS Custom Properties
 * Mike Rubini Learn Platform
 */

:root {
  /* Brand Colors */
  --color-primary: #9b111e;
  --color-primary-light: #A7323D;
  --color-primary-dark: #7a0d18;

  /* Background Colors */
  --bg-light-blue: #F5F5F5;
  --bg-light-gray: #FBFBFB;
  --bg-neutral: #F8F8F8;
  --bg-white: #ffffff;
  --bg-card: #ffffff;

  /* Text Colors */
  --text-primary: #363636;
  --text-secondary: #4a4a4a;
  --text-muted: #888888;
  --text-on-primary: #ffffff;

  /* Border Colors */
  --border-color: #dbdbdb;
  --border-light: #f0f0f0;

  /* Accent Colors */
  --color-success: #61BA8C;
  --color-warning: #d89631;
  --color-info: #3273dc;

  /* Spacing */
  --spacing-xs: 5px;
  --spacing-sm: 10px;
  --spacing-md: 20px;
  --spacing-lg: 30px;
  --spacing-xl: 60px;

  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-round: 50%;

  /* Transitions */
  --transition-fast: 0.15s ease;
  --transition-normal: 0.25s ease;
  --transition-slow: 0.4s ease;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);
  --shadow-hover: 0 12px 32px rgba(0, 0, 0, 0.15);
}

/* Dark Mode Theme */
[data-theme="dark"] {
  /* Brand Colors - adjusted for dark mode */
  --color-primary: #c41e2e;
  --color-primary-light: #d64553;
  --color-primary-dark: #9b111e;

  /* Background Colors */
  --bg-light-blue: #1a1a1a;
  --bg-light-gray: #1e1e1e;
  --bg-neutral: #252525;
  --bg-white: #121212;
  --bg-card: #1e1e1e;

  /* Text Colors */
  --text-primary: #e8e8e8;
  --text-secondary: #b0b0b0;
  --text-muted: #888888;
  --text-on-primary: #ffffff;

  /* Border Colors */
  --border-color: #333333;
  --border-light: #3a3a3a;

  /* Shadows for dark mode */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.5);
  --shadow-hover: 0 12px 32px rgba(0, 0, 0, 0.6);
}
