/* ============================================================
   YEMEN TOURISM WEBSITE — style.css
   ============================================================ */

/* ── CSS Variables (colours, fonts) ────────────────────────── */
:root {
  --gold:        #c9a84c;
  --gold-light:  #e8cc80;
  --gold-pale:   #f5e6c8;
  --midnight:    #07090f;
  --deep:        #0e1220;
  --surface:     #131825;
  --sand:        #d4b483;
  --muted:       #8a8fa0;
  --border:      rgba(201, 168, 76, 0.25);

  --font-display: 'Cinzel', serif;
  --font-body:    'Cormorant Garamond', Georgia, serif;
  --font-arabic:  'Noto Naskh Arabic', serif;
}

/* ── Reset & Base ───────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--midnight);
  color: var(--gold-pale);
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
}

/* ── Scrollbar ──────────────────────────────────────────────── */
::-webkit-scrollbar              { width: 6px; }
::-webkit-scrollbar-track        { background: var(--midnight); }
::-webkit-scrollbar-thumb        { background: var(--gold); border-radius: 3px; }

/* ── Islamic geometric SVG overlay ─────────────────────────── */
.geo-bg {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80'%3E%3Cg fill='none' stroke='%23c9a84c' stroke-width='0.4' opacity='0.1'%3E%3Cpath d='M40 0L80 40L40 80L0 40Z'/%3E%3Cpath d='M40 10L70 40L40 70L10 40Z'/%3E%3Cpath d='M20 20h40v40H20Z'/%3E%3Cpath d='M40 0v80M0 40h80'/%3E%3C/g%3E%3C/svg%3E");
}


/* ============================================================
   NAVIGATION
   ============================================================ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 4rem;
  background: rgba(7, 9, 15, 0.9);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--gold);
  text-decoration: none;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sand);
  text-decoration: none;
  position: relative;
  transition: color 0.3s;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}

.nav-links a:hover                  { color: var(--gold); }
.nav-links a:hover::after           { transform: scaleX(1); }

.nav-cta {
  font-family: var(--font-display);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.55rem 1.4rem;
  border: 1px solid var(--gold);
  color: var(--gold);
  text-decoration: none;
  transition: all 0.3s;
}

.nav-cta:hover {
  background: var(--gold);
  color: var(--midnight);
}

/* Mobile hamburger (hidden on desktop) */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  width: 24px; height: 2px;
  background: var(--gold);
  transition: all 0.3s;
}


/* ============================================================
   SECTION UTILITIES
   ============================================================ */
section { padding: 7rem 0; }

.container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 2.5rem;
}

/* Section eyebrow (small all-caps label above title) */
.eyebrow {
  font-family: var(--font-display);
  font-size: 0.68rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  text-align: center;
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
.eyebrow::before,
.eyebrow::after {
  content: '';
  flex: 1;
  max-width: 120px;
  height: 1px;
  background: var(--border);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 600;
  text-align: center;
  color: var(--gold-pale);
  margin-bottom: 0.8rem;
}

.section-sub {
  font-size: 1.1rem;
  font-style: italic;
  font-weight: 300;
  color: var(--muted);
  text-align: center;
  max-width: 660px;
  margin: 0 auto 3.5rem;
  line-height: 1.85;
}

.gold-divider {
  width: 80px; height: 2px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  margin: 1rem auto 2rem;
}

/* Buttons */
.btn {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.9rem 2.2rem;
  transition: all 0.3s;
  cursor: pointer;
  border: none;
}

.btn-gold {
  background: var(--gold);
  color: var(--midnight);
  font-weight: 600;
}
.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(201, 168, 76, 0.3);
}

.btn-outline {
  border: 1px solid var(--gold);
  color: var(--gold);
  background: transparent;
}
.btn-outline:hover {
  background: rgba(201, 168, 76, 0.1);
  transform: translateY(-2px);
}


/* ============================================================
   HERO SECTION
   ============================================================ */
#hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* ── HERO BACKGROUND IMAGE ──────────────────────────────────
   Replace the src of #hero-bg-img in index.html
   Recommended: wide panoramic shot of Old Sana'a skyline
                or Yemen landscape (mountains / coastline)
   Ideal size: 1800 × 1000 px or larger
   ─────────────────────────────────────────────────────────── */
#hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.4;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(7,9,15,0.25) 0%,
    rgba(7,9,15,0.55) 55%,
    rgba(7,9,15,1)    100%
  );
  z-index: 1;
}

