/**
 * Design Tokens - موقع برنامج الحسابات (أفكار العولمة)
 * مستوحى من مكونات وتصميم Weember - الألوان والتصميم فقط (بدون نسخ المحتوى)
 * ملف ثابت لإعادة الاستخدام في أي صفحة أو مشروع
 */

:root {
  --color-primary: #0f172a;
  --color-primary-light: #1e293b;
  --color-primary-dark: #020617;
  --color-accent: #ea580c;
  --color-accent-hover: #c2410c;
  --color-accent-light: #fff7ed;
  --color-bg: #f8fafc;
  --color-bg-section: #ffffff;
  --color-bg-hero: #0f172a;
  --color-bg-card: #ffffff;
  --color-text: #1e293b;
  --color-text-muted: #64748b;
  --color-text-inverse: #ffffff;
  --color-border: #e2e8f0;
  --color-border-light: #f1f5f9;
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --shadow-card: 0 1px 3px 0 rgb(0 0 0 / 0.06), 0 1px 2px -1px rgb(0 0 0 / 0.06);
  --section-padding-y: 4rem;
  --section-padding-x: 1.5rem;
  --container-max: 1280px;
  --font-sans: 'Instrument Sans', ui-sans-serif, system-ui, sans-serif;
  --font-arabic: 'Noto Kufi Arabic', sans-serif;
  --font-heading: var(--font-sans);
  --text-hero: 2.5rem;
  --text-hero-sm: 1.875rem;
  --text-section-title: 1.75rem;
  --text-card-title: 1.125rem;
  --text-body: 1rem;
  --text-small: 0.875rem;
  --radius-sm: 0.25rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-button: var(--radius-md);
  --transition: 0.2s ease;
  --transition-slow: 0.3s ease;
  --hero-bg: #18203a;
  --hero-accent: #D2B68A;
  --hero-accent-hover: #c4a373;
  --hero-text: #eee5d5;
}

@media (min-width: 768px) {
  :root {
    --section-padding-y: 5rem;
    --section-padding-x: 2rem;
    --text-hero: 3.5rem;
    --text-hero-sm: 2.25rem;
    --text-section-title: 2rem;
  }
}

@media (min-width: 1024px) {
  :root {
    --section-padding-y: 6rem;
    --section-padding-x: 2.5rem;
    --text-hero: 4rem;
    --text-section-title: 2.25rem;
  }
}
