/* ============================================
   لیدوما - استایل‌های اصلی
   ============================================ */

@font-face {
    font-family: 'Vazirmatn';
    src: url('../assets/fonts/Vazirmatn-Variable.woff2') format('woff2');
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('../assets/fonts/Inter-Variable.woff2') format('woff2');
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}

:root {
    --color-dark-900: #0B0F19;
    --color-dark-800: #111827;
    --color-brand-400: #60A5FA;
    --color-brand-500: #3B82F6;
    --color-brand-600: #2563EB;
    --color-accent-400: #FBBF24;
    --color-accent-500: #F59E0B;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: 'Vazirmatn', sans-serif;
    background-color: var(--color-dark-900);
    color: #E2E8F0;
    overflow-x: hidden;
    width: 100%;
    direction: inherit;
}

.font-en {
    font-family: 'Inter', system-ui, -apple-system, sans-serif !important;
    direction: ltr; /* Force LTR for English */
    text-align: left;
}

.font-fa {
    font-family: 'Vazirmatn', sans-serif !important;
    direction: rtl;
    text-align: right;
}

/* Selection */
::selection {
    background-color: var(--color-brand-500);
    color: white;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--color-dark-900);
}

::-webkit-scrollbar-thumb {
    background: rgba(59, 130, 246, 0.3);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(59, 130, 246, 0.5);
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

