/**
 * Design System Variables
 * All colors, fonts, spacing, and design tokens
 */

:root {
  /* === COLORS === */

  /* Primary Brand Colors */
  --color-primary: #2f2a5e;           /* Deep purple - Main brand color */
  --color-primary-light: #4a4373;     /* Light purple */
  --color-primary-lighter: #7b7396;   /* Very light purple */
  --color-primary-dark: #241f4a;      /* Dark purple */

  /* Second Primary Color */
  --color-primary-alt: #f95738;       /* Vibrant orange-red */
  --color-primary-alt-dark: #d63f22;  /* Dark orange-red */

  /* Secondary Colors */
  --color-secondary-1: #66d8dd;       /* Turquoise */
  --color-secondary-2: #ffc853;       /* Golden yellow */
  --color-secondary-3: #fc8f47;       /* Orange */
  --color-secondary-4: #f9edde;       /* Cream/beige */

  --color-white: #ffffff;      /* White text */
  --color-border: #e0e0e0;            /* Default border color */
  --color-border-light: #f5f5f5;      /* Light border */


  /* === TYPOGRAPHY === */
  /* Font Families */
  --font-primary: 'Tarif', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  --font-secondary: 'Audrielle No 2', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  --font-tertiary: 'Mulish', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  --font-mono: 'SFMono-Regular', Consolas, 'Liberation Mono', Menlo, Courier, monospace;

  /* Font Weights */
  --font-weight-normal: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;

  /* Font Sizes - Mobile First */
  --font-size-xs: 0.75rem;    /* 12px */
  --font-size-sm: 0.875rem;   /* 14px */
  --font-size-base: 1rem;     /* 16px */
  --font-size-lg: 1.125rem;   /* 18px */
  --font-size-xl: 1.25rem;    /* 20px */
  --font-size-2xl: 1.5rem;    /* 24px */
  --font-size-3xl: 1.875rem;  /* 30px */
  --font-size-4xl: 2.25rem;   /* 36px */
  --font-size-5xl: 3rem;      /* 48px */
  --font-size-6xl: 3.75rem;   /* 60px */

  /* Line Heights */
  --line-height-normal: 1.5;
  --line-height-relaxed: 1.625;


  /* === SPACING === */
  --spacing-1: 0.25rem;   /* 4px */
  --spacing-2: 0.5rem;    /* 8px */
  --spacing-3: 0.75rem;   /* 12px */
  --spacing-4: 1rem;      /* 16px */
  --spacing-5: 1.25rem;   /* 20px */
  --spacing-6: 1.5rem;    /* 24px */
  --spacing-7: 1.75rem;   /* 28px */
  --spacing-8: 2rem;      /* 32px */
  --spacing-10: 2.5rem;   /* 40px */
  --spacing-12: 3rem;     /* 48px */
  --spacing-16: 4rem;     /* 64px */
  --spacing-20: 5rem;     /* 80px */
  --spacing-24: 6rem;     /* 96px */
  --spacing-32: 8rem;     /* 128px */

  /* === SHADOWS === */
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);


  --border-radius-sm: 0.125rem;  /* 2px */
  --border-radius: 0.25rem;      /* 4px */
  --border-radius-md: 0.375rem;  /* 6px */
  --border-radius-lg: 0.5rem;    /* 8px */
  --border-radius-xl: 0.75rem;   /* 12px */
  --border-radius-full: 9999px;

  /* === Z-INDEX === */
  --z-index-sticky: 1020;

  /* === BREAKPOINTS === */
  --breakpoint-sm: 640px;
  --breakpoint-md: 768px;
  --breakpoint-lg: 1024px;
  --breakpoint-xl: 1280px;
}