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

:root {
  /* Colors - Light Mode */
  --color-primary: #0369a1;
  --color-primary-hover: #075985;
  --color-accent: #4f46e5;
  --color-accent-hover: #4f46e5;
  --color-background: #f8fafc;
  --color-backgroundAlt: #ffffff;
  --color-text: #0f172a;
  --color-textMuted: #64748b;
  --color-textLight: #64748b;
  --color-border: #e2e8f0;
  --color-success: #10b981;
  --color-error: #ef4444;

  /* RGB values for opacity utilities */
  --color-primary-rgb: 3 105 161;
  --color-accent-rgb: 79 70 229;

  /* Typography */
  --font-family: Inter, system-ui, sans-serif;
  --font-display: Outfit, system-ui, sans-serif;
  --font-weight-heading: 700;
  --font-weight-body: 400;

  /* Spacing */
  --radius: 0.75rem;
  --radius-small: 0.375rem;
  --radius-large: 1rem;
  --radius-full: 9999px;

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

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

/* Colors - Dark Mode */
html.dark {
  --color-primary: #38bdf8;
  --color-primary-hover: #0ea5e9;
  --color-accent: #818cf8;
  --color-accent-hover: #6366f1;
  --color-background: #020617;
  --color-backgroundAlt: #0f172a;
  --color-text: #f1f5f9;
  --color-textMuted: #94a3b8;
  --color-textLight: #94a3b8;
  --color-border: #1e293b;
  --color-success: #34d399;
  --color-error: #f87171;

  /* RGB values for dark mode */
  --color-primary-rgb: 56 189 248;
  --color-accent-rgb: 129 140 248;
}
