/* تعريف الخطوط */
@font-face {
    font-family: 'LamaSans';
    src: url('../fonts/LamaSans-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

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

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

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

/* تطبيق الخط على العناصر */
body {
    font-family: 'LamaSans', sans-serif;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'LamaSans', sans-serif;
    font-weight: 700;
}

.text-light {
    font-weight: 400;
}

.text-medium {
    font-weight: 500;
}

.text-semibold {
    font-weight: 600;
}

.text-bold {
    font-weight: 700;
}
