/*
Theme Name: Vesta
Theme URI: https://vestait.ir
Author: Vesta IT Group
Author URI: https://vestait.ir
Description: قالب اختصاصی گروه فناوری اطلاعات وستا
Version: 1.0.0
Requires at least: 6.0
Requires PHP: 8.1
Text Domain: vesta
*/

:root {
    --vesta-primary: #4f46e5;
    --vesta-primary-dark: #3730a3;
    --vesta-secondary: #7c3aed;
    --vesta-accent: #06b6d4;

    --vesta-dark: #0f172a;
    --vesta-dark-soft: #1e293b;

    --vesta-text: #111827;
    --vesta-text-soft: #64748b;

    --vesta-bg: #f8fafc;
    --vesta-white: #ffffff;
    --vesta-border: #e2e8f0;

    --vesta-radius-sm: 10px;
    --vesta-radius-md: 16px;
    --vesta-radius-lg: 24px;
    --vesta-radius-xl: 32px;

    --vesta-container: 1240px;

    --vesta-shadow-sm: 0 4px 15px rgba(15, 23, 42, 0.05);
    --vesta-shadow-md: 0 15px 40px rgba(15, 23, 42, 0.08);
    --vesta-shadow-lg: 0 25px 70px rgba(15, 23, 42, 0.12);

    --vesta-radius-pill: 999px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    background: var(--vesta-bg);
    color: var(--vesta-text);
    font-family: Vazir, "Vazirmatn", Tahoma, Arial, sans-serif;
    font-size: 16px;
    line-height: 1.9;
    direction: rtl;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea,
select {
    font: inherit;
}

button {
    cursor: pointer;
}

.container {
    width: min(calc(100% - 40px), var(--vesta-container));
    margin-inline: auto;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.vesta-section {
    padding: 100px 0;
}

.vesta-section-header {
    max-width: 720px;
    margin: 0 auto 55px;
    text-align: center;
}

.vesta-section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
    padding: 7px 14px;
    border-radius: 999px;
    background: rgba(79, 70, 229, 0.08);
    color: var(--vesta-primary);
    font-size: 13px;
    font-weight: 700;
}

.vesta-section-title {
    margin: 0 0 15px;
    color: var(--vesta-dark);
    font-size: clamp(28px, 4vw, 44px);
    line-height: 1.35;
    font-weight: 900;
    letter-spacing: -1px;
}

.vesta-section-description {
    margin: 0;
    color: var(--vesta-text-soft);
    font-size: 17px;
}

@media (max-width: 768px) {
    .container {
        width: min(calc(100% - 28px), var(--vesta-container));
    }

    .vesta-section {
        padding: 70px 0;
    }
}
@media (max-width: 520px) {

    .vesta-footer-trust {
        width: 100%;

        align-items: center;
    }

}