.hero-geo {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80'%3E%3Cg fill='none' stroke='%23c9a84c' stroke-width='0.4' opacity='0.08'%3E%3Cpath d='M40 0L80 40L40 80L0 40Z'/%3E%3Cpath d='M40 10L70 40L40 70L10 40Z'/%3E%3Cpath d='M40 0v80M0 40h80'/%3E%3C/g%3E%3C/svg%3E");
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 1.5rem;
  animation: fadeUp 1.2s ease both;
}

.hero-flag   { font-size: 4rem; display: block; margin-bottom: 1.2rem; animation: flagFloat 4s ease-in-out infinite; }
.hero-eyebrow {
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  opacity: 0;
  animation: fadeUp 1s 0.3s forwards;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7.5vw, 7rem);
  font-weight: 800;
  line-height: 1.05;
  color: var(--gold-pale);
  margin-bottom: 0.4rem;
  opacity: 0;
  animation: fadeUp 1s 0.5s forwards;
}
.hero-title em { font-style: italic; color: var(--gold); font-weight: 400; }

.hero-arabic {
  font-family: var(--font-arabic);
  font-size: clamp(1.4rem, 2.8vw, 2.6rem);
  color: var(--gold);
  opacity: 0;
  animation: fadeUp 1s 0.7s forwards;
  margin-bottom: 1.2rem;
}

.hero-sub {
  font-size: clamp(0.95rem, 1.5vw, 1.25rem);
  font-style: italic;
  font-weight: 300;
  color: var(--sand);
  max-width: 600px;
  margin: 0 auto 2.5rem;
  line-height: 1.8;
  opacity: 0;
  animation: fadeUp 1s 0.9s forwards;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 1s 1.1s forwards;
}

.hero-scroll {
  position: absolute;
  bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  font-family: var(--font-display);
  font-size: 0.58rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted);
  animation: scrollBounce 2.4s ease-in-out infinite;
}
.hero-scroll::after { content: ' ▼'; color: var(--gold); }


/* ============================================================
   STATS RIBBON
   ============================================================ */
#stats {
  padding: 3rem 0;
  background: var(--surface);
  border-top:    1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stat-item {
  text-align: center;
  padding: 2rem 1rem;
  border-right: 1px solid var(--border);
}
.stat-item:last-child { border-right: none; }

.stat-number {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--gold);
  display: block;
}

.stat-label {
  font-size: 0.88rem;
  font-style: italic;
  color: var(--muted);
  margin-top: 0.3rem;
}


/* ============================================================
   ABOUT SECTION
   ============================================================ */
#about { background: var(--deep); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

/* ── ABOUT IMAGE ────────────────────────────────────────────
   Replace src of #about-img in index.html
   Recommended: Traditional Yemeni architecture close-up,
                Bab al-Yemen gate, or Sana'a street scene
   Ideal size: 800 × 550 px
   ─────────────────────────────────────────────────────────── */
#about-img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border: 1px solid var(--border);
}

.about-image-wrap { position: relative; }

.about-badge {
  position: absolute;
  bottom: -18px; right: -18px;
  width: 120px; height: 120px;
  background: var(--gold);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.about-badge .badge-icon { font-size: 2rem; }
.about-badge .badge-text {
  font-family: var(--font-display);
  font-size: 0.52rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--midnight);
  text-align: center;
  margin-top: 0.2rem;
}

.about-text .eyebrow { justify-content: flex-start; }
.about-text .eyebrow::before { display: none; }
.about-text .section-title { text-align: left; }
.about-text .gold-divider   { margin-left: 0; }

.about-text p {
  font-size: 1.02rem;
  line-height: 1.9;
  color: #bbb;
  font-weight: 300;
  margin-bottom: 1.2rem;
}
.about-text p strong { color: var(--gold); font-weight: 500; }

.features-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
  margin-top: 1.5rem;
}
.features-list li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: var(--sand);
}
.features-list li::before {
  content: '◆';
  color: var(--gold);
  font-size: 0.45rem;
  flex-shrink: 0;
}


/* ============================================================
   CITIES — INTERACTIVE TOUR
   ============================================================ */
#cities { background: var(--midnight); }

/* Tab buttons */
.city-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 3rem;
}

