/*
  SUSAN ACEVEDO CAMPAIGN THEME
  Edit this file first when campaign branding changes.

  Quick changes:
  1. Colors: update --brand-blue, --brand-green, --brand-magenta.
  2. Fonts: update the Fontshare link in index.html and the font variables below.
  3. Shapes: update --radius-* if the final brand needs sharper or softer edges.
*/

:root {
  /* Fonts */
  --font-display: 'Cabinet Grotesk', 'Arial Black', system-ui, sans-serif;
  --font-body: 'Satoshi', 'Inter', system-ui, sans-serif;

  /* Temporary colors pulled from the supplied campaign logo */
  --brand-blue: #064ea8;
  --brand-blue-deep: #08326f;
  --brand-green: #078c54;
  --brand-green-deep: #04663d;
  --brand-magenta: #cc0076;
  --brand-gold: #f6c54e;

  /* Type scale */
  --text-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
  --text-sm: clamp(0.875rem, 0.8rem + 0.35vw, 1rem);
  --text-base: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
  --text-lg: clamp(1.125rem, 1rem + 0.75vw, 1.5rem);
  --text-xl: clamp(1.5rem, 1.2rem + 1.25vw, 2.25rem);
  --text-2xl: clamp(2rem, 1.2rem + 2.5vw, 3.5rem);
  --text-3xl: clamp(2.5rem, 1rem + 4vw, 5rem);
  --text-hero: clamp(3rem, 0.5rem + 7vw, 7.5rem);

  /* Spacing */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;

  /* Radius */
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-2xl: 1.5rem;
  --radius-full: 9999px;

  /* Layout widths */
  --content-narrow: 640px;
  --content-default: 960px;
  --content-wide: 1180px;
  --content-full: 100%;

  /* Motion */
  --transition-interactive: 180ms cubic-bezier(0.16, 1, 0.3, 1);
}

:root,
[data-theme='light'] {
  --color-bg: #f7f8fb;
  --color-surface: #ffffff;
  --color-surface-2: #eef4fb;
  --color-surface-offset: #e8f0f7;
  --color-surface-dynamic: #dce8f3;
  --color-divider: #d7e1eb;
  --color-border: #cad7e4;
  --color-text: #10213f;
  --color-text-muted: #4f637e;
  --color-text-faint: #8190a2;
  --color-text-inverse: #ffffff;
  --color-primary: var(--brand-blue);
  --color-primary-hover: var(--brand-blue-deep);
  --color-accent: var(--brand-magenta);
  --color-accent-2: var(--brand-green);
  --color-accent-2-hover: var(--brand-green-deep);
  --color-highlight: #e8f7ef;
  --shadow-sm: 0 1px 2px oklch(0.25 0.04 250 / 0.08);
  --shadow-md: 0 8px 24px oklch(0.25 0.04 250 / 0.12);
  --shadow-lg: 0 20px 56px oklch(0.25 0.04 250 / 0.16);
}

[data-theme='dark'] {
  --color-bg: #071528;
  --color-surface: #0c1e36;
  --color-surface-2: #102643;
  --color-surface-offset: #132b4b;
  --color-surface-dynamic: #183457;
  --color-divider: #1d3a5c;
  --color-border: #2d4d72;
  --color-text: #f1f6fb;
  --color-text-muted: #b7c8dc;
  --color-text-faint: #7d92aa;
  --color-text-inverse: #071528;
  --color-primary: #72a8f3;
  --color-primary-hover: #a4c6f5;
  --color-accent: #ff7dc8;
  --color-accent-2: #65d49e;
  --color-accent-2-hover: #91e5b9;
  --color-highlight: #123456;
  --shadow-sm: 0 1px 2px oklch(0 0 0 / 0.28);
  --shadow-md: 0 8px 24px oklch(0 0 0 / 0.35);
  --shadow-lg: 0 20px 56px oklch(0 0 0 / 0.46);
}
