
@font-face {
    font-family: 'Vazirmatn';
    src: url("../../fonts/Vazirmatn[wght].woff2") format("woff2");
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}

/* حذف فاصله‌های پیش‌ فرض مرورگر */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* اسکرول نرم */

html {
    scroll-behavior: smooth;
}

/* تنظیمات کلی صفحه */


body {
    background-color: #111827;
    color: #f9fafb;
    font-family: 'Vazirmatn', sans-serif;
    font-weight: 400;
}


.page-enter {
    animation: pageEnter 0.6s ease-out both;
}

@keyframes pageEnter {

    from {
        opacity: 0;
        transform: translateY(15px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}

@media (prefers-reduced-motion: reduce) {
    .page-enter {
        animation: none;
    }
}