/**
 * Edufin Design System - CSS Variables
 * Extracted from Figma design tokens
 */

:root {
  /* =================================
     COLORS
     ================================= */
  
  /* Primary Colors */
  --color-primary-orange: #F04C0D;
  --color-primary-green-dark: #114E3C;
  --color-primary-green-light: #E1EE57;
  --color-primary-green-lightest: #ECF4E9;
  
  /* Neutral Colors */
  --color-neutral-900: #202939;
  --color-neutral-600: #697586;
  --color-neutral-500: #9AA4B2;
  --color-neutral-300: #E3E8EF;
  --color-neutral-50: #FCFCFD;
  
  /* Base Colors */
  --color-base-black: #272727;
  --color-base-white: #FFFFFF;
  --color-base-white-bg: #FAFAFA;
  --color-base-gray-text: #677489;
  --color-base-white-stroke: #E3E8EF;
  
  /* Text Colors */
  --color-text-primary: #101828;
  --color-text-secondary: #344054;
  
  /* =================================
     TYPOGRAPHY
     ================================= */
  
  /* Font Family */
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-display: 'Instrument Sans', var(--font-primary);
  
  /* Font Sizes */
  --text-xs: 0.75rem;    /* 12px */
  --text-sm: 0.875rem;   /* 14px */
  --text-base: 1rem;     /* 16px */
  --text-lg: 1.125rem;   /* 18px */
  --text-xl: 1.25rem;    /* 20px */
  --text-2xl: 1.5rem;    /* 24px */
  --text-3xl: 2.25rem;   /* 36px */
  --text-4xl: 3.5rem;    /* 56px */
  
  /* Line Heights */
  --leading-tight: 1.15;
  --leading-snug: 1.25;
  --leading-normal: 1.5;
  --leading-relaxed: 1.625;
  
  /* Font Weights */
  --font-regular: 400;
  --font-medium: 500;
  --font-semibold: 600;
  --font-bold: 700;
  
  /* =================================
     SPACING
     ================================= */
  
  --space-0: 0;
  --space-1: 0.25rem;   /* 4px */
  --space-2: 0.5rem;    /* 8px */
  --space-3: 0.75rem;   /* 12px */
  --space-4: 1rem;      /* 16px */
  --space-5: 1.25rem;   /* 20px */
  --space-6: 1.5rem;    /* 24px */
  --space-8: 2rem;      /* 32px */
  --space-10: 2.5rem;   /* 40px */
  --space-12: 3rem;     /* 48px */
  --space-13: 3.25rem;  /* 52px */
  --space-16: 4rem;     /* 64px */
  --space-20: 5rem;     /* 80px */
  --space-24: 6rem;     /* 96px */
  --space-30: 7.5rem;   /* 120px */
  
  /* =================================
     LAYOUT
     ================================= */
  
  --container-width: 1200px;
  --page-width: 1440px;
  --content-padding: var(--space-30);
  
  /* =================================
     BORDER RADIUS
     ================================= */
  
  --radius-xs: 0.25rem;  /* 4px */
  --radius-sm: 0.5rem;   /* 8px */
  --radius-md: 0.625rem; /* 10px */
  --radius-lg: 0.75rem;  /* 12px */
  --radius-xl: 1rem;     /* 16px */
  --radius-2xl: 1.5rem;  /* 24px */
  --radius-full: 9999px;
  
  /* =================================
     SHADOWS
     ================================= */
  
  --shadow-xs: 0 1px 2px 0 rgba(82, 88, 102, 0.06);
  --shadow-card: 0 0 24px 2px rgba(0, 0, 0, 0.06);
  --shadow-navbar: 0 4px 24px rgba(0, 0, 0, 0.08);
  
  /* =================================
     EFFECTS
     ================================= */
  
  /* Glass morphism for navbar */
  --glass-bg: rgba(255, 255, 255, 0.9);
  --glass-blur: blur(12px);
  
  /* =================================
     TRANSITIONS
     ================================= */
  
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 350ms ease;
  
  /* =================================
     Z-INDEX SCALE
     ================================= */
  
  --z-base: 1;
  --z-dropdown: 100;
  --z-sticky: 200;
  --z-fixed: 300;
  --z-modal-backdrop: 400;
  --z-modal: 500;
  --z-popover: 600;
  --z-tooltip: 700;
}

/* Dark mode if needed in future */
@media (prefers-color-scheme: dark) {
  :root {
    /* Override for dark mode if needed */
  }
}
