/* ====== استایل‌های سراسری واقعی ====== */
body {
    font-family: 'Vazirmatn', 'Yekan', Tahoma, sans-serif;
    direction: rtl;
    line-height: 1.8;
    color: #3D3D3D;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Markazi Text', 'Vazirmatn', serif;
    color: #064e3b;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* دکمه‌های عمومی */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, #D4AF37, #B8941F);
    color: #064e3b;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

/* استایل صفحات داخلی */
.page .entry-content,
.single .entry-content {
    background: #ffffff;
    padding: 50px 40px;
    border-radius: 16px;
    margin: 40px 0;
    box-shadow: 0 10px 30px rgba(6, 78, 59, 0.08);
}

.page .entry-content h1,
.single .entry-content h1 {
    color: #064e3b;
    font-size: 32px;
    margin-bottom: 25px;
    border-bottom: 2px solid #D4AF37;
    padding-bottom: 15px;
}

.page .entry-content p,
.single .entry-content p {
    color: #4A4A4A;
    font-size: 16px;
    line-height: 2;
    margin-bottom: 20px;
}

/* رسپانسیو */
@media (max-width: 768px) {
    .page .entry-content,
    .single .entry-content {
        padding: 30px 20px;
    }
}