﻿/* Custom Font Declarations */

@font-face {
    font-family: 'YourFontName';
    src: url('/fonts/YourFontFile.woff2') format('woff2'),
      url('/fonts/YourFontFile.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* Add more font weights if needed */
@font-face {
    font-family: 'YourFontName';
    src: url('/fonts/YourFontFile-Bold.woff2') format('woff2'),
         url('/fonts/YourFontFile-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

/* Custom Font Declarations - Scheherazade New (Arabic Font) */

@font-face {
    font-family: 'Scheherazade New';
    src: url('/fonts/ScheherazadeNew-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Scheherazade New';
    src: url('/fonts/ScheherazadeNew-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Scheherazade New';
    src: url('/fonts/ScheherazadeNew-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
 font-family: 'Scheherazade New';
    src: url('/fonts/ScheherazadeNew-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* Apply Scheherazade New for Arabic text */
body[dir="rtl"], 
[dir="rtl"] * {
    font-family: 'Scheherazade New', 'Cairo', 'Tajawal', 'Traditional Arabic', serif !important;
}
