 /* تنسيقات مخصصة إضافية */
 
   * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

  body {
            font-family: 'Tajawal', 'Montserrat', sans-serif;
            background: 
                linear-gradient(135deg, rgba(255,255,255,0.98) 0%, rgba(250,245,235,0.95) 100%),
                url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="120" height="120" viewBox="0 0 120 120"><path d="M60,10 L70,50 L110,60 L70,70 L60,110 L50,70 L10,60 L50,50 Z" fill="rgba(255,215,0,0.03)" stroke="rgba(255,215,0,0.05)" stroke-width="0.5"/></svg>');
            background-size: 120px 120px;
            color: #333;
            margin: 0;
            padding: 0;
            position: relative;
        }

        body::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(
                circle at 10% 20%,
                rgba(255, 240, 210, 0.2) 0%,
                transparent 30%
            );
            z-index: -1;
        }

        body::after {
            content: '';
            position: fixed;
            bottom: 0;
            right: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(
                circle at 90% 80%,
                rgba(255, 230, 180, 0.15) 0%,
                transparent 30%
            );
            z-index: -1;
        }

        /* تحسينات للشريط العلوي */
        #mainNav {
            background: rgba(255, 255, 255, 0.95);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            backdrop-filter: blur(8px);
            transition: all 0.3s ease;
        }

        #mainNav.scrolled {
            background: rgba(255, 255, 255, 0.98);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
        }

        .navbar-brand img {
            transition: transform 0.3s ease;
        }

        .navbar-brand:hover img {
            transform: scale(1.05);
        }

        /* تصميم الأقسام العامة */
        section {
            position: relative;
            padding: 80px 0;
        }

        .section-header {
            text-align: center;
            margin-bottom: 50px;
            position: relative;
        }

        .section-title {
            font-family: 'Playfair Display', serif;
            font-weight: 700;
            color: #222;
            position: relative;
            display: inline-block;
            padding-bottom: 15px;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background: linear-gradient(90deg, #ffd700, #ffcc00);
            border-radius: 3px;
        }

        .section-subtitle {
            font-family: 'Tajawal', sans-serif;
            font-weight: 400;
            color: #555;
            font-size: 1.2rem;
            margin-top: 15px;
        }

        /* تحسينات للمعرض */
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 20px;
            padding: 0 20px;
        }

        .gallery-item {
            position: relative;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
        }

        .gallery-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.15);
        }

        .gallery-item img {
            width: 100%;
            height: 250px;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .gallery-item:hover img {
            transform: scale(1.05);
        }

        .image-caption {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
            color: white;
            padding: 15px;
            font-weight: 600;
            text-align: center;
        }

        /* تحسينات للمعرض بكامل الشاشة */
        .fullscreen-gallery {
            background: rgba(0, 0, 0, 0.9);
            backdrop-filter: blur(10px);
        }

        .close-btn {
            color: #ffd700;
            font-size: 2rem;
            transition: color 0.3s ease;
        }

        .close-btn:hover {
            color: white;
        }

        /* تذييل الصفحة */
        .footer {
            background: rgba(0, 0, 0, 0.85);
            color: white;
            padding: 40px 0;
            position: relative;
        }

        .footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, #ffd700, #ffcc00);
        }

        .social-icon {
            color: #ffd700;
            transition: all 0.3s ease;
        }

        .social-icon:hover {
            color: white;
            transform: scale(1.2);
        }

        /* تأثيرات الحركة */
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .animated-title {
            animation: fadeIn 0.8s ease-out forwards;
        }

        /* التكيف مع اللغة العربية */
        html[dir="rtl"] .section-title::after {
            left: auto;
            right: 50%;
            transform: translateX(50%);
        }

        /* تأثيرات خاصة للغة العربية */
        html[dir="rtl"] .navbar-nav {
            font-family: 'Tajawal', sans-serif;
        }
/* التنسيقات العامة */
.featured-section {
  padding: 4rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  font-family: 'Tajawal', sans-serif;
}






/* تنسيق العنوان */
/* تنسيقات CSS الجديدة */
.section-header {
    position: relative;
    margin-bottom: 3rem;
    overflow: hidden;
}

.animated-title {
    position: relative;
    display: inline-block;
    font-size: 2.8rem;
    font-weight: 700;
    color: #2d3436;
    margin-bottom: 1.5rem;
    z-index: 1;
}

