/* Ydek Child Theme - Custom Styles */

:root {
    --font-vazir: 'Vazir', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

html, body {
    font-family: var(--font-vazir);
    direction: rtl;
    text-align: right;
}

/* Optimize for loading performance */
* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-vazir);
    font-weight: 700;
}

p, div, span, li {
    font-family: var(--font-vazir);
}

/* Ensure Vazir font loads properly */
@supports (font-display: swap) {
    @font-face {
        font-display: swap;
    }
}
