/* ============================================
   DESIGN TOKENS — MarketingX
   ============================================

   KLEURCODES:
   - Monster Red (logo/accent):  #E5202E
   - Oranje (knoppen/highlights): #F47B20
   - Zwart (tekst/dark):          #0C0C10
   - Crème (achtergrond):         #F5F3EE

   MERK-KLEUREN:
   - ForwardX:      #F47B20 (oranje)
   - LocalX:        #0EA5E9 (blauw)
   - ReviewChicken:  #EAB308 (goud)

   ============================================ */

:root {
  /* Core palette */
  --color-red: #E5202E;
  --color-red-dark: #C41A25;
  --color-red-light: rgba(229, 32, 46, 0.08);
  --color-orange: #F47B20;
  --color-orange-dark: #D96A15;
  --color-orange-light: rgba(244, 123, 32, 0.1);
  --color-black: #0C0C10;
  --color-cream: #F5F3EE;
  --color-cream-dark: #EDEAE3;
  --color-cream-darker: #E0DDD4;
  --color-white: #ffffff;

  /* Semantic colors */
  --color-accent: var(--color-orange);
  --color-accent-hover: var(--color-orange-dark);
  --color-accent-light: var(--color-orange-light);

  /* Text */
  --color-text: var(--color-black);
  --color-text-secondary: #55555E;
  --color-text-tertiary: #8E8E96;
  --color-text-inverse: #F5F3EE;

  /* Borders & surfaces */
  --color-border: #DDD9D0;
  --color-border-light: #EAE7E0;
  --color-surface: #FAF9F6;
  --color-surface-alt: #F0EDE6;

  /* Feedback */
  --color-success: #4A9C6D;
  --color-error: #C44D3F;
  --color-warning: #C49A3F;

  /* Brand colors */
  --color-brand-forwardx: #F47B20;
  --color-brand-localx: #0EA5E9;
  --color-brand-reviewchicken: #EAB308;

  /* Typography */
  --font-heading: 'Red Hat Display', -apple-system, sans-serif;
  --font-body: 'Inter', -apple-system, sans-serif;

  --text-xs: clamp(0.7rem, 0.68rem + 0.1vw, 0.75rem);
  --text-sm: clamp(0.8rem, 0.77rem + 0.15vw, 0.875rem);
  --text-base: clamp(0.95rem, 0.9rem + 0.2vw, 1.0625rem);
  --text-lg: clamp(1.05rem, 1rem + 0.25vw, 1.1875rem);
  --text-xl: clamp(1.15rem, 1.07rem + 0.4vw, 1.375rem);
  --text-2xl: clamp(1.4rem, 1.25rem + 0.65vw, 1.75rem);
  --text-3xl: clamp(1.75rem, 1.5rem + 1.1vw, 2.375rem);
  --text-4xl: clamp(2.1rem, 1.7rem + 1.7vw, 3rem);
  --text-5xl: clamp(2.6rem, 2rem + 2.6vw, 4rem);
  --text-6xl: clamp(3rem, 2.2rem + 3.5vw, 5rem);

  --font-normal: 400;
  --font-medium: 500;
  --font-semibold: 600;
  --font-bold: 700;
  --font-black: 900;

  --leading-none: 1;
  --leading-tight: 1.1;
  --leading-snug: 1.3;
  --leading-normal: 1.6;
  --leading-relaxed: 1.75;

  --tracking-tight: -0.02em;
  --tracking-normal: 0;
  --tracking-wide: 0.02em;
  --tracking-wider: 0.06em;

  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;
  --space-5xl: 8rem;
  --space-6xl: 12rem;

  /* Layout */
  --container-max: 1200px;
  --container-narrow: 800px;
  --container-padding: clamp(1.25rem, 4vw, 2rem);

  /* Borders */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(12, 12, 16, 0.04);
  --shadow-md: 0 4px 16px rgba(12, 12, 16, 0.06);
  --shadow-lg: 0 12px 40px rgba(12, 12, 16, 0.08);
  --shadow-xl: 0 20px 60px rgba(12, 12, 16, 0.1);

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 300ms cubic-bezier(0.16, 1, 0.3, 1);
  --transition-slow: 500ms cubic-bezier(0.16, 1, 0.3, 1);
  --transition-slower: 800ms cubic-bezier(0.16, 1, 0.3, 1);

  /* Header */
  --header-height: 72px;
}
