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

:root {
  /* Colors - Light Mode */
  --color-primary: #1e3a5f;
  --color-primary-hover: #172e4d;
  --color-accent: #d4af37;
  --color-accent-hover: #b8972f;
  --color-background: #ffffff;
  --color-backgroundAlt: #f8fafc;
  --color-text: #0f172a;
  --color-textMuted: #475569;
  --color-textLight: #64748b;
  --color-border: #e2e8f0;
  --color-success: #059669;
  --color-error: #dc2626;

  /* RGB values for opacity utilities */
  --color-primary-rgb: 30 58 95;
  --color-accent-rgb: 212 175 55;

  /* Typography */
  --font-family: Lato, system-ui, sans-serif;
  --font-display: Libre Baskerville, Georgia, serif;
  --font-weight-heading: 700;
  --font-weight-body: 400;

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

  /* Shadows */
  --shadow-card: 0 10px 40px -10px rgba(30, 58, 95, 0.2);
  --shadow-button: 0 10px 30px -10px rgba(30, 58, 95, 0.5);
  --shadow-hover: 0 20px 50px -15px rgba(30, 58, 95, 0.3);

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

/* Colors - Dark Mode */
html.dark {
  --color-primary: #60a5fa;
  --color-primary-hover: #93c5fd;
  --color-accent: #fcd34d;
  --color-accent-hover: #fde68a;
  --color-background: #0f172a;
  --color-backgroundAlt: #1e293b;
  --color-text: #f1f5f9;
  --color-textMuted: #cbd5e1;
  --color-textLight: #94a3b8;
  --color-border: #334155;
  --color-success: #34d399;
  --color-error: #f87171;

  /* RGB values for dark mode */
  --color-primary-rgb: 96 165 250;
  --color-accent-rgb: 252 211 77;
}
