:root {
  /* Typography */
  --font-family-persian: 'Vazir', sans-serif;
  --font-family-english: 'Inter', sans-serif;
  --font-family-base: var(--font-family-persian);

  --font-size-xs: 0.75rem;
  --font-size-sm: 0.875rem;
  --font-size-base: 1rem;
  --font-size-lg: 1.125rem;
  --font-size-xl: 1.25rem;
  --font-size-2xl: 1.5rem;
  --font-size-3xl: 1.875rem;
  --font-size-4xl: 2.25rem;
  --font-size-5xl: 3rem;

  --font-weight-light: 300;
  --font-weight-regular: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;

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

  /* Spacing */
  --spacing-0: 0;
  --spacing-1: 0.25rem;
  --spacing-2: 0.5rem;
  --spacing-3: 0.75rem;
  --spacing-4: 1rem;
  --spacing-5: 1.25rem;
  --spacing-6: 1.5rem;
  --spacing-8: 2rem;
  --spacing-10: 2.5rem;
  --spacing-12: 3rem;
  --spacing-16: 4rem;
  --spacing-20: 5rem;
  --spacing-24: 6rem;

  /* Border Radius */
  --radius-none: 0;
  --radius-sm: 0.25rem;
  --radius-md: 0.375rem;
  --radius-lg: 0.5rem;
  --radius-xl: 0.75rem;
  --radius-2xl: 1rem;
  --radius-full: 9999px;

  /* Shadows */
  --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-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-normal: 300ms ease;
  --transition-slow: 500ms ease;

  /* Z-Index */
  --z-dropdown: 1000;
  --z-sticky: 1020;
  --z-fixed: 1030;
  --z-modal-backdrop: 1040;
  --z-modal: 1050;

  /* Container */
  --container-sm: 640px;
  --container-md: 768px;
  --container-lg: 1024px;
  --container-xl: 1280px;
  --container-2xl: 1536px;

  /* Colors - Primary (Deep Blue) */
  --color-primary: #1a365d;
  --color-primary-light: #2c5282;
  --color-primary-dark: #0d1b2e;
  --color-primary-rgb: 26, 54, 93;

  /* Colors - Secondary (Gold) */
  --color-secondary: #c9a227;
  --color-secondary-light: #d4b24a;
  --color-secondary-dark: #a88620;
  --color-secondary-rgb: 201, 162, 39;

  /* Colors - Accent */
  --color-accent: #c53030;
  --color-accent-light: #fc8181;
  --color-accent-dark: #9b2c2c;

  /* Colors - Background */
  --color-bg-primary: #ffffff;
  --color-bg-secondary: #f7f8fc;
  --color-bg-tertiary: #eef1f6;

  /* Colors - Text */
  --color-text-primary: #1a202c;
  --color-text-secondary: #4a5568;
  --color-text-muted: #718096;
  --color-text-inverse: #ffffff;

  /* Colors - Border */
  --color-border: #e2e8f0;
  --color-border-light: #edf2f7;

  /* Header */
  --header-bg: rgba(255, 255, 255, 0.95);
  --header-text: #1a202c;
  --header-height: 80px;

  /* Footer */
  --footer-bg: #0d1b2e;
  --footer-text: #ffffff;

  /* Buttons */
  --btn-primary-bg: #1a365d;
  --btn-primary-text: #ffffff;
  --btn-primary-hover: #0d1b2e;
  --btn-secondary-bg: transparent;
  --btn-secondary-text: #1a365d;
  --btn-secondary-border: #1a365d;

  /* Cards */
  --card-bg: #ffffff;
  --card-border: #e2e8f0;
  --card-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1);
  --card-radius: 0.5rem;

  /* Section */
  --section-padding: 4rem 0;
}

[dir="rtl"] {
  --font-family-base: var(--font-family-persian);
}

[dir="ltr"] {
  --font-family-base: var(--font-family-english);
}
