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

:root {
  /* Colors - Light Mode */
  --color-primary: #4f46e5;
  --color-primary-hover: #4338ca;
  --color-accent: #0e7490;
  --color-accent-hover: #155e75;
  --color-background: #f9fafb;
  --color-backgroundAlt: #ffffff;
  --color-text: #111827;
  --color-textMuted: #6b7280;
  --color-textLight: #6b7280;
  --color-border: #e5e7eb;
  --color-success: #10b981;
  --color-error: #ef4444;

  /* RGB values for opacity utilities */
  --color-primary-rgb: 79 70 229;
  --color-accent-rgb: 14 116 144;

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

  /* Spacing */
  --radius: 1rem;
  --radius-small: 0.5rem;
  --radius-large: 1.5rem;
  --radius-full: 9999px;

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

  /* Button Style */
  --button-radius: 9999px;
}

/* Colors - Dark Mode */
html.dark {
  --color-primary: #818cf8;
  --color-primary-hover: #6366f1;
  --color-accent: #22d3ee;
  --color-accent-hover: #0891b2;
  --color-background: #0f172a;
  --color-backgroundAlt: #1e293b;
  --color-text: #f8fafc;
  --color-textMuted: #94a3b8;
  --color-textLight: #94a3b8;
  --color-border: #334155;
  --color-success: #34d399;
  --color-error: #f87171;

  /* RGB values for dark mode */
  --color-primary-rgb: 129 140 248;
  --color-accent-rgb: 34 211 238;
}
