/* Design System Variables */

:root {
  /* Colors */
  --color-bg: #FAFAFA;
  --color-card-bg: #FFFFFF;
  --color-divider: #F0F0F0;
  --color-primary: #1E3A5F;
  --color-gold: #E5A835;
  --color-text: #333333;
  --color-text-light: #666666;

  /* Typography */
  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Font Sizes */
  --font-size-h1: 48px;
  --font-size-h2: 32px;
  --font-size-h3: 24px;
  --font-size-body: 18px;
  --font-size-small: 16px;

  /* Font Weights */
  --font-weight-semibold: 600;
  --font-weight-medium: 500;
  --font-weight-regular: 400;

  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 4rem;
  --spacing-xl: 6rem;

  /* Layout */
  --max-width: 1400px;
  --max-width-narrow: 800px;
  --border-radius: 8px;
  --border-radius-small: 4px;

  /* Shadows */
  --shadow-card: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-card-hover: 0 4px 16px rgba(0, 0, 0, 0.12);
  --shadow-button: 0 2px 4px rgba(0, 0, 0, 0.1);

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

/* Responsive Font Sizes */
@media (max-width: 768px) {
  :root {
    --font-size-h1: 36px;
    --font-size-h2: 28px;
    --font-size-h3: 22px;
    --font-size-body: 16px;
    --spacing-lg: 3rem;
    --spacing-xl: 4rem;
  }
}
