/* =========================
   Google Fonts Import
   ========================= */
@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');

/* =========================
   Base Typography
   ========================= */
body {
  font-family: 'Poppins', 'Cairo', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
}

h1 {
  font-size: 32px;
  font-weight: 600;
  line-height: 1.2;
}

h2 {
  font-size: 28px;
  font-weight: 600;
  line-height: 1.3;
}

h3 {
  font-size: 24px;
  font-weight: 600;
  line-height: 1.3;
}

h4 {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.4;
}

h5,
h6 {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
}

/* =========================
   Arabic-specific Typography
   ========================= */
[lang="ar"] body {
  font-family: 'Cairo', sans-serif;
  font-weight: 400;
}

/* Ensure headings in Arabic exactly match English (same weight) */
[lang="ar"] h1,
[lang="ar"] h2,
[lang="ar"] h3,
[lang="ar"] h4,
[lang="ar"] h5,
[lang="ar"] h6 {
  font-weight: 600;
}

/* === Arabic h1 size override ===
   📝 Change font-size below to control Arabic h1 size globally.
   Example: 24px or 22px if 10px is too small.
*/
[lang="ar"] h1 {
  font-size: 24px; /* <- adjust this value as needed */
  line-height: 1.2;
}