.city-tab {
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.65rem 1.5rem;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--sand);
  cursor: pointer;
  transition: all 0.3s;
}
.city-tab:hover,
.city-tab.active {
  background: var(--gold);
  color: var(--midnight);
  border-color: var(--gold);
}

/* City panels */
.city-panel { display: none; }
.city-panel.active {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: start;
  animation: fadeUp 0.45s ease;
}

/* ── CITY IMAGES ────────────────────────────────────────────
   Each city has ONE image. Replace the src attributes in
   index.html. Look for comments like:
     <!-- IMAGE: Sana'a — recommended: Old City tower houses -->
   Ideal size for all city images: 900 × 500 px
   ─────────────────────────────────────────────────────────── */
.city-image-wrap { position: relative; }

.city-img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  border: 1px solid var(--border);
}

.city-img-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1.2rem;
  background: linear-gradient(transparent, rgba(0,0,0,0.82));
  font-style: italic;
  font-size: 0.9rem;
  color: var(--sand);
}

.city-badge {
  position: absolute;
  top: 1rem; left: 1rem;
  background: var(--gold);
  color: var(--midnight);
  font-family: var(--font-display);
  font-size: 0.58rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.28rem 0.8rem;
}

/* City text */
.city-info h2 {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--gold-pale);
  margin-bottom: 0.2rem;
}
.city-arabic-name {
  font-family: var(--font-arabic);
  font-size: 1.5rem;
  color: var(--gold);
  opacity: 0.8;
  margin-bottom: 0.6rem;
}
.city-tagline {
  font-style: italic;
  color: var(--sand);
  font-size: 1.05rem;
  margin-bottom: 1.6rem;
}
.city-info p {
  font-size: 0.99rem;
  line-height: 1.85;
  color: #aaa;
  font-weight: 300;
  margin-bottom: 1.1rem;
}

.city-facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  padding: 1.4rem;
  background: var(--surface);
  border: 1px solid var(--border);
  margin: 1.4rem 0;
}
.fact-label {
  font-family: var(--font-display);
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.2rem;
}
.fact-value {
  font-size: 0.92rem;
  color: var(--gold-pale);
}

/* Embedded video */
.city-video {
  border: 1px solid var(--border);
  overflow: hidden;
  margin-top: 1.4rem;
}
.city-video iframe {
  width: 100%;
  height: 230px;
  display: block;
}
.city-video-label {
  background: var(--surface);
  padding: 0.55rem 1rem;
  font-family: var(--font-display);
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  border-top: 1px solid var(--border);
}


/* ============================================================
   PHOTO GALLERY
   ============================================================ */
#gallery { background: var(--deep); }

/* ── GALLERY IMAGES ─────────────────────────────────────────
   The gallery has 6 images. Replace each src in index.html.
   Look for comments:
     <!-- GALLERY 1: Sana'a old city skyline -->
     <!-- GALLERY 2: Socotra dragon blood trees -->
     etc.
   Ideal size: 800 × 600 px each
   ─────────────────────────────────────────────────────────── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 250px 250px;
  gap: 0.75rem;
}

/* First item spans 2 cols + 2 rows */
.gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
/* Fourth item spans 2 cols */
.gallery-item:nth-child(4) { grid-column: span 2; }

.gallery-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}
.gallery-item:hover img { transform: scale(1.08); }

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7,9,15,0.82) 0%, transparent 55%);
  opacity: 0;
  transition: opacity 0.4s;
  display: flex;
  align-items: flex-end;
  padding: 1rem;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }

.gallery-label {
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}


/* ============================================================
   NATIONAL ANTHEM
   ============================================================ */
#anthem {
  background: var(--surface);
  position: relative;
  overflow: hidden;
}
#anthem::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80'%3E%3Cg fill='none' stroke='%23c9a84c' stroke-width='0.4' opacity='0.07'%3E%3Cpath d='M40 0L80 40L40 80L0 40Z'/%3E%3Cpath d='M40 10L70 40L40 70L10 40Z'/%3E%3Cpath d='M40 0v80M0 40h80'/%3E%3C/g%3E%3C/svg%3E");
}

.anthem-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.anthem-title {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--gold-pale);
  margin-bottom: 0.3rem;
}
.anthem-arabic-title {
  font-family: var(--font-arabic);
  font-size: 1.7rem;
  color: var(--gold);
  margin-bottom: 1.8rem;
}

