/* ============================================================
   REPORTAGEN – Einzelseite & Übersicht
   ============================================================ */

/* --- Reportage Hero --- */
.reportage-hero {
  height: 70vh;
  min-height: 480px;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding-bottom: 60px;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.reportage-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10,22,28,0.85) 0%,
    rgba(10,22,28,0.4) 50%,
    rgba(10,22,28,0.2) 100%
  );
}

.reportage-hero-content {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  width: 100%;
}

.reportage-hero-content .hero-eyebrow {
  text-shadow: 0 1px 8px rgba(0,0,0,0.4);
}
.reportage-hero-content .hero-title {
  text-shadow: 0 2px 20px rgba(0,0,0,0.4);
}

/* --- Photo Gallery --- */
.reportage-gallery-section {
  padding: 80px 40px;
  background: var(--color-bg);
}

.reportage-gallery {
  max-width: 1400px;
  margin: 0 auto;
  columns: 3;
  column-gap: 12px;
}

.gallery-item {
  break-inside: avoid;
  margin-bottom: 12px;
  background: rgba(0,0,0,0.05);
  border-radius: 4px;
}

.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;
  opacity: 0;
  transition: opacity 0.6s ease;
  cursor: zoom-in;
}
.gallery-item img.loaded { opacity: 1; }

/* --- Lightbox --- */
#lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(10,22,28,0.96);
  align-items: center;
  justify-content: center;
}
#lightbox.open { display: flex; }
#lightbox img {
  max-width: min(960px, 90vw);
  max-height: 82vh;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 10px 60px rgba(0,0,0,0.5);
}
.lb-close, .lb-prev, .lb-next {
  position: absolute;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: background 0.3s ease;
}
.lb-close:hover, .lb-prev:hover, .lb-next:hover { background: rgba(255,255,255,0.2); }
.lb-close { top: 24px; right: 24px; font-size: 1.6rem; }
.lb-prev { left: 24px; top: 50%; transform: translateY(-50%); }
.lb-next { right: 24px; top: 50%; transform: translateY(-50%); }
.lb-counter {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.7);
  font-family: var(--font-display);
  font-size: 0.8rem;
  letter-spacing: 0.15em;
}

/* --- Reportage CTA --- */
.reportage-cta-section {
  padding: 100px 40px;
  background: var(--color-bg);
  border-top: 1px solid rgba(0,0,0,0.06);
}

/* --- Overview Hero --- */
.overview-hero {
  padding: 160px 40px 80px;
  text-align: center;
  background: var(--color-bg);
}

.overview-hero .hero-eyebrow {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 300;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 16px;
}

/* Wider grid on overview page */
.reportagen-grid--overview {
  max-width: 1400px;
  margin: 0 auto;
  padding: 90px 40px 110px;
  grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 1100px) {
  .reportagen-grid--overview {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* --- Location Hero (kompakter, saubere Zeilen) --- */
.location-hero-title {
  font-size: clamp(2rem, 3.6vw, 3.4rem);
  max-width: 620px;
}

@media (max-width: 768px) {
  .reportage-hero { height: 55vh; min-height: 360px; }
  .reportage-hero-content { padding: 0 20px; }
  .reportage-gallery-section { padding: 48px 16px; }
  .reportage-gallery { columns: 2; column-gap: 8px; }
  .gallery-item { margin-bottom: 8px; }
  .reportage-cta-section { padding: 60px 20px; }
  .overview-hero { padding: 120px 20px 60px; }
  .reportagen-grid--overview { grid-template-columns: 1fr; padding: 56px 20px 72px; }
  .lb-prev, .lb-next { display: none; }
  .lb-close { top: 16px; right: 16px; }
}

@media (max-width: 480px) {
  .reportage-gallery { columns: 1; }
}
