/* ============================================
   متغيرات المشروع - Project Variables
   ============================================ */

/* الخطوط - Fonts */
@font-face {
    font-family: 'Cairo';
    src: url('../assets/fonts/Cairo-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Cairo';
    src: url('../assets/fonts/Cairo-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Cairo';
    src: url('../assets/fonts/Cairo-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Cairo';
    src: url('../assets/fonts/Cairo-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Cairo';
    src: url('../assets/fonts/Cairo-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Cairo';
    src: url('../assets/fonts/Cairo-ExtraBold.ttf') format('truetype');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Cairo';
    src: url('../assets/fonts/Cairo-Black.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Cairo';
    src: url('../assets/fonts/Cairo-ExtraLight.ttf') format('truetype');
    font-weight: 200;
    font-style: normal;
    font-display: swap;
}

/* Harir Font */
@font-face {
    font-family: 'Harir';
    src: url('../assets/fonts/Harir_complete_OTF_Harir.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Harir';
    src: url('../assets/fonts/Harir_complete_OTF_Harir_Bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* المتغيرات - CSS Variables */
:root {
    /* الألوان الأساسية - Primary Colors */
    --color-primary: #314657;
    --color-secondary: #ea9f79;
    --color-light: #dddddd;
    
    /* ألوان النص - Text Colors */
    --color-text-dark: #314657;
    --color-text-light: #ffffff;
    
    /* الخط - Font */
    --font-family-primary: 'Cairo', sans-serif;
    --font-family-secondary: 'Harir', serif;
}

/* تطبيق الخط على العناصر الأساسية */
body {
    font-family: var(--font-family-primary);
}

/* تطبيق الألوان على Bootstrap */
:root {
    --bs-primary: var(--color-primary);
    --bs-secondary: var(--color-secondary);
}

