/* Shazde Font Family - Variable Font CSS */

/* Shazde Variable Font */
@font-face {
    font-family: 'ShazdeVF';
    src: url('./Shazde VF.woff2') format('woff2-variations'),
         url('./Shazde VF.woff') format('woff-variations');
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}

/* CSS Variables for easy usage */
:root {
    --font-shazde: 'ShazdeVF', sans-serif;
    --font-shazde-thin: 100;
    --font-shazde-extralight: 200;
    --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-black: 900;
}

/* Utility classes */
.font-shazde {
    font-family: var(--font-shazde);
}

.font-shazde-thin {
    font-family: var(--font-shazde);
    font-weight: var(--font-shazde-thin);
}

.font-shazde-extralight {
    font-family: var(--font-shazde);
    font-weight: var(--font-shazde-extralight);
}

.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-black {
    font-family: var(--font-shazde);
    font-weight: var(--font-shazde-black);
}

/* Variable font interpolation examples */
.font-shazde-custom {
    font-family: var(--font-shazde);
    font-weight: 350; /* Any weight between 100-900 */
}