.title-highlight {
    position: absolute;
    bottom: 10px;
    left: 0;
    width: 100%;
    height: 12px;
    background: linear-gradient(90deg, #ffc800, #ff8c00);
    z-index: -1;
    opacity: 0.7;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.animated-title:hover .title-highlight {
    transform: scaleX(1);
}

.elegant-subtitle {
    font-size: 2.3rem;
    color: #ffc800;
    font-weight: 500;
    letter-spacing: 1px;
    position: relative;
    display: inline-block;
    padding: 0 20px;
}

.elegant-subtitle:before,
.elegant-subtitle:after {
    content: "";
    position: absolute;
    top: 50%;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #ffc800);
}

.elegant-subtitle:before {
    left: -40px;
}

.elegant-subtitle:after {
    right: -40px;
    background: linear-gradient(90deg, #ffc800, transparent);
}









/* تنسيق المعرض */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.gallery-item {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 32px 0 rgba(0,0,0,0.18), 0 2px 4px 0 rgba(0,0,0,0.12);
  transition: transform 0.35s cubic-bezier(.25,.8,.25,1), box-shadow 0.35s cubic-bezier(.25,.8,.25,1);
  background: linear-gradient(135deg, #fffbe6 0%, #f7faff 100%);
}

.gallery-item:hover {
  transform: scale(1.06) translateY(-8px) rotate(-1deg);
  box-shadow: 0 18px 40px 0 rgba(0,0,0,0.22), 0 4px 8px 0 rgba(0,0,0,0.16);
  z-index: 2;
}

.gallery-item img {
width: 100%;
height: 300px;
object-fit: cover;
display: block;
border-radius: 18px;
filter: brightness(0.75) saturate(1.1);
transition: filter 0.3s, transform 0.3s;
}

.gallery-item:hover img {
filter: brightness(1.15) saturate(1.2) drop-shadow(0 4px 24px #ffc80055);
transform: scale(1.04) rotate(1deg);
}

.image-caption {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, 50%);
  background: rgba(0,0,0,0.55);
  color: #fff;
  padding: 1.2rem 2rem;
  font-size: 1.3rem;
  border-radius: 14px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s, transform 0.4s;
  text-align: center;
  box-shadow: 0 4px 24px #0003;
  font-weight: bold;
  letter-spacing: 1px;
  backdrop-filter: blur(2px);
}

.gallery-item:hover .image-caption {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.07);
  pointer-events: auto;
}








/* تنسيقات أساسية للترجمة */
[dir="rtl"] {
  font-family: 'Tajawal', sans-serif;
}

.ar-text, .en-text {
  display: none;
}

.ar-text {
  font-family: 'Tajawal', sans-serif;
}

[lang="ar"] .ar-text,
[lang="en"] .en-text {
  display: inline;
}





#mainNav {
  background: #212529 !important;
  padding-bottom: 20px;
  margin-top: auto;

.navbar-brand {
  padding-left: 3rem;
}

.navbar-logo {
  height: 85px; /* ارتفاع ثابت للشعار */
  width: auto; /* الحفاظ على نسبة العرض */
  transition: all 0.3s ease; /* تأثير سلس للتغييرات */
}

@media (max-width: 991.98px) {
  .navbar-brand {
    padding-left: 1rem; /* تقليل المسافة على الجووال */
  }
  
  .navbar-logo {
    height: 60px; /* تصغير الشعار على الجووال */
  }
}

/* تأثير hover على روابط القائمة */
.navbar-nav .nav-link {
  color: white !important;
  transition: color 0.3s ease;
  position: relative;
}

.navbar-nav .nav-link:hover {
  color: #ffc800 !important; /* اللون البرتقالي عند hover */
}

/* خط تحت الروابط عند hover (اختياري) */
.navbar-nav .nav-link:hover::after {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 2px;
  background: #ffc800;
}

.navbar-collapse {
  flex-grow: 0 !important;
}

.navbar-nav {
  flex-direction: row !important;
  align-items: center;
}

.nav-item {
  white-space: nowrap;
  padding: 0 15px;
 font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    font-size: 0.95rem;
    color: #fff;
    letter-spacing: 0.0625em;
}

@media (max-width: 991.98px) {
  .navbar-nav {
    flex-direction: column !important;
    align-items: flex-end;
    padding: 1rem;
  }
  
  .nav-item {
    margin: 0.5rem 0 !important;
    padding: 0;
  }
}
}
.footer {
    background-color: #f8f9fa;
    font-family: Arial, sans-serif;
    color: #666;
    border-top: 1px solid #eee;
    padding: 30px 0;
  }
  
  .footer-container {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    flex-wrap: wrap;
  }
  
  .footer-column {
    flex: 1;
    min-width: 250px;
    margin-bottom: 20px;
    padding: 0 20px;
  }
  
  /* تنسيق معلومات الاتصال */
  .contact-info {
    text-align: left;
    padding-right: 20px;
  }
  
  .contact-info address {
    font-style: normal;
    line-height: 1.6;
  }
  
  .contact-info a {
    color: #666;
    text-decoration: none;
  }
  
  /* تنسيق روابط السوشيال ميديا */
  .social-media {
    text-align: center;
  }
  
  .social-icon {
    display: inline-block;
    width: 40px;
    height: 40px;
    background-color: #333;
    color: white;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    margin: 0 10px;
  }
  
  /* تنسيق حقوق النشر */
  .copyright {
    text-align: left;
    font-size: 14px;
  }
  
  /* للشاشات الصغيرة */
  @media (max-width: 768px) {
    .footer-column {
      flex: 100%;
      text-align: center !important;
    }
    
    .contact-info {
      padding-right: 0;
    }
  }



    .gallery-item {
    cursor: pointer;
    transition: transform 0.3s;
  }
  
  .gallery-item:hover {
    transform: scale(1.03);
  }
  
  /* ستايل معرض الصور الكامل */
  .fullscreen-gallery {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,0.92);
    backdrop-filter: blur(6px) brightness(0.9);
    z-index: 2000;
    text-align: center;
    animation: fadeInBg 0.5s;
}

@keyframes fadeInBg {
  from { opacity: 0; }
  to { opacity: 1; }
}
  
  .fullscreen-image {
    max-width: 90%;
    max-height: 90%;
    margin: auto;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    object-fit: contain;
  }
  
  .gallery-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
  }
  
  .nav-btn {
    color: #ffc800;
    font-size: 54px;
    cursor: pointer;
    padding: 0 36px;
    user-select: none;
    text-shadow: 0 2px 12px #000a, 0 0px 2px #ffc80099;
    border-radius: 50%;
    background: rgba(255,255,255,0.07);
    border: 2px solid #ffc80033;
    margin: 0 10px;
    transition: transform 0.2s, color 0.2s, background 0.2s;
  }
  
  .close-btn {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #ffc800;
    font-size: 44px;
    font-weight: bold;
    cursor: pointer;
    width: 54px;
    height: 54px;
    line-height: 54px;
    text-align: center;
    background: rgba(0,0,0,0.10);
    border-radius: 50%;
    padding: 0;
    box-shadow: 0 2px 8px #0002;
    border: 1.5px solid #ffc80033;
    transition: transform 0.2s, background 0.2s, color 0.2s;
    user-select: none;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .close-btn:hover {
    background: rgba(255,200,0,0.12);
    color: #fff;
    transform: rotate(90deg) scale(1.08);
    border-color: #ffc800;
  }
  
  .image-counter {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    font-size: 20px;
    background: rgba(0,0,0,0.32);
    padding: 6px 18px;
    border-radius: 16px;
    box-shadow: 0 2px 8px #0002;
    letter-spacing: 1px;
  }
 .fullscreen-image {
    transition: opacity 0.3s ease, transform 0.5s ease;
  }

  /* تأثيرات للتنقل بين الصور */
  .slide-in-right {
    animation: slideInRight 0.5s ease forwards;
  }

  .slide-in-left {
    animation: slideInLeft 0.5s ease forwards;
  }

  @keyframes slideInRight {
    from {
      transform: translateX(100%);
      opacity: 0;
    }
    to {
      transform: translateX(0);
      opacity: 1;
    }
  }

  @keyframes slideInLeft {
    from {
      transform: translateX(-100%);
      opacity: 0;
    }
    to {
      transform: translateX(0);
      opacity: 1;
    }
  }

  /* تأثيرات للأزرار */
  .nav-btn {
    transition: transform 0.2s ease, color 0.2s ease;
  }

  .nav-btn:hover {
    transform: scale(1.2);
    color: #4CAF50;
  }

  .close-btn {
    transition: transform 0.2s ease;
  }

  .close-btn:hover {
    transform: rotate(90deg);
  }

  /* تنسيق الفيديو في وضع ملء الشاشة */
  .fullscreen-video {
    max-width: 90vw;
    max-height: 90vh;
    width: auto;
    height: auto;
    position: absolute;
    top: 0; bottom: 0; left: 0; right: 0;
    margin: auto;
    object-fit: contain;
    background: #000;
    display: block;
  }

  /* إضافة استعلامات الوسائط للجوال */
@media (max-width: 768px) {
  body {
    padding-top: 70px; /* تقليل المسافة من الأعلى للجوال */
  }

  /* تعديل حجم الشعار في الشريط العلوي */
  .navbar-logo {
    max-height: 60px !important;
  }

  /* تعديل تنسيقات المعرض للجوال */
  .gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
  }

  .gallery-item img {
    height: 200px; /* تقليل ارتفاع الصور للجوال */
  }

  /* تعديل تنسيقات العناوين */
  .section-title {
    font-size: 1.8rem;
  }

  .section-subtitle {
    font-size: 1.5rem;
  }

  /* تعديل تنسيقات التذييل */
  .footer-column {
    flex: 100%;
    text-align: center;
    margin-bottom: 1.5rem;
  }

  .contact-info {
    padding-right: 0;
    margin-bottom: 1.5rem;
  }

  /* تعديل تنسيقات معرض الصور الكامل */
  .fullscreen-gallery {
    padding: 20px;
  }

  .fullscreen-image,
  .fullscreen-video {
    max-width: 100%;
    max-height: 70vh;
  }

  .nav-btn {
    font-size: 36px;
    padding: 0 20px;
  }

  .close-btn {
    top: 10px;
    right: 15px;
    font-size: 30px;
    width: 40px;
    height: 40px;
    line-height: 40px;
  }

  .image-counter {
    bottom: 15px;
    font-size: 16px;
  }
}

