/**
 * CSS Variables - Design Tokens
 * Global color, spacing, and typography definitions
 */

:root {
  /* Background Colors */
  --bg-primary: #dfdfdf;
  --bg-page: #f6f7f8;

  /* Colors - Primary */
  --color-primary: #2a3647;
  --color-primary-super-light: #eeeeee;
  --color-primary-light: #2a3d59;
  --color-primary-dark: #091931;

  /* Colors - Accent */
  --color-accent: #29abe2;
  --color-accent-light: #4fc3f7;
  --color-accent-dark: #005dff;

  /* Colors - Feedback */
  --color-success: #7ae229;
  --color-error: #e60025;
  --color-warning: #ffa800;
  --color-info: #29abe2;

  /* Colors - Neutral */
  --color-white: #ffffff;
  --color-black: #000000;
  --color-gray-50: #f6f7f8;
  --color-gray-100: #eeeeee;
  --color-gray-200: #cdcdcd;
  --color-gray-300: #a8a8a8;
  --color-gray-400: #7a7a7a;
  --color-gray-500: #5c5c5c;
  --color-gray-600: #424242;
  --color-gray-700: #2e2e2e;
  --color-gray-800: #1a1a1a;

  /* Colors - Task Categories */
  --color-user-story: #0038ff;
  --color-technical-task: #1fd7c1;

  /* Colors - Priority */
  --color-urgent-high: #ff3d00;
  --color-urgent-medium: #ffa800;
  --color-urgent-low: #7ae229;

  /* Colors - Profile Badges */
  --color-badge-1: #ff7a00;
  --color-badge-2: #9327ff;
  --color-badge-3: #6e52ff;
  --color-badge-4: #fc71ff;
  --color-badge-5: #ffbb2b;
  --color-badge-6: #1fd7c1;
  --color-badge-7: #462f8a;
  --color-badge-8: #ff4646;
  --color-badge-9: #00bee8;
  --color-badge-10: #ffe62b;
  --color-badge-11: #c3ff2b;
  --color-badge-12: #0038ff;
  --color-badge-13: #ffc701;
  --color-badge-14: #ff745e;
  --color-badge-15: #ffa35e;
  --color-badge-16: #ff5eb3;

  /* Typography - Font Family */
  --font-primary: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  /* Typography - Font Size */
  --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.3125rem; /* 21px */
  --font-size-2xl: 1.5rem; /* 24px */
  --font-size-h2: 1.6875rem; /* 27px */
  --font-size-3xl: 1.875rem; /* 30px */
  --font-size-4xl: 2.25rem; /* 36px */
  --font-size-5xl: 3rem; /* 48px */
  --font-size-6xl: 3.8125rem; /* 61px */

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

  /* Typography - Line Height */
  --line-height-tight: 1.2;
  --line-height-normal: 1.5;
  --line-height-relaxed: 1.75;

  /* Spacing */
  --spacing-xs: 0.25rem; /* 4px */
  --spacing-sm: 0.5rem; /* 8px */
  --spacing-md: 1rem; /* 16px */
  --spacing-lg: 1.5rem; /* 24px */
  --spacing-xl: 2rem; /* 32px */
  --spacing-2xl: 3rem; /* 48px */
  --spacing-3xl: 4rem; /* 64px */
  --spacing-4xl: 5rem; /* 80px */
  --spacing-5xl: 6rem; /* 96px */
  --spacing-6xl: 8rem; /* 128px */

  /* Border Radius */
  --radius-sm: 0.25rem; /* 4px */
  --radius-md: 0.5rem; /* 8px */
  --radius-ml: 0.625rem; /* 10px */
  --radius-lg: 0.75rem; /* 12px */
  --radius-xl: 1rem; /* 16px */
  --radius-2xl: 1.25rem; /* 20px */
  --radius-3xl: 1.875rem; /* 30px */
  --radius-full: 9999px;

  /* Shadows */
  --shadow-xs: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  --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);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --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);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --shadow-card: 0px 0px 14px 3px rgba(0, 0, 0, 0.04);

  /* Transitions */
  --transition-fast: 150ms ease-in-out;
  --transition-base: 200ms ease-in-out;
  --transition-slow: 300ms ease-in-out;

  /* Z-Index */
  --z-dropdown: 1000;
  --z-modal: 2000;
  --z-toast: 3000;
  --z-tooltip: 4000;

  /* Breakpoints (for reference in media queries) */
  --breakpoint-sm: 640px;
  --breakpoint-md: 768px;
  --breakpoint-lg: 1024px;
  --breakpoint-xl: 1280px;

  /* App specific */
  --content-max-width: 1440px;
  --sidebar-width: 232px;
}
