/* ...استيراد الخطوط... */
@font-face {
  font-family: 'ExpoArabic-Light';
  src: url('../fonts/ExpoArabic-Light.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

body {
  background: var(--background-color);
  min-height: 100vh;
  color: var(--primary-color);
  font-family: var(--body-font-family);
}

body, h1, h2, h3, h4, h5, h6, p, ul li, a, button, input, textarea, label, em, strong, b, span {
  font-family: 'ExpoArabic-Light', Arial, Helvetica, sans-serif !important;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: var(--font-weight-bold);
}

h1 { font-size: var(--h1-font-size); }
h2 { font-size: var(--h2-font-size); }
h3 { font-size: var(--h3-font-size); }
h4 { font-size: var(--h4-font-size); }
h5 { font-size: var(--h5-font-size); }
h6 { font-size: var(--h6-font-size); }

p, ul li {
  color: var(--p-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-light);
}

a, button {
  touch-action: manipulation;
  transition: all 0.3s;
}

a {
  color: var(--primary-color);
  text-decoration: none;
}

a:hover {
  color: var(--link-hover-color);
}

b, strong {
  font-weight: var(--font-weight-bold);
}
