/* ================= ROOT ================= */
:root {
  --brand-blue: #1f4fa3;   /* adjust to exact logo blue */
  --brand-red: #e11d2e;
  --text-dark: #111827;
  --text-muted: #4b5563;
  --bg-white: #ffffff;
  --border-light: #e5e7eb;
  --header-height: 90px;
}

/* ================= RESET ================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  background: var(--bg-white);
  color: var(--text-dark);
  line-height: 1.6;
}

/* ================= CONTAINER ================= */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ================= HEADER / NAVBAR ================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--header-height);
  background: var(--bg-white);
  border-bottom: 1px solid var(--border-light);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 56px; /* space between logo and nav */
}

/* LOGO */
.logo {
  margin-left: 16px; /* pulls logo slightly away from edge */
}

.logo img {
  height: 80px;
  width: auto;
  display: block;
}

/* NAV LINKS */
.main-nav {
  margin-left: auto; /* push nav to the right */
  display: flex;
  gap: 32px;
}

.main-nav a {
  color: var(--brand-blue);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  position: relative;
  padding: 6px 0;
}

.main-nav a:hover {
  opacity: 0.8;
}

.main-nav a.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background: var(--brand-red);
}

/* NAV TOOLS (TRANSLATION PLACEHOLDER) */
.nav-tools {
  min-width: 80px;
  text-align: right;
}

/* ================= GALLERY HERO ================= */
.gallery-hero {
  background: linear-gradient(135deg, #1e3a8a, #0f255a);
  color: #ffffff;
  padding: 80px 0 90px;
}

.gallery-hero .container {
  text-align: center;
}

/* HEADLINE */
.gallery-hero h1 {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 14px;
}

/* 🔴 RED STRIPE — DIRECTLY UNDER HEADLINE */
.gallery-hero .red-line {
  width: 64px;
  height: 4px;
  background-color: #e11d48;
  margin: 0 auto 24px; /* tight under headline */
  border-radius: 2px;
}

/* SUBTEXT */
.gallery-hero p {
  max-width: 680px;
  margin: auto;
  font-size: 18px;
  line-height: 1.7;
  opacity: 0.95;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .gallery-hero {
    padding: 60px 0 70px;
  }
  }

/* ================= GALLERY SECTION ================= */
.expo-gallery {
  padding: 90px 0;
}

/* ================= GRID SYSTEM ================= */
.gallery-grid {
  max-width: 1400px;
  margin: auto;
  padding: 0 24px;

  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 220px;
  gap: 22px;
}

/* ================= BASE ITEM ================= */
.gallery-item {
  border-radius: 18px;
  overflow: hidden;
  background: #f1f5f9;
}

/* ================= IMAGES ================= */
.gallery-item.image {
  grid-column: span 3;
}

.gallery-item.image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ================= VIDEOS (BIG – NOT FULL SCREEN) ================= */
.gallery-item.video {
  grid-column: span 6;   /* أكبر من الصور */
  grid-row: span 2;
}

.gallery-item.video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ================= HOVER EFFECT ================= */
.gallery-item img,
.gallery-item video {
  transition: transform 0.35s ease;
}

.gallery-item:hover img,
.gallery-item:hover video {
  transform: scale(1.04);
}

/* ================= RESPONSIVE ================= */
@media (max-width: 1200px) {
  .gallery-grid {
    grid-template-columns: repeat(8, 1fr);
  }

  .gallery-item.image {
    grid-column: span 4;
  }

  .gallery-item.video {
    grid-column: span 8;
  }
}

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 200px;
  }

  .gallery-item.image,
  .gallery-item.video {
    grid-column: span 4;
    grid-row: span 1;
  }
}
/* ================= SITE CTA ================= */
.site-cta {
  background-color: #1e3a8a; /* الأزرق الغامق */
  padding: 120px 0;
  text-align: center;
}

/* container */
.site-cta .container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

/* heading */
.site-cta h2 {
  font-size: 38px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 18px;
  letter-spacing: 0.3px;
}

/* red underline */
.site-cta .red-line {
  width: 70px;
  height: 4px;
  background-color: #e11d48;
  margin: 0 auto 32px;
  border-radius: 2px;
}

/* paragraph */
.site-cta p {
  max-width: 720px;
  margin: 0 auto 48px;
  font-size: 17px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.88);
}

/* CTA actions */
.cta-actions {
  display: flex;
  justify-content: center;
}

/* button */
.cta-btn {
  display: inline-block;
  padding: 15px 44px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 999px;
  text-decoration: none;
  transition: all 0.3s ease;
}

/* primary red button */
.cta-btn.primary {
  background-color: #e11d48;
  color: #ffffff;
}

.cta-btn.primary:hover {
  background-color: #ffffff;
  color: #1e3a8a;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
  .site-cta {
    padding: 90px 0;
  }

  .site-cta h2 {
    font-size: 28px;
  }

  .site-cta p {
    font-size: 16px;
  }
}

/* ================= SIMPLE FOOTER ================= */

.simple-footer {
  background: #020617; /* very dark, clean */
  padding: 18px 0;
}

.simple-footer p {
  margin: 0;
  text-align: center;
  font-size: 0.9rem;
  color: #94a3b8;
}

.simple-footer strong {
  color: #ffffff;
  font-weight: 500;
}

.footer-divider {
  margin: 0 10px;
  color: #475569;
}
