/* تحسين تحميل الخطوط */

/* تحسين تحميل خطوط Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@200;300;400;500;600;700;800;900&display=swap');

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

/* تحسين الأداء للخطوط */
.font-optimized {
    font-family: 'Cairo', 'Cairo-Local', Arial, sans-serif;
    font-display: swap;
}

/* تحسين تحميل الخطوط للشبكات البطيئة */
@media (prefers-reduced-data: reduce) {
    .font-optimized {
        font-family: Arial, sans-serif;
    }
}


