/* ============================================================
   Venue page — full-bleed resort hero with the hotel name overlaid.
   Relies on theme.css for palette, nav, fonts.
   ============================================================ */
.venue-hero {
  position: relative;
  min-height: 100svh;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: calc(var(--nav-h) + 2rem) 1.5rem 4rem;
  overflow: hidden;
}
.venue-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: url("venue_images/wideangle_exterior.webp") center / cover no-repeat;
  transform: scale(1.03);
}
/* legibility scrim — light up top, deeper toward the bottom */
.venue-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg,
              rgba(5, 21, 43, 0.55) 0%,
              rgba(5, 21, 43, 0.28) 38%,
              rgba(5, 21, 43, 0.72) 100%);
  pointer-events: none;
}
.venue-hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
}
.venue-hero .eyebrow {
  font-family: "Raleway", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.42em;
  font-size: clamp(0.6rem, 1.6vw, 0.8rem);
  color: var(--gold);
  margin: 0 0 1.2rem;
  padding-left: 0.42em;
}
.venue-name {
  font-family: "Italianno", cursive;
  font-weight: 400;
  color: var(--ivory);
  font-size: clamp(3.8rem, 11vw, 9rem);
  line-height: 0.95;
  margin: 0;
  text-shadow: 0 4px 34px rgba(0, 0, 0, 0.6);
}
.venue-hero .rule {
  width: 70px;
  height: 1px;
  background: var(--gold-soft);
  margin: 1.7rem auto;
}
.venue-note {
  font-family: "EB Garamond", serif;
  font-size: clamp(1.15rem, 2.7vw, 1.65rem);
  line-height: 1.55;
  color: var(--ivory);
  max-width: 660px;
  margin: 0 auto;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.7);
}
.venue-note .accent { color: var(--gold); font-style: italic; }

/* scroll cue on the hero, pointing to the "Getting Here" section */
.venue-hero .scroll-cue {
  position: absolute;
  bottom: 1.6rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  color: var(--gold);
  font-size: 1.6rem;
  text-decoration: none;
  animation: bob 2s ease-in-out infinite;
}
@keyframes bob { 0%,100%{transform:translate(-50%,0)} 50%{transform:translate(-50%,8px)} }

/* ============================================================
   Getting Here — nearest airport + railway (merged from Travel).
   Two transit cards with interactive maps.
   ============================================================ */
.page-main { position: relative; z-index: 1; padding-bottom: 6rem; overflow-x: clip; }

.travel-intro {
  text-align: center;
  font-family: "EB Garamond", serif;
  font-size: clamp(1.05rem, 2.4vw, 1.35rem);
  color: var(--muted);
  max-width: 640px;
  margin: 1.4rem auto 0;
  padding: 0 1.5rem;
}

.travel-cards {
  max-width: 1080px;
  margin: clamp(2.5rem, 6vw, 4rem) auto 0;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));   /* minmax(0,…) lets tracks shrink */
  gap: clamp(2rem, 5vw, 4rem);
}

/* min-width:0 stops the map cards from forcing the grid wider than the viewport
   (which caused horizontal spill after a landscape→portrait rotation) */
.travel-card { display: flex; flex-direction: column; min-width: 0; }

.tc-head {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--gold-soft);
}
.tc-icon { flex: 0 0 auto; width: 46px; height: 46px; color: var(--gold); }
.tc-icon svg { width: 100%; height: 100%; }
.tc-headings { flex: 1 1 auto; min-width: 0; }
.tc-title {
  font-family: "EB Garamond", serif;
  font-weight: 500;
  font-size: clamp(1.5rem, 3.5vw, 2.1rem);
  line-height: 1;
  color: var(--ivory);
  margin: 0;
}
.tc-sub {
  font-family: "Raleway", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.66rem;
  color: var(--gold);
  margin: 0.5rem 0 0;
}
.tc-time {
  flex: 0 0 auto;
  text-align: center;
  font-family: "Raleway", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.6rem;
  color: var(--muted);
  line-height: 1.1;
}
.tc-time b {
  display: block;
  font-family: "EB Garamond", serif;
  font-weight: 500;
  font-size: 1.75rem;
  letter-spacing: 0;
  color: var(--gold);
}

.tc-desc {
  font-family: "EB Garamond", serif;
  font-size: clamp(1rem, 2.1vw, 1.12rem);
  line-height: 1.55;
  color: var(--muted);
  margin: 1.1rem 0 1.4rem;
}

.tc-map {
  position: relative;
  aspect-ratio: 4 / 3;
  max-width: 100%;
  border: 1px solid var(--gold-soft);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.45);
  background: var(--navy);
}
.tc-map iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(0.25) contrast(1.05);
}

.tc-link {
  align-self: flex-start;
  margin-top: 1.2rem;
  font-family: "Raleway", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.72rem;
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  transition: border-color 0.2s ease;
}
.tc-link:hover { border-bottom-color: var(--gold); }

@media (max-width: 760px) {
  .travel-cards { grid-template-columns: minmax(0, 1fr); }
}
