/* Shazde Font Family - Webfont CSS */

/* Shazde Light */
@font-face {
    font-family: 'Shazde';
    src: url('./WOFF2/Shazde-NoEn-Light.woff2') format('woff2'), url('./WOFF/Shazde-NoEn-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

/* Shazde Regular */
@font-face {
    font-family: 'Shazde';
    src: url('./WOFF2/Shazde-NoEn-Regular.woff2') format('woff2'),
         url('./WOFF/Shazde-NoEn-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

/* Shazde Medium */
@font-face {
    font-family: 'Shazde';
    src: url('./WOFF2/Shazde-NoEn-Medium.woff2') format('woff2'),
         url('./WOFF/Shazde-NoEn-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

/* Shazde SemiBold */
@font-face {
    font-family: 'Shazde';
    src: url('./WOFF2/Shazde-NoEn-SemiBold.woff2') format('woff2'),
         url('./WOFF/Shazde-NoEn-SemiBold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

/* Shazde Bold */
@font-face {
    font-family: 'Shazde';
    src: url('./WOFF2/Shazde-NoEn-Bold.woff2') format('woff2'),
         url('./WOFF/Shazde-NoEn-Bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* Shazde ExtraBold */
@font-face {
    font-family: 'Shazde';
    src: url('./WOFF2/Shazde-NoEn-ExtraBold.woff2') format('woff2'),
         url('./WOFF/Shazde-NoEn-ExtraBold.woff') format('woff');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

/* Shazde UltraBold */
@font-face {
    font-family: 'Shazde';
    src: url('./WOFF2/Shazde-NoEn-UltraBold.woff2') format('woff2'),
         url('./WOFF/Shazde-NoEn-UltraBold.woff') format('woff');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

/* Shazde Black */
@font-face {
    font-family: 'Shazde';
    src: url('./WOFF2/Shazde-NoEn-Black.woff2') format('woff2'),
         url('./WOFF/Shazde-NoEn-Black.woff') format('woff');
    font-weight: 950;
    font-style: normal;
    font-display: swap;
}

/* CSS Variables for easy usage */
:root {
    --font-shazde: 'Shazde', sans-serif;
    --font-shazde-light: 300;
    --font-shazde-regular: 400;
    --font-shazde-medium: 500;
    --font-shazde-semibold: 600;
    --font-shazde-bold: 700;
    --font-shazde-extrabold: 800;
    --font-shazde-ultrabold: 900;
    --font-shazde-black: 950;
}

/* Utility classes */
.font-shazde {
    font-family: var(--font-shazde);
}

.font-shazde-light {
    font-family: var(--font-shazde);
    font-weight: var(--font-shazde-light);
}

.font-shazde-regular {
    font-family: var(--font-shazde);
    font-weight: var(--font-shazde-regular);
}

.font-shazde-medium {
    font-family: var(--font-shazde);
    font-weight: var(--font-shazde-medium);
}

.font-shazde-semibold {
    font-family: var(--font-shazde);
    font-weight: var(--font-shazde-semibold);
}

.font-shazde-bold {
    font-family: var(--font-shazde);
    font-weight: var(--font-shazde-bold);
}

.font-shazde-extrabold {
    font-family: var(--font-shazde);
    font-weight: var(--font-shazde-extrabold);
}

.font-shazde-ultrabold {
    font-family: var(--font-shazde);
    font-weight: var(--font-shazde-ultrabold);
}

.font-shazde-black {
    font-family: var(--font-shazde);
    font-weight: var(--font-shazde-black);
}
