/* ==========================================================================
   DESIGN TOKENS - Motus API Documentation
   CSS Custom Properties for consistent theming
   ========================================================================== */

:root {
  /* === BRAND COLORS === */
  --color-primary: #00adef;
  --color-primary-dark: #0095cc;
  --color-primary-light: #4fc3f7;

  --color-secondary: #440099;
  --color-secondary-dark: #330077;
  --color-secondary-light: #6633cc;

  --color-accent: #dc582a;
  --color-accent-dark: #b8451f;
  --color-accent-light: #ff7043;

  /* === NEUTRAL COLORS === */
  --color-text-primary: #505252;
  --color-text-secondary: #6b6c6c;
  --color-text-muted: #7d7d7d;
  --color-text-inverse: #ffffff;

  --color-bg-primary: #ffffff;
  --color-bg-secondary: #f6f6f6;
  --color-bg-tertiary: #e7e7e8;
  --color-bg-dark: #23242b;
  --color-bg-code: #2d2d2d;

  --color-border: #e1e1e1;
  --color-border-light: #f0f0f0;

  /* === HTTP METHOD COLORS === */
  --color-http-get: #00adef;
  --color-http-post: #22c55e;
  --color-http-put: #dc582a;
  --color-http-delete: #ef4444;
  --color-http-patch: #440099;

  /* === TYPOGRAPHY === */
  --font-family-base: 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-family-mono: 'Source Code Pro', 'Fira Code', Consolas, monospace;

  --font-weight-light: 300;
  --font-weight-normal: 400;
  --font-weight-bold: 700;
  --font-weight-black: 900;

  --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: 2rem;       /* 32px */
  --font-size-4xl: 2.5rem;     /* 40px */

  --line-height-tight: 1.25;
  --line-height-base: 1.5;
  --line-height-relaxed: 1.75;

  /* === SPACING === */
  --space-xs: 0.25rem;    /* 4px */
  --space-sm: 0.5rem;     /* 8px */
  --space-md: 1rem;       /* 16px */
  --space-lg: 1.5rem;     /* 24px */
  --space-xl: 2rem;       /* 32px */
  --space-2xl: 3rem;      /* 48px */
  --space-3xl: 4rem;      /* 64px */

  /* === BORDERS === */
  --radius-sm: 0.25rem;   /* 4px */
  --radius-md: 0.375rem;  /* 6px */
  --radius-lg: 0.5rem;    /* 8px */
  --radius-xl: 1rem;      /* 16px */
  --radius-full: 9999px;

  /* === SHADOWS === */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --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-card: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-card-hover: 0 8px 24px rgba(0, 0, 0, 0.12);

  /* === TRANSITIONS === */
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 350ms ease;

  /* === LAYOUT === */
  --container-max: 1200px;
  --container-narrow: 900px;
  --header-height: 64px;
  --sidebar-width: 280px;

  /* === Z-INDEX === */
  --z-dropdown: 100;
  --z-sticky: 200;
  --z-sidebar: 250;
  --z-header: 300;
  --z-modal: 500;
}
