/* ========================================== */
/* تنسيقات قسم الهيرو (سلايدر صور فقط - كامل) */
/* ========================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    /* direction: rtl;  <- يفضل إزالتها من هنا وتركها للـ HTML tag عشان ديناميكية اللغة */
}

.hero-section {
    position: relative;
    width: 100%;
    /* الإرتفاع المطلوب ثابت */
    height: 415px;
    min-height: 340px;
    background-color: #e9e1dd;
    overflow: hidden;
    /* direction: rtl; <- يفضل إزالتها عشان يتبع اتجاه الصفحة */
}

.hero-swiper {
    width: 100%;
    height: 100%;
}

.swiper-wrapper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    position: relative;
    width: 100%;
    height: 100%;

    /* إعدادات الصورة لتملأ المساحة بالكامل */
    background-size: cover;
    background-position: center center;
    /* توسيط الصورة */
    background-repeat: no-repeat;
}

/* إخفاء الأسهم تماماً احتياطياً */
.swiper-button-next,
.swiper-button-prev {
    display: none !important;
}

/* نقاط التنقل (Dots) */
.swiper-pagination {
    bottom: 20px !important;
    z-index: 10;
}

.swiper-pagination-bullet {
    background: #ffffff;
    /* لون أبيض ليكون واضحاً على الصور */
    opacity: 0.5;
    width: 10px;
    height: 10px;
    margin: 0 6px !important;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.swiper-pagination-bullet-active {
    opacity: 1;
    background: #b42f4c;
    /* اللون الأساسي للموقع */
    width: 30px;
    border-radius: 5px;
}

/* ========================================== */
/* التجاوب */
/* ========================================== */

@media (max-width: 992px) {
    .hero-section {
        height: 350px;
        min-height: 0;
    }
}

@media (max-width: 576px) {
    .hero-section {
        height: 250px;
        min-height: 0;
    }
}