﻿/* ========================================= */
/* فقط استایل‌های مربوط به لوگو */
/* ========================================= */

.navbar-brand-custom {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px 24px;
    border-bottom: 1px solid #e9ecef;
    background: #f8f9fa;
    min-height: 85px;
    flex-shrink: 0;
}

.logo-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.logo-image {
    width: 220px !important;    /* عرض بزرگتر */
    height: 80px !important;    /* ارتفاع کوچکتر */
    object-fit: contain;
    display: block;
}

@media (max-width: 768px) {
    .logo-image {
        width: 180px !important;
        height: 40px !important;
    }
    
    .navbar-brand-custom {
        padding: 12px 16px;
        min-height: 65px;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .logo-image {
        width: 210px !important;
        height: 48px !important;
    }
}

.navbar-toggler {
    display: none;
}