/* location.css — Location page specific styles */

/* ---- Location Hero ---- */
.loc-hero {
  position: relative;
  height: 70vh;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-top: 0;
}

.loc-hero__img-wrap {
  position: absolute;
  inset: 0;
}

.loc-hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.loc-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(8,5,12,0.45) 0%,
    rgba(8,5,12,0.65) 60%,
    rgba(8,5,12,0.88) 100%
  );
}

.loc-hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
  max-width: 820px;
}

.loc-hero__title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 16px;
  letter-spacing: 0.01em;
}

.loc-hero__title em {
  font-style: italic;
  color: var(--tiffany);
}

.loc-hero__sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 36px;
  letter-spacing: 0.06em;
  font-weight: 300;
}

.loc-hero__actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---- Location About Section ---- */
.loc-about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}

.loc-about__body {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.9;
  margin-bottom: 16px;
}

.loc-about__body strong {
  color: var(--text);
  font-weight: 500;
}

.loc-about__events {
  background: var(--cream);
  padding: 40px 36px;
  border-left: 3px solid var(--tiffany);
}

.loc-about__events-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 24px;
  letter-spacing: 0.01em;
}

.loc-events-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}

.loc-events-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--text);
  font-weight: 300;
}

.loc-about__nearby {
  font-size: 0.82rem;
  color: var(--text-light);
  letter-spacing: 0.04em;
  padding-top: 20px;
  border-top: 1px solid rgba(10,186,181,0.15);
}

.loc-about__nearby-label {
  font-weight: 500;
  color: var(--tiffany);
  margin-right: 6px;
  text-transform: uppercase;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
}

@media (max-width: 768px) {
  .loc-hero { height: 60vh; }
  .loc-hero__title { font-size: clamp(2.4rem, 10vw, 4rem); }
  .loc-about__grid { grid-template-columns: 1fr; gap: 40px; }
  .loc-about__events { padding: 28px 24px; }
  .loc-hero__actions { flex-direction: column; align-items: center; }
}