.anthem-lyrics-box {
  background: rgba(0,0,0,0.4);
  border: 1px solid var(--border);
  padding: 1.8rem;
  margin-bottom: 1.5rem;
}
.lyrics-ar {
  font-family: var(--font-arabic);
  font-size: 1.15rem;
  line-height: 2.3;
  color: var(--gold-pale);
  text-align: right;
  direction: rtl;
  margin-bottom: 1.4rem;
}
.lyrics-en {
  font-style: italic;
  font-size: 0.95rem;
  line-height: 2;
  color: var(--muted);
  border-top: 1px solid var(--border);
  padding-top: 1.1rem;
}

.anthem-note {
  font-size: 0.9rem;
  font-style: italic;
  color: var(--muted);
  line-height: 1.75;
}

/* Anthem video embed */
.anthem-video-wrap {
  border: 1px solid var(--border);
  overflow: hidden;
}
.anthem-video-wrap iframe {
  width: 100%;
  height: 310px;
  display: block;
}
.anthem-video-label {
  background: var(--midnight);
  padding: 0.75rem 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--font-display);
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  border-top: 1px solid var(--border);
}

/* Flag info card */
.flag-card {
  margin-top: 1.8rem;
  background: var(--midnight);
  border: 1px solid var(--border);
  padding: 1.4rem;
}
.flag-row {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-bottom: 1rem;
}
.flag-emoji { font-size: 3.2rem; }
.flag-card-title {
  font-family: var(--font-display);
  font-size: 0.85rem;
  color: var(--gold-pale);
  margin-bottom: 0.3rem;
}
.flag-desc {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.65;
}
.flag-facts {
  font-size: 0.85rem;
  color: var(--muted);
  border-top: 1px solid var(--border);
  padding-top: 0.9rem;
  line-height: 1.8;
}
.flag-facts strong { color: var(--gold-pale); }


/* ============================================================
   TOUR PLANNER — City Cards
   ============================================================ */
#planner { background: var(--midnight); }

.tour-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}

.tour-card {
  background: var(--surface);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: all 0.38s;
  cursor: pointer;
}
.tour-card:hover {
  border-color: var(--gold);
  transform: translateY(-6px);
  box-shadow: 0 18px 46px rgba(201, 168, 76, 0.1);
}

/* ── TOUR CARD IMAGES ───────────────────────────────────────
   Each tour card has a thumbnail. Replace src in index.html.
   Look for comments:
     <!-- CARD IMAGE: Sana'a -->
     <!-- CARD IMAGE: Taiz -->
     etc.
   Ideal size: 600 × 280 px
   ─────────────────────────────────────────────────────────── */
.tour-card-img {
  width: 100%;
  height: 195px;
  object-fit: cover;
  transition: transform 0.5s;
}
.tour-card:hover .tour-card-img { transform: scale(1.05); }

.tour-card-body { padding: 1.3rem; }
.tour-card-tag {
  font-family: var(--font-display);
  font-size: 0.56rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.tour-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--gold-pale);
  margin-bottom: 0.3rem;
}
.card-arabic {
  font-family: var(--font-arabic);
  font-size: 1rem;
  color: var(--gold);
  opacity: 0.75;
  margin-bottom: 0.7rem;
}
.tour-card p {
  font-size: 0.88rem;
  line-height: 1.75;
  color: var(--muted);
  font-weight: 300;
}

.tour-card-footer {
  padding: 0.9rem 1.3rem;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.card-duration {
  font-family: var(--font-display);
  font-size: 0.62rem;
  color: var(--muted);
  letter-spacing: 0.08em;
}
.card-link {
  font-family: var(--font-display);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  transition: color 0.3s;
}
.card-link:hover { color: var(--gold-light); }


/* ============================================================
   TRAVEL TIPS
   ============================================================ */
#tips { background: var(--deep); }

.tips-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
}

.tip-card {
  padding: 1.8rem;
  background: var(--surface);
  border: 1px solid var(--border);
  transition: border-color 0.3s;
}
.tip-card:hover { border-color: var(--gold); }

.tip-icon  { font-size: 1.9rem; margin-bottom: 0.9rem; }
.tip-card h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--gold-pale);
  margin-bottom: 0.7rem;
}
.tip-card p {
  font-size: 0.9rem;
  line-height: 1.8;
  color: var(--muted);
  font-weight: 300;
}


/* ============================================================
   MAP
   ============================================================ */
