/* ==========================================================================
   CSS Variables - Theme System
   ========================================================================== */

:root {
  /* Typography */
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
  --font-mono: 'JetBrains Mono', 'Fira Code', Consolas, Monaco, monospace;

  /* Font Sizes */
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 1.875rem;
  --text-4xl: 2.25rem;
  --text-5xl: 3rem;

  /* Font Weights */
  --font-normal: 400;
  --font-medium: 500;
  --font-semibold: 600;
  --font-bold: 700;

  /* Line Heights */
  --leading-tight: 1.25;
  --leading-normal: 1.5;
  --leading-relaxed: 1.625;

  /* Spacing */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;

  /* Border Radius */
  --radius-sm: 0.25rem;
  --radius-md: 0.375rem;
  --radius-lg: 0.5rem;
  --radius-xl: 0.75rem;
  --radius-2xl: 1rem;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-normal: 250ms ease;
  --transition-slow: 350ms ease;

  /* Container */
  --container-max: 1200px;
  --container-padding: var(--space-6);

  /* Header */
  --header-height: 4rem;
}

/* ==========================================================================
   Light Theme (Default)
   ========================================================================== */

[data-theme="light"], :root {
  --color-bg: #FFFFFF;
  --color-bg-secondary: #F9FAFB;
  --color-bg-tertiary: #F3F4F6;

  --color-text: #1F2937;
  --color-text-secondary: #6B7280;
  --color-text-tertiary: #9CA3AF;

  --color-accent: #0D9488;
  --color-accent-hover: #0F766E;
  --color-accent-light: #CCFBF1;

  --color-border: #E5E7EB;
  --color-border-hover: #D1D5DB;

  --color-card-bg: #FFFFFF;
  --color-card-shadow: rgba(0, 0, 0, 0.08);

  --color-nav-bg: rgba(255, 255, 255, 0.9);
  --color-nav-border: rgba(229, 231, 235, 0.8);

  /* Code blocks */
  --color-code-bg: #F3F4F6;
  --color-code-text: #1F2937;
}

/* ==========================================================================
   Dark Theme
   ========================================================================== */

[data-theme="dark"] {
  --color-bg: #121212;
  --color-bg-secondary: #1F2937;
  --color-bg-tertiary: #374151;

  --color-text: #F9FAFB;
  --color-text-secondary: #9CA3AF;
  --color-text-tertiary: #6B7280;

  --color-accent: #14B8A6;
  --color-accent-hover: #2DD4BF;
  --color-accent-light: #134E4A;

  --color-border: #374151;
  --color-border-hover: #4B5563;

  --color-card-bg: #1F2937;
  --color-card-shadow: rgba(0, 0, 0, 0.3);

  --color-nav-bg: rgba(18, 18, 18, 0.9);
  --color-nav-border: rgba(55, 65, 81, 0.8);

  /* Code blocks */
  --color-code-bg: #1F2937;
  --color-code-text: #F9FAFB;
}
