/* تنسيق قسم البنر المحدث بالخلفية */

.s-block{
    padding-top: 0px !important;

}
.abaya-banner {
    width: 100%;
    min-height: 550px; /* زيادة الطول قليلاً ليتناسب مع جمالية الصورة */
    background-image: url("https://cdn.files.salla.network/homepage/1973643961/b584aa6b-08ed-43a4-afe8-3977711325a2.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    direction: rtl;
}

/* إضافة طبقة تظليل فوق الصورة لتحسين وضوح النص */
.abaya-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4); /* تفتيح خفيف جداً، يمكنك تغييره لأسود شفاف rgba(0,0,0,0.3) إذا أردت غموضاً أكثر */
    z-index: 1;
}

/* التأكد من أن المحتوى فوق طبقة التظليل */
.content-wrapper {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 0 20px;
}

/* العنوان الذهبي - تم إضافة ظل خفيف لزيادة الوضوح فوق الصورة */
.abaya-banner .title {
    color: #e7c343; 
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

/* الوصف الأسود */
.abaya-banner .description {
    color: #ffffff;
    font-size: 1.4rem;
    line-height: 1.8;
    margin-bottom: 40px;
    font-weight: 600; /* تم زيادة الوزن قليلاً ليبرز فوق الخلفية */
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* الزر الأسود الفخم */
.main-btn {
    display: inline-block;
    background-color: #000000;
    color: #ffffff;
    padding: 18px 45px;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.4s ease;
    border: 2px solid #000000;
}

.main-btn:hover {
    background-color: transparent;
    color: #000000;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

/* التجاوب مع الجوال */
@media (max-width: 768px) {
    .abaya-banner .title {
        font-size: 2.2rem;
    }
    .abaya-banner .description {
        font-size: 1.1rem;
    }
    .abaya-banner {
        min-height: 400px;
        background-position: center; /* يضمن بقاء وسط الصورة ظاهراً في الجوال */
    }
}