/* التنسيقات الأساسية المشتركة بين النسختين */
:root {
    --primary: #063F5C;
    --secondary: #f8c102;
    --dark: #333;
    --light: #f8f9fa;
    --gray: #6c757d;
}

/* إعادة الضبط */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* تأثيرات مخصصة */
.gradient-bg {
    background: linear-gradient(135deg, #1e3a8a 0%, #0ea5e9 100%);
}

.card-hover {
    transition: all 0.3s ease;
}

.card-hover:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* تخصيصات للعربية */
body.lang-ar {
    direction: rtl;
    font-family: 'Cairo', sans-serif;
}

/* تخصيصات للإنجليزية */
body.lang-en {
    direction: ltr;
    font-family: 'Montserrat', sans-serif;
}

/* تنقل سلس */
html {
    scroll-behavior: smooth;
}

/* تنسيقات مخصصة للزر */
.cta-button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s;
    text-align: center;
}

.cta-button-primary {
    background-color: var(--secondary);
    color: var(--dark);
}

.cta-button-primary:hover {
    background-color: #e0a800;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.cta-button-secondary {
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
    backdrop-filter: blur(10px);
}

.cta-button-secondary:hover {
    background-color: rgba(255, 255, 255, 0.3);
}

/* تنسيقات للأقسام */
.section-title {
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 50px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    width: 80px;
    height: 4px;
    background-color: var(--secondary);
}

.lang-ar .section-title::after {
    right: 0;
}

.lang-en .section-title::after {
    left: 0;
}

/* أنماط للهواتف */
@media (max-width: 768px) {
    .mobile-menu-hidden {
        display: none;
    }

    .section-padding {
        padding: 60px 0;
    }
}

/* إضافة تنسيقات للمعرض */

/* تأثيرات الصور في المعرض */
.gallery-item {
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
}

/* أنماط Lightbox */
#lightbox {
    backdrop-filter: blur(5px);
}

#lightbox img {
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* أزرار الفلترة */
.gallery-filter-btn {
    transition: all 0.3s ease;
}

.gallery-filter-btn:hover {
    transform: translateY(-2px);
}

/* تحسينات للهواتف */
@media (max-width: 768px) {
    .gallery-filter-btn {
        padding: 10px 16px;
        font-size: 14px;
    }

    #gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
}

@media (max-width: 480px) {
    #gallery-grid {
        grid-template-columns: 1fr;
    }
}



.video {
    width: 100%;
}

.video_container_outer {
    width: 100%;
    height: 507px;
}

.video_content {
    margin-top: calc(-1 * (750px / 1.875) / 2);
}

.video_container {
    width: 100%;
    height: 100%;
    background: var(--sub-color);
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.05);
}
