/**
 * ملف الخطوط الاحتياطية
 * Fonts Fallback CSS
 * يضمن تحميل الخطوط حتى في حالة عدم توفر الإنترنت
 */

/* خط Cairo المحلي كنسخة احتياطية */
@font-face {
    font-family: 'Cairo-Local';
    src: url('assets/fonts/Cairo-Regular.woff2') format('woff2'),
         url('assets/fonts/Cairo-Regular.woff') format('woff'),
         url('assets/fonts/Cairo-Regular.ttf') format('truetype');
    font-weight: 400;
    font-display: swap;
}

@font-face {
    font-family: 'Cairo-Local';
    src: url('assets/fonts/Cairo-Bold.woff2') format('woff2'),
         url('assets/fonts/Cairo-Bold.woff') format('woff'),
         url('assets/fonts/Cairo-Bold.ttf') format('truetype');
    font-weight: 700;
    font-display: swap;
}

/* تحديث متغيرات الخطوط لتشمل النسخة المحلية */
:root {
    --font-family-primary: 'Cairo', 'Cairo-Local', 'Segoe UI', Tahoma, Arial, sans-serif;
}

/* تطبيق الخط الاحتياطي على العناصر الأساسية */
body {
    font-family: var(--font-family-primary) !important;
}

/* إصلاح مشكلة عدم ظهور الأيقونات */
.fas, .far, .fab, .fal, .fad {
    font-family: "Font Awesome 6 Free", "Font Awesome 6 Pro", "Font Awesome 5 Free", "FontAwesome" !important;
}

/* تحسين عرض الأيقونات */
i[class*="fa-"] {
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* إصلاح مشكلة الأيقونات المفقودة */
.fa-phone:before { content: "\f095"; }
.fa-envelope:before { content: "\f0e0"; }
.fa-download:before { content: "\f019"; }
.fa-search:before { content: "\f002"; }
.fa-whatsapp:before { content: "\f232"; }
.fa-facebook:before { content: "\f09a"; }
.fa-twitter:before { content: "\f099"; }
.fa-instagram:before { content: "\f16d"; }
.fa-linkedin:before { content: "\f08c"; }

/* تحسين أداء الخطوط */
* {
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
