/* كود تغيير خلفية الموقع بالكامل */
body {
    background-color: #d5e6ee !important;
}

/* في حال أردت تطبيق اللون على حاوية المحتوى الرئيسية فقط */
.main-content {
    background-color: #d5e6ee;
}
/* تغيير خلفية رأس الموقع */
.main-header, .header-wrapper, header {
    background-color: #d5e6ee !important;
}

/* تغيير خلفية تذييل الموقع */
.main-footer, footer {
    background-color: #d5e6ee !important;
}

/* إزالة أي حدود أو خطوط فاصلة داكنة قد تظهر */
.main-header, .main-footer {
    border: none !important;
}/* كود خاص لثيم رائد - تنسيق 1 لجعل الصور المربعة دائرية وصغيرة */
@media screen and (max-width: 767px) {
    /* استهداف حاوية الصور المربعة المحسنة */
    .square-photos-section .photos-item,
    .sections-wrapper .section-item {
        width: 30% !important; /* لظهور 3 صور في الصف الواحد */
        flex: 0 0 30% !important;
        margin-bottom: 20px !important;
    }

/* إظهار النصوص فوق الصور في نسخة الكمبيوتر */
@media screen and (min-width: 992px) {
    /* التأكد من أن حاوية النص مرئية دائماً وليس عند التمرير فقط */
    .sections-wrapper .section-item .section-info,
    .sections-wrapper .section-item .overlay {
        opacity: 1 !important;
        visibility: visible !important;
        background-color: rgba(0, 0, 0, 0.4) !important; /* طبقة ظلال خفيفة لإبراز النص الأبيض */
        transition: all 0.3s ease;
    }

    /* تكبير حجم الخط وتحسين ظهوره */
    .sections-wrapper .section-item h3, 
    .sections-wrapper .section-item .title {
        color: #ffffff !important; /* لون النص أبيض */
        font-weight: bold !important;
        font-size: 1.2rem !important;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5) !important; /* ظل خلف النص للقراءة بوضوح */
    }

    /* جعل النصوص تظهر في منتصف الصورة تماماً */
    .sections-wrapper .section-item .section-info {
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        align-items: center !important;
        height: 100% !important;
        text-align: center !important;
    }
}