/* ==============================
   الهيدر الرئيسي
   ============================== */

.top-bar {
    padding: 14px 18px;
    display: flex;
    justify-content: center;
}

/* الشعار */
.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(0, 0, 0, 0.25);
    padding: 10px 18px;
    border-radius: 999px;
    border: 1px solid rgba(245, 215, 161, 0.4);
    backdrop-filter: blur(4px);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.4);
}

.brand-logo {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    overflow: hidden;
    background: radial-gradient(circle, #f5d7a1, #c89b3c);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.35);
}

.brand-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.brand-text {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-size: 18px;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 1px;
}

.brand-subtitle {
    font-size: 14px;
    color: #f7e7d5;
}


/* ==============================
   الهيدر الكبير (صفحة الفروع)
   ============================== */

.big-header {
    padding: 30px 0;
    display: flex;
    justify-content: center;
    background: linear-gradient(180deg, rgba(0,0,0,0.15), rgba(0,0,0,0));
    margin-bottom: 25px;
}

/* تكبير الشعار على الديسكتوب فقط */
.big-header .brand {
    transform: scale(1.35);
    padding: 14px 26px;
    border-radius: 30px;
    background: rgba(0,0,0,0.28);
    border: 1.4px solid rgba(245,215,161,0.4);
    box-shadow: 0 6px 22px rgba(0,0,0,0.45);
}

.big-header .brand-logo {
    width: 70px;
    height: 70px;
}

.big-header .brand-name {
    font-size: 26px;
}

.big-header .brand-subtitle {
    font-size: 15px;
}


/* ==============================
   تحسين العرض على الجوال
   ============================== */

@media (max-width: 600px) {

    /* تقليل الحجم على الجوال */
    .big-header .brand {
        transform: scale(1);     /* إلغاء التكبير */
        padding: 12px 18px;
        border-radius: 22px;
    }

    .big-header .brand-logo {
        width: 55px;
        height: 55px;
    }

    .big-header .brand-name {
        font-size: 20px;
    }

    .big-header .brand-subtitle {
        font-size: 13px;
    }

    .top-bar {
        padding: 10px;
    }

    .brand {
        gap: 8px;
        padding: 8px 14px;
    }

    .brand-logo {
        width: 40px;
        height: 40px;
    }

    .brand-name {
        font-size: 16px;
    }

    .brand-subtitle {
        font-size: 12px;
    }
}
