/* دليل اللاذقية — مكوّن تنقّل مشترك (قائمة جانبية كاملة + شريط روابط مصغّر)
   يُستخدَم من ملف واحد في كل الصفحات لتفادي تكرار الكود. */

.lg-drawer-toggle {
  position: fixed;
  top: 14px;
  right: 14px;
  z-index: 1002;
  width: 42px;
  height: 42px;
  border: none;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.18);
  transition: background 0.2s;
}
.lg-drawer-toggle:active { background: rgba(255, 255, 255, 0.35); }
.lg-icon-menu::before { content: '☰'; }

.lg-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  backdrop-filter: blur(2px);
}
.lg-drawer-overlay.active { opacity: 1; visibility: visible; }

.lg-drawer {
  position: fixed;
  top: 0;
  bottom: 0;
  right: -300px;
  width: 280px;
  max-width: 82vw;
  background: #ffffff;
  z-index: 1001;
  display: flex;
  flex-direction: column;
  box-shadow: -6px 0 28px rgba(0, 0, 0, 0.18);
  transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-family: 'Cairo', sans-serif;
  direction: rtl;
}
.lg-drawer.open { right: 0; }

.lg-drawer-header {
  padding: 2rem 1.5rem;
  background: linear-gradient(135deg, #1976d2 0%, #1565c0 100%);
  color: #fff;
  text-align: center;
  flex-shrink: 0;
}
.lg-drawer-logo-img { width: 42px; height: 42px; margin-bottom: 8px; }
.lg-drawer-logo { font-size: 1.5rem; font-weight: 900; margin-bottom: 4px; }
.lg-drawer-sub { font-size: 0.82rem; opacity: 0.85; }

/* زر تبديل الوضع الليلي/النهاري — نفس هوية وألوان ThemeToggleView في التطبيق
   (moonBg #1A237E / moonColor #7986CB — sunBg #0D47A1 / sunColor #FFD54F). */
.lg-theme-row {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 12px 18px;
  border-bottom: 1px solid #e2e8ec;
}
.lg-theme-label { font-size: 0.85rem; font-weight: 700; color: #1a3f7c; }
.lg-theme-label-dark { display: none; }
[data-theme="dark"] .lg-theme-label-dark { display: inline; }
[data-theme="dark"] .lg-theme-label-light { display: none; }

.lg-theme-toggle {
  position: relative;
  width: 44px;
  height: 44px;
  border: none;
  background: none;
  padding: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.lg-theme-glow {
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  background: #3B82F6;
  opacity: 0.2;
  filter: blur(3px);
  pointer-events: none;
}
.lg-theme-circle {
  position: relative;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #0D47A1;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  transition: background-color 0.4s ease;
  overflow: hidden;
}
[data-theme="dark"] .lg-theme-circle { background: #1A237E; }

.lg-theme-icon {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transition: opacity 0.4s ease;
}
.lg-theme-sun { opacity: 1; }
.lg-theme-moon { opacity: 0; }
[data-theme="dark"] .lg-theme-sun { opacity: 0; }
[data-theme="dark"] .lg-theme-moon { opacity: 1; }

.lg-drawer-content { padding: 0.75rem 0; flex: 1; overflow-y: auto; }
.lg-drawer-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0.8rem 1.4rem;
  color: #141c1b;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.92rem;
  border-right: 4px solid transparent;
  transition: background 0.2s;
}
.lg-drawer-item:hover,
.lg-drawer-item.active {
  background: #e3f2fd;
  color: #1976d2;
  border-right-color: #1976d2;
}
.lg-drawer-icon { width: 20px; height: 20px; flex-shrink: 0; }

.lg-drawer-footer {
  flex-shrink: 0;
  padding: 0.9rem;
  text-align: center;
  font-size: 0.72rem;
  color: #5a6b69;
  border-top: 1px solid #d5e3e1;
}

/* شريط روابط مصغّر — للصفحات الرسمية التي لا تحتاج قائمة جانبية كاملة */
.lg-mini-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 20px;
  margin-bottom: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.lg-mini-nav-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: inherit;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 700;
  opacity: 0.92;
}
.lg-mini-nav-item:hover { opacity: 1; text-decoration: underline; }
.lg-mini-nav-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  padding: 3px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  box-sizing: content-box;
}

/* فوتر مشترك للصفحات التي لا تملك تذييلاً أصلاً (الرئيسية والتحميل) */
.lg-site-footer {
  background: #1565c0;
  color: rgba(255, 255, 255, 0.85);
  text-align: center;
  padding: 24px 16px 20px;
  font-family: 'Cairo', sans-serif;
}
.lg-site-footer-copy { font-size: 0.78rem; }

a.header-badge,
a.lg-home-link {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

@media (max-width: 420px) {
  .lg-drawer { width: 250px; }
}