/* تعديلات إضافية للشاشات الصغيرة جدًا */
@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .section-subtitle {
    font-size: 1.2rem;
  }

  .image-caption {
    font-size: 1rem;
    padding: 0.8rem 1.2rem;
  }

  /* تعديل القائمة للجوال */
  .navbar-collapse {
    background: #212529;
    padding: 1rem;
    margin-top: 10px;
    border-radius: 5px;
  }

  .nav-item {
    padding: 0.5rem 0 !important;
  }
}

/* تحسينات للوضع الأفقي على الجوال */
@media (max-height: 500px) {
  .fullscreen-image,
  .fullscreen-video {
    max-height: 80vh;
  }

  .image-counter {
    bottom: 5px;
  }
}

/* تحسينات للشريط العلوي على الجوال */
.navbar-toggler {
  padding: 0.25rem 0.5rem;
  font-size: 1rem;
  margin-left: auto;
}

.navbar-brand {
  padding-left: 1rem;
}

/* تحسينات للغة العربية على الجوال */
[lang="ar"] .navbar-nav {
  padding-right: 0;
}

/* تحسينات للفيديو على الجوال */
.fullscreen-video {
  width: 100%;
  height: auto;
}

/* تنسيقات أزرار التنقل للجوال */
@media (max-width: 768px) {
  .gallery-nav {
    position: fixed;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    z-index: 2100;
    pointer-events: none; /* يسمح بالنقر من خلال المساحة الفارغة */
    margin: 0 -15px;
  }

  .nav-btn {
    color: #ffc800;
    font-size: 2.5rem !important;
    cursor: pointer;
    padding: 15px 20px;
    user-select: none;
    text-shadow: 0 2px 8px rgba(0,0,0,0.8);
    background: rgba(0,0,0,0.4);
    border-radius: 50%;
    border: 2px solid rgba(255,200,0,0.5);
    margin: 0 10px;
    pointer-events: auto; /* تفعيل النقر على الأزرار فقط */
    transition: all 0.3s ease;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
  }

  .nav-btn:hover {
    background: rgba(255,200,0,0.3);
    transform: scale(1.1);
  }

  .nav-btn:first-child {
    margin-left: 5px;
  }

  .nav-btn:last-child {
    margin-right: 5px;
  }

  /* زيادة مساحة النقر حول الأزرار */
  .nav-btn::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 80px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}


 .social-media .social-icon {
    color: #ffffff;
    transition: all 0.3s ease;
    display: inline-block;
    
    border-radius: 50%;
  }
  
  .social-media .social-icon:hover {
    color: #ffc800;
    background-color: rgba(255, 200, 0, 0.1); /* خلفية شبه شفافة */
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 4px 8px rgba(255, 200, 0, 0.2); /* ظل خفيف */
  }