/* background-effect.css - تصویر پس‌زمینه ثابت سیاه و سفید (تیره‌تر) */

/* تصویر پس‌زمینه برای کل سایت */
body {
    position: relative;
    background-color: #fafafa;
    transition: background-color 0.3s ease;
}

body.dark-theme {
    background-color: #0a1628;
}

/* لایه تصویر پس‌زمینه - ثابت، بدون تغییر، سیاه و سفید، تیره‌تر */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://cdn.nody.ir/files/2025/02/10/nody-%D8%B9%DA%A9%D8%B3-%D8%AF%D8%B1%D9%81%D8%B4-%DA%A9%D8%A7%D9%88%DB%8C%D8%A7%D9%86%DB%8C-%D9%BE%D8%B1%DA%86%D9%85-%D8%A7%DB%8C%D8%B1%D8%A7%D9%86-1739133306.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.008;
    pointer-events: none;
    z-index: -1;
    filter: grayscale(100%);
}

/* ========== تم دارک ========== */
body.dark-theme::before {
    opacity: 0.012;
}

/* ========== ریسپانسیو موبایل ========== */
@media (max-width: 768px) {
    body::before {
        opacity: 0.005;
    }
}