/* Design System - CSS Custom Properties */

:root {
  /* Colors - Royal Blue & Black Palette (matches logo) */
  --color-primary-text: #2c2c2c;
  --color-secondary-text: #6b6b6b;
  --color-background: #fafaf8;
  --color-accent: #1a3a8f;
  --color-accent-dark: #0f2766;
  --color-accent-light: #e8edf7;
  --color-border: #e0ddd8;
  --color-overlay: rgba(0, 0, 0, 0.92);
  --color-white: #ffffff;

  /* Typography */
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Lora', Georgia, serif;
  --font-ui: 'Source Sans Pro', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Font Sizes */
  --font-size-h1: 3.5rem;      /* 56px */
  --font-size-h2: 2.5rem;      /* 40px */
  --font-size-h3: 1.75rem;     /* 28px */
  --font-size-h4: 1.25rem;     /* 20px */
  --font-size-body: 1.125rem;  /* 18px */
  --font-size-small: 0.875rem; /* 14px */

  /* Spacing (8px base grid) */
  --space-xs: 8px;
  --space-sm: 16px;
  --space-md: 24px;
  --space-lg: 40px;
  --space-xl: 64px;
  --space-2xl: 96px;
  --space-3xl: 128px;

  /* Layout */
  --container-max-width: 1400px;
  --grid-gap: var(--space-md);

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;

  /* Shadows */
  --shadow-small: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-medium: 0 4px 16px rgba(0, 0, 0, 0.12);
  --shadow-large: 0 8px 32px rgba(0, 0, 0, 0.16);

  /* Border Radius */
  --radius-small: 4px;
  --radius-medium: 8px;
  --radius-large: 16px;

  /* Breakpoints (for reference in media queries) */
  --breakpoint-mobile: 768px;
  --breakpoint-tablet: 1024px;
  --breakpoint-desktop: 1440px;
}
