/* ===========================
   Custom Web Fonts
   =========================== */

/* Vazirmatn (فارسی) */
@font-face {
    font-family: "Vazirmatn";
    font-weight: 400;
    font-style: normal;
    font-display: swap;
    src: url("/wp-content/uploads/fonts/Vazirmatn-Regular.woff2") format("woff2");
}

/* Inter (انگلیسی) */
@font-face {
    font-family: "Inter";
    font-weight: 400;
    font-style: normal;
    font-display: swap;
    src: url("/wp-content/uploads/fonts/Inter-Regular.woff2") format("woff2");
}

/* اعمال فونت‌ها روی کل سایت */
body, h1, h2, h3, h4, h5, h6, p, span, a, li, div {
    font-family: "Vazirmatn", sans-serif;
}

/* اگر می‌خواهید بخش انگلیسی جدا شود، یک کلاس دستی ایجاد کنید */


/* ===========================
   Brand Colors
   =========================== */

:root {
    --primary-color: #0B5ED7;
    --secondary-color: #2B2E34;
    --accent-color: #F59E0B;
    --bg-color: #F5F7FA;
    --text-color: #111827;
}

/* متن عمومی */
body {
    background-color: var(--bg-color);
    color: var(--text-color);
}

/* لینک‌ها */
a {
    color: var(--primary-color);
}
a:hover {
    color: var(--accent-color);
}

/* دکمه‌ها */
button,
input[type="submit"],
.elementor-button {
    background-color: var(--primary-color);
    color: #ffffff;
}
button:hover,
.elementor-button:hover {
    background-color: var(--accent-color);
}
