@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Outfit:wght@500;600;700&display=swap');

:root {
  /* Brand & Theme Colors (Extracted from Corning Area Chamber of Commerce Logo) */
  --gw-brand-600:    #0e4a60;  /* Primary Deep Navy/Teal */
  --gw-brand-700:    #093747;  /* Darker Navy hover state */
  --gw-brand-accent: #52c5be;  /* Bright Aqua/Teal accent */
  --gw-brand-50:     #eff9f8;  /* Soft Aqua background highlight */
  
  /* Neutral Ink Palette */
  --gw-ink-900:      #0b232e;  /* Primary headings */
  --gw-ink-700:      #263e4b;  /* Body text */
  --gw-ink-500:      #57707c;  /* Secondary text / descriptions */
  --gw-ink-300:      #a3b6c0;  /* Disabled / placeholder */

  /* Surface & Container Colors */
  --gw-surface:      #FFFFFF;  /* Main card background */
  --gw-surface-2:    #f2f7f8;  /* Elevated layout shading */
  --gw-line:         #d8e4e8;  /* Borders and dividers */

  /* Spacing Grid (4px multiples) */
  --gw-space-1:  0.25rem;   /* 4px */
  --gw-space-2:  0.5rem;    /* 8px */
  --gw-space-3:  0.75rem;   /* 12px */
  --gw-space-4:  1rem;      /* 16px */
  --gw-space-6:  1.5rem;    /* 24px */
  --gw-space-8:  2rem;      /* 32px */
  --gw-space-12: 3rem;      /* 48px */

  /* Border Radii */
  --gw-radius-sm:   4px;
  --gw-radius-md:   6px;
  --gw-radius-lg:   12px;
  --gw-radius-full: 9999px;

  /* Typography */
  --gw-font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  --gw-font-body:    'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Micro-Animations */
  --gw-duration-sm: 0.2s;
  --gw-ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);

  /* Elevation Shadows */
  --gw-shadow-sm: 0 1px 3px rgba(14, 74, 96, 0.05), 0 1px 2px rgba(14, 74, 96, 0.08);
  --gw-shadow-md: 0 4px 12px rgba(14, 74, 96, 0.06), 0 2px 4px rgba(14, 74, 96, 0.04);
  --gw-shadow-lg: 0 12px 32px rgba(14, 74, 96, 0.08), 0 4px 8px rgba(14, 74, 96, 0.03);
}
