.map-section {
  background: var(--bg-deep);
  text-align: center;
}

.map-header {
  max-width: 600px;
  margin: 0 auto 3rem;
}

.map-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  border: 1px solid var(--border);
  box-shadow: 0 0 60px rgba(0, 0, 0, 0.8), 0 0 0 1px var(--gold-dim);
  overflow: hidden;
}

.map-container img {
  width: 100%;
  display: block;
  transition: transform 0.4s ease;
  cursor: pointer;
}

.map-container:hover img {
  transform: scale(1.02);
}

.map-caption {
  font-family: 'Cinzel', serif;
  font-size: 11px;
  letter-spacing: 4px;
  color: var(--gold-light);
  margin-top: 1.5rem;
  text-transform: uppercase;
}

/* Map now links to the city page */
.map-link { display: block; position: relative; cursor: pointer; }
.map-link img { width: 100%; display: block; }
.map-link-hint {
  position: absolute;
  bottom: 1.25rem;
  right: 1.25rem;
  font-family: 'Cinzel', serif;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-light);
  background: rgba(8, 8, 8, 0.78);
  border: 1px solid var(--gold-dim);
  padding: 10px 18px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.35s ease, transform 0.35s ease;
  pointer-events: none;
}
.map-container:hover .map-link-hint {
  opacity: 1;
  transform: translateY(0);
}
.map-caption-link {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s;
}
.map-caption-link:hover { color: var(--gold); }
