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

:root {
  /* Colors - Light Mode */
  --color-primary: #7c3aed;
  --color-primary-hover: #6d28d9;
  --color-accent: #9a3412;
  --color-accent-hover: #7c2d12;
  --color-background: #fafafa;
  --color-backgroundAlt: #ffffff;
  --color-text: #09090b;
  --color-textMuted: #52525b;
  --color-textLight: #71717a;
  --color-border: #e4e4e7;
  --color-success: #22c55e;
  --color-error: #ef4444;

  /* RGB values for opacity utilities */
  --color-primary-rgb: 124 58 237;
  --color-accent-rgb: 154 52 18;

  /* Typography */
  --font-family: Manrope, system-ui, sans-serif;
  --font-display: Sora, system-ui, sans-serif;
  --font-weight-heading: 800;
  --font-weight-body: 400;

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

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

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

/* Colors - Dark Mode */
html.dark {
  --color-primary: #a78bfa;
  --color-primary-hover: #8b5cf6;
  --color-accent: #fb923c;
  --color-accent-hover: #f97316;
  --color-background: #09090b;
  --color-backgroundAlt: #18181b;
  --color-text: #fafafa;
  --color-textMuted: #a1a1aa;
  --color-textLight: #a1a1aa;
  --color-border: #27272a;
  --color-success: #4ade80;
  --color-error: #f87171;

  /* RGB values for dark mode */
  --color-primary-rgb: 167 139 250;
  --color-accent-rgb: 251 146 60;
}
