/* تنظیم فونت فارسی برای کل سایت */
body {
    font-family: 'Vazirmatn', sans-serif;
    background-color: #f8f9fa;
}

/* رنگ اصلی برند (سبز کله‌غازی برگرفته از لوگو) */
.bg-custom {
    background-color: #004d40 !important; /* کد حدودی رنگ لوگوی شما */
}

.text-custom {
    color: #004d40 !important;
}

/* استایل دکمه‌های طلایی */
.btn-gold {
    background-color: #d4af37;
    color: #fff;
    border: none;
    font-weight: bold;
}
.btn-gold:hover {
    background-color: #b5952f;
    color: #fff;
}

/* استایل دکمه‌های حاشیه‌دار */
.btn-outline-custom {
    color: #004d40;
    border-color: #004d40;
}
.btn-outline-custom:hover {
    background-color: #004d40;
    color: white;
}

/* تنظیمات بنر اصلی */
.hero-section {
    background: linear-gradient(rgba(0, 77, 64, 0.8), rgba(0, 77, 64, 0.8)), url('images/bg-pattern.jpg');
    /* اگر عکس پس زمینه ندارید، خط بالا رنگ خالی نشان می‌دهد */
    background-size: cover;
    background-position: center;
    min-height: 400px;
}

/* تنظیم فاصله برای بخش‌هایی که لینک می‌شوند تا زیر منو نروند */
section {
    scroll-margin-top: 70px;
}