/* ───────────────────────────────────────
   LOCATIONS PAGE — VERSION D
──────────────────────────────────────── */

/* LOCATIONS PAGE HERO */
.hero-locations {
  background-image: url('../img/guy.png'); /* update filename */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  height: 45vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  border-bottom: var(--border-comic);
  box-shadow: var(--glow-teal-gold);
}

.hero-locations h1 {
  font-family: var(--font-display);
  font-size: 4rem;
  color: var(--teal);
  text-shadow: var(--glow-teal-gold);
  text-align: center;
}

.hero-locations p {
  max-width: 700px;
  margin-top: 1rem;
  font-size: 1.25rem;
  color: var(--white);
  text-align: center;
}



/* ───────────────────────────────────────
   LOCATIONS WRAPPER
──────────────────────────────────────── */
.locations-wrapper {
  max-width: 1200px;
  margin: 4rem auto;
  padding: 0 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

/* ───────────────────────────────────────
   LOCATION CARD
──────────────────────────────────────── */
.location-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  background: var(--panel);
  border: var(--border-comic);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--glow-teal-gold);
  position: relative;
}

/* MAP LEFT */
.location-map {
  width: 100%;
  height: 300px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 3px solid var(--gold);
  box-shadow: var(--glow-teal-gold);
}

/* IMAGE RIGHT */
.location-photo img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: var(--radius);
  border: 3px solid var(--gold);
  box-shadow: var(--glow-teal-gold);
}

/* INFO SECTION */
.location-info {
  grid-column: 1 / -1;
  margin-top: 1rem;
}

.location-info h2 {
  font-family: var(--font-display);
  font-size: 2.4rem;
  color: var(--gold);
  text-shadow: var(--glow-teal-gold);
  margin-bottom: .75rem;
}

.location-info p {
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: .5rem;
}

/* ───────────────────────────────────────
   MOBILE OPTIMIZATION
──────────────────────────────────────── */
@media (max-width: 900px) {
  .location-card {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 1.5rem;
  }

  .location-map,
  .location-photo img {
    height: 260px;
  }

  .location-info {
    margin-top: 1.25rem;
  }
}

@media (max-width: 600px) {
  .location-card {
    padding: 1.25rem;
  }

  .location-map,
  .location-photo img {
    height: 220px;
  }

  .location-info h2 {
    font-size: 2rem;
  }

  .location-info p {
    font-size: 1.1rem;
  }
}
