/**
 * tokens.css — نظام المتغيرات والتصميم لمنصة لَقْطة
 */

:root {
  /* لوحة الألوان الأساسية */
  --color-bg: #F7F8F5;
  --color-surface: #FFFFFF;
  --color-surface-subtle: #F1F4F0;
  --color-surface-elevated: #FFFFFF;

  --color-primary: #214B3C;
  --color-primary-hover: #17362B;
  --color-primary-active: #10271E;
  --color-primary-light: #E8EFEA;
  --color-primary-contrast: #F7F8F5;

  --color-accent: #E8B84A;
  --color-accent-hover: #D7A537;
  --color-accent-active: #C49126;
  --color-accent-light: #FDF7E7;
  --color-accent-contrast: #222A27; /* نص داكن فوق الأصفر لضمان تباين WCAG AA */

  --color-text-main: #222A27;
  --color-text-muted: #626C66;
  --color-text-light: #8B968F;
  --color-text-inverse: #F7F8F5;

  --color-border: #E2E9E3;
  --color-border-hover: #C5D1C7;
  --color-border-focus: #214B3C;

  /* حالات النظام التفاعلية */
  --color-success: #1B7A4B;
  --color-success-bg: #E8F5EE;
  --color-warning: #B56B08;
  --color-warning-bg: #FEF6E7;
  --color-danger: #B42318;
  --color-danger-bg: #FEECEB;
  --color-info: #175CD3;
  --color-info-bg: #EFF8FF;

  /* الخطوط */
  --font-heading: 'Alexandria', 'Noto Sans Arabic', system-ui, -apple-system, sans-serif;
  --font-body: 'Noto Sans Arabic', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;

  /* أحجام الخطوط والتناسق */
  --text-xs: 0.75rem;     /* 12px */
  --text-sm: 0.84375rem;  /* 13.5px */
  --text-base: 0.9375rem; /* 15px */
  --text-md: 1.0625rem;   /* 17px */
  --text-lg: 1.25rem;     /* 20px */
  --text-xl: 1.5rem;      /* 24px */
  --text-2xl: 1.875rem;   /* 30px */
  --text-3xl: 2.25rem;    /* 36px */

  /* ارتفاع السطور */
  --lh-tight: 1.25;
  --lh-normal: 1.55;
  --lh-relaxed: 1.7;

  /* المسافات والتباعد */
  --space-2xs: 0.25rem; /* 4px */
  --space-xs: 0.5rem;   /* 8px */
  --space-sm: 0.75rem;  /* 12px */
  --space-md: 1rem;     /* 16px */
  --space-lg: 1.5rem;   /* 24px */
  --space-xl: 2rem;     /* 32px */
  --space-2xl: 3rem;    /* 48px */
  --space-3xl: 4rem;    /* 64px */

  /* نصف القطر وحواف العناصر */
  --radius-xs: 4px;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  /* الظلال الخفيفة الطبيعية (تجنب الظلال الثقيلة المصطنعة) */
  --shadow-xs: 0 1px 2px rgba(34, 42, 39, 0.04);
  --shadow-sm: 0 2px 4px rgba(34, 42, 39, 0.05), 0 1px 2px rgba(34, 42, 39, 0.03);
  --shadow-md: 0 6px 16px rgba(34, 42, 39, 0.06), 0 2px 4px rgba(34, 42, 39, 0.04);
  --shadow-lg: 0 14px 28px rgba(34, 42, 39, 0.08), 0 4px 8px rgba(34, 42, 39, 0.04);
  --shadow-drawer: -4px 0 24px rgba(34, 42, 39, 0.12);

  /* الانتقالات */
  --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 250ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 350ms cubic-bezier(0.4, 0, 0.2, 1);

  /* تخطيط الحاويات */
  --container-max-width: 1240px;
  --header-height: 72px;
  --mobile-nav-height: 64px;
}

@media (prefers-reduced-motion: reduce) {
  :root {
    --transition-fast: 0.01ms !important;
    --transition-normal: 0.01ms !important;
    --transition-slow: 0.01ms !important;
  }
}