#map-section { background: var(--surface); }

.map-wrap {
  position: relative;
  border: 1px solid var(--border);
  overflow: hidden;
  margin-top: 2rem;
}
.map-wrap iframe {
  width: 100%; height: 490px;
  display: block;
  filter: invert(85%) hue-rotate(180deg);
}
.map-badge {
  position: absolute;
  top: 1rem; left: 1rem;
  background: rgba(7,9,15,0.9);
  border: 1px solid var(--gold);
  padding: 0.7rem 1.1rem;
  font-family: var(--font-display);
  font-size: 0.66rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  backdrop-filter: blur(8px);
}


/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--midnight);
  border-top: 1px solid var(--border);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.footer-brand-name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 0.8rem;
}
.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.8;
  color: var(--muted);
  max-width: 270px;
}
.footer-arabic-phrase {
  font-family: var(--font-arabic);
  font-size: 1.05rem;
  color: var(--gold);
  opacity: 0.75;
  margin-top: 1.2rem;
}

.footer-col h4 {
  font-family: var(--font-display);
  font-size: 0.66rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.1rem;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.55rem; }
.footer-col ul li a {
  font-size: 0.88rem;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.3s;
}
.footer-col ul li a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 1.8rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: var(--muted);
}


/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes flagFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}

@keyframes scrollBounce {
  0%, 100% { opacity: 0.5; transform: translateX(-50%) translateY(0); }
  50%       { opacity: 1;   transform: translateX(-50%) translateY(6px); }
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}


/* ============================================================
   RESPONSIVE — TABLET & MOBILE
   ============================================================ */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  #navbar        { padding: 0 1.5rem; }
  .nav-links,
  .nav-cta       { display: none; }
  .hamburger     { display: flex; }

  /* Stacked layouts on tablet */
  .about-grid,
  .anthem-grid,
  .city-panel.active { grid-template-columns: 1fr; gap: 2.5rem; }

  .stats-grid    { grid-template-columns: repeat(2, 1fr); }
  .tour-cards-grid { grid-template-columns: 1fr 1fr; }
  .tips-grid     { grid-template-columns: 1fr 1fr; }

  /* Gallery simplifed on tablet */
  .gallery-grid  {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }
  .gallery-item:nth-child(1),
  .gallery-item:nth-child(4) { grid-column: span 1; grid-row: span 1; }
  .gallery-item img          { height: 220px; }
}

@media (max-width: 600px) {
  .tour-cards-grid { grid-template-columns: 1fr; }
  .tips-grid       { grid-template-columns: 1fr; }
  .footer-grid     { grid-template-columns: 1fr; }
  .stats-grid      { grid-template-columns: repeat(2, 1fr); }
  .city-facts      { grid-template-columns: 1fr; }
  .features-list   { grid-template-columns: 1fr; }
  .hero-buttons    { flex-direction: column; align-items: center; }
}
/* ============================================================
   ADD THIS TO THE END OF YOUR style.css
   ============================================================ */

/* ── Cuisine Section ──────────────────────────────────────── */
#cuisine {
  background: linear-gradient(180deg, var(--bg-dark) 0%, rgba(10,8,4,1) 100%);
  padding: 6rem 0;
}

.cuisine-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.cuisine-card {
  background: rgba(201,168,76,0.04);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: 4px;
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.cuisine-card:hover {
  transform: translateY(-6px);
  border-color: rgba(201,168,76,0.45);
  box-shadow: 0 12px 40px rgba(201,168,76,0.12);
}

.cuisine-img-wrap {
  width: 100%;
  height: 200px;
  overflow: hidden;
  position: relative;
}

.cuisine-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.cuisine-card:hover .cuisine-img-wrap img {
  transform: scale(1.06);
}

.cuisine-body {
  padding: 1.4rem 1.5rem 1.6rem;
}

.cuisine-tag {
  font-family: 'Cinzel', serif;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.cuisine-name {
  font-family: 'Cinzel', serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--cream);
  margin: 0 0 0.25rem;
}

.cuisine-arabic {
  font-family: 'Noto Naskh Arabic', serif;
  font-size: 1.1rem;
  color: var(--gold);
  opacity: 0.8;
  margin-bottom: 0.75rem;
  direction: rtl;
}

.cuisine-body p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.95rem;
  color: rgba(212,180,131,0.75);
  line-height: 1.65;
  margin: 0;
}