/* پایه */

:root {
    --max-site-width: 1200px;
    --container-padding: 16px;
    --text-color: #111827;
    --muted: #6b7280;
    --accent1: #4f46e5;
    --accent2: #7c3aed;
    --bg: #ffffff;
    --radius: 10px;
    --transition: 200ms ease;
    --font-family: "Vazirmatn", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
}


/* ریست سبک‌های پایه‌ای */

* {
    box-sizing: border-box
}

html,
body {
    height: 100%
}

body {
    margin: 0;
    font-family: var(--font-family);
    color: var(--text-color);
    line-height: 1.6;
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    direction: rtl;
    /* چون سایت فارسیه */
}


/* کانتینر مرکزی */

.container {
    max-width: var(--max-site-width);
    margin: 0 auto;
    padding-left: var(--container-padding);
    padding-right: var(--container-padding);
}


/* تایپوگرافی ریسپانسیو */

h1,
h2,
h3 {
    margin: 0 0 0.5rem 0;
    line-height: 1.15
}

h1 {
    font-size: clamp(1.6rem, 2.6vw, 2.4rem)
}

h2 {
    font-size: clamp(1.4rem, 2.1vw, 2rem)
}

h3 {
    font-size: clamp(1.2rem, 1.6vw, 1.4rem)
}

p,
li,
span,
a {
    font-size: clamp(0.95rem, 1.2vw, 1rem)
}


/* لینک‌ها و دکمه‌ها */

a {
    color: var(--accent1);
    text-decoration: none
}

a:hover {
    text-decoration: underline
}

.btn-primary {
    display: inline-block;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    background: linear-gradient(90deg, var(--accent1), var(--accent2));
    color: #fff;
    font-weight: 600;
    border: 0;
    cursor: pointer;
    transition: transform var(--transition), box-shadow var(--transition);
    box-shadow: 0 6px 18px rgba(79, 70, 229, 0.12);
}

.btn-primary:active {
    transform: translateY(1px)
}

.btn-ghost {
    background: transparent;
    border: 1px solid #e5e7eb;
    padding: 0.6rem 0.9rem;
    border-radius: 8px;
}


/* فرم‌ها */

.input {
    width: 100%;
    padding: 0.75rem;
    margin-bottom: 0.9rem;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
    background: #fff;
    outline: none;
    font-size: 1rem;
}

.input:focus {
    box-shadow: 0 0 0 4px rgba(79, 70, 229, 0.06);
    border-color: var(--accent1);
}


/* تصاویر ریسپانسیو */

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


/* هیرو / بخش ابتدایی */

.hero {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 3rem 0;
    width: 100%;
}

.hero .hero-content {
    flex: 1
}

.hero .hero-img {
    flex: 0 0 280px;
    max-width: 40%
}

.hero .hero-img img {
    border-radius: 12px;
    object-fit: cover;
    width: 100%;
    height: 100%
}


/* کارت‌ها */

.card {
    background: #fff;
    border-radius: 12px;
    padding: 1rem;
    box-shadow: 0 6px 20px rgba(15, 23, 42, 0.05);
}


/* نوار ناوبری (responsive) */

.header {
    width: 100%;
    background: transparent;
    position: relative;
    z-index: 40;
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.8rem 0;
}

.brand {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.brand img {
    width: 44px;
    height: 44px;
    object-fit: contain;
    border-radius: 8px
}

.nav-links {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    justify-content: flex-end;
}

.nav-links a {
    padding: 0.5rem 0.6rem;
    border-radius: 8px;
    white-space: nowrap;
}

.nav-links a:hover {
    background: #f3f4f6
}


/* دکمه همبرگر برای موبایل (hidden در دسکتاپ) */

.menu-toggle {
    display: none;
    background: transparent;
    border: 0;
    font-size: 1.25rem;
    padding: 0.4rem;
    cursor: pointer;
}


/* حالت موبایل: منوی کشویی */

.mobile-nav {
    display: none;
    position: relative;
    margin-top: 0.5rem;
}

.mobile-nav.open {
    display: block
}

.mobile-nav a {
    display: block;
    padding: 0.75rem 0.5rem;
    border-radius: 8px;
    margin-bottom: 0.25rem;
}


/* فوتر ساده */

.footer {
    padding: 2rem 0;
    color: var(--muted);
    font-size: 0.95rem
}


/* کمک‌های کوچک برای overflow متن در جداول/پروفایل */

.truncate {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap
}


/* Media Queries */

@media (max-width: 900px) {
    .hero {
        flex-direction: column-reverse;
        align-items: flex-start
    }
    .hero .hero-img {
        flex: 0 0 100%;
        max-width: 100%
    }
    .nav-links {
        display: none
    }
    .menu-toggle {
        display: inline-flex
    }
    .container {
        padding-left: 12px;
        padding-right: 12px
    }
}

@media (max-width:600px) {
     :root {
        --container-padding: 12px
    }
    .hero {
        padding: 2rem 0
    }
    h1 {
        font-size: clamp(1.4rem, 3.8vw, 1.9rem)
    }
    .brand img {
        width: 40px;
        height: 40px
    }
}


/* انیمیشن آیکون همبرگر */

#menuToggle span {
    transition: all 0.3s ease;
}


/* ظاهر منوی موبایل */

#mobileNav {
    transition: all 0.4s ease-in-out;
    backdrop-filter: blur(20px);
}


/* --- طراحی منوی حرفه‌ای --- */

.glass {
    backdrop-filter: blur(16px);
    background: rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

#menuToggle span {
    transition: all 0.3s ease;
}


/* انیمیشن همبرگر */

.rotate-45 {
    transform: rotate(45deg);
}

.-rotate-45 {
    transform: rotate(-45deg);
}

.translate-y-1.5 {
    transform: translateY(6px);
}

.-translate-y-1.5 {
    transform: translateY(-6px);
}


/* منوی موبایل */

.mobile-nav {
    transition: all 0.35s ease-in-out;
}


/* سایه و شفافیت بهتر در موبایل */

.mobile-nav a {
    display: block;
    width: 100%;
    text-align: center;
    padding: 0.5rem 0;
}