/*
 * Identity Fonts - خطوط الهوية
 * Arabic: ManchetteFine | English: The Seasons
 */

/* ManchetteFine - Arabic */
@font-face {
  font-family: 'ManchetteFine';
  src: url('../fonts/ar/ManchetteFine-Thin.otf') format('opentype');
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'ManchetteFine';
  src: url('../fonts/ar/ManchetteFine-UltraLight.otf') format('opentype');
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'ManchetteFine';
  src: url('../fonts/ar/ManchetteFine-Light.otf') format('opentype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'ManchetteFine';
  src: url('../fonts/ar/ManchetteFine-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'ManchetteFine';
  src: url('../fonts/ar/ManchetteFine-Medium.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'ManchetteFine';
  src: url('../fonts/ar/ManchetteFine-SemiBold.otf') format('opentype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'ManchetteFine';
  src: url('../fonts/ar/ManchetteFine-Bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'ManchetteFine';
  src: url('../fonts/ar/ManchetteFine-ExtraBold.otf') format('opentype');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'ManchetteFine';
  src: url('../fonts/ar/ManchetteFine-Black.otf') format('opentype');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'ManchetteFine';
  src: url('../fonts/ar/ManchetteFine-Heavy.otf') format('opentype');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

/* The Seasons - English */
@font-face {
  font-family: 'The Seasons';
  src: url('../fonts/en/the-seasons-regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* Apply fonts by language/direction - ضبط الخط حسب اللغة */
html[dir="rtl"],
html[lang="ar"] {
  --bs-font-sans-serif: 'ManchetteFine', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-family: var(--bs-font-sans-serif);
}

html[dir="ltr"] {
  --bs-font-sans-serif: 'The Seasons', Georgia, 'Times New Roman', serif;
  font-family: var(--bs-font-sans-serif);
}

/* Arabic text (e.g. Quranic verse) - يثبت خط ManchetteFine بجميع اللغات */
.font-arabic {
  font-family: 'ManchetteFine', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif !important;
}
