﻿.page-banner-section {
    position: relative;
    min-height: 400px; /* نفسك */
    display: flex;
    flex-direction: column;
    justify-content: center; /* توسيط عمودي */
    color: #fff;
    text-align: right; /* نفس المحاذاة */
    padding: 0 12rem; /* نفس الهوامش */
    overflow: hidden;
}

/* الصورة بدل background */
.banner-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* cover مثل background-size: cover */
    object-position: center; /* center مثل background-position: center */
    z-index: 0;
}

/* نفس الـgradient بالضبط */
.banner-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.5));
}

.banner-content-wrapper {
    position: relative;
    z-index: 2;
    max-width: 500px; /* نفسك */
}

.main-banner-title {
    font-size: 4.5rem; /* نفسك */
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.navigation-breadcrumb {
    display: flex;
    flex-wrap: nowrap; /* ما ينزلوا تحت */
    align-items: center;
    gap: .5rem; /* مسافة صغيرة بينهم */
}

    .navigation-breadcrumb span {
        display: inline; /* يبقى السلاش بالوسط */
    }


/* تابلت */
@media (max-width: 768px) {
    .page-banner-section {
        padding: 0 2rem;
        align-items: center;
        text-align: center;
    }

    .main-banner-title {
        font-size: 2.5rem;
    }

    .navigation-breadcrumb {
        font-size: 1rem;
    }
}

/* موبايل صغير */
@media (max-width: 480px) {
    .page-banner-section {
        min-height: 250px !important;
        padding: 0 1rem;
    }

    .main-banner-title {
        font-size: 2rem;
    }
}
