/* 1. پێناسەکردنی فۆنتەکان بە لۆکاڵی */
@font-face {
    font-family: 'Vazirmatn';
    src: url('../fonts/Vazirmatn-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Vazirmatn';
    src: url('../fonts/Vazirmatn-Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Vazirmatn';
    src: url('../fonts/Vazirmatn-Black.woff2') format('woff2');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

/* 2. جێبەجێکردنی فۆنتەکە لەسەر هەموو سایتەکە */
body {
    font-family: 'Vazirmatn', sans-serif;
}

/* 3. چاککردنی سکرۆڵبار (Scrollbar) */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #f1f5f9;
}
::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}
/* NProgress Color (Blue) */
#nprogress .bar {
    background: #2563eb !important;
    height: 3px !important;
}
#nprogress .peg {
    box-shadow: 0 0 10px #2563eb, 0 0 5px #2563eb !important;
}

/* Smooth Image Fade-In */
img[loading="lazy"] {
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}
img.loaded {
    opacity: 1;
}