/* =============================================
   getting-here.css — Getting Here page styles
   ============================================= */

/* Page wrapper */
.gh-page {
  min-height: 100vh;
  background-color: #B4C0BE;
  display: flex;
  flex-direction: column;
}

/* ---- Hero ---- */
.gh-hero {
  position: relative;
  width: 100%;
  height: calc(100vh - 80px);
  max-height: calc(100vh - 80px);
  overflow: hidden;
  background: #000;
}

.gh-hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gh-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), transparent 50%, rgba(0, 0, 0, 0.4));
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 2rem;
  box-sizing: border-box;
}

@media (min-width: 900px) {
  .gh-hero__overlay {
    padding: 3rem 4rem;
  }
}

.gh-hero__title-block {
  margin: 0 0 4rem 4rem;
}

@media (min-width: 768px) {
  .gh-hero__title-block {
    margin: 0 0 5rem 6rem;
  }
}

@media (min-width: 1024px) {
  .gh-hero__title-block {
    margin: 0 0 6rem 9rem;
  }
}

.gh-hero__title-small {
  display: block;
  font-family: 'Muli', system-ui, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 0.5rem;
}

.gh-hero__title-large {
  font-family: 'IvyJournal', serif;
  font-weight: 700;
  font-size: clamp(2.5rem, 8vw, 4.5rem);
  line-height: 1.2;
  color: rgb(255, 255, 255);
  margin: 0;
  letter-spacing: -0.02em;
}

/* ---- Two-tile section ---- */
.gh-two-tile {
  display: grid;
  grid-template-columns: 1fr;
  width: 100%;
  min-height: 400px;
}

@media (min-width: 768px) {
  .gh-two-tile {
    grid-template-columns: 1fr 1fr;
    min-height: 480px;
  }
}

.gh-tile-image-wrap {
  position: relative;
  overflow: hidden;
}

.gh-tile-image {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  display: block;
}

@media (min-width: 768px) {
  .gh-tile-image {
    min-height: 480px;
  }
}

.gh-tile-content {
  background-color: #062726;
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media (min-width: 768px) {
  .gh-tile-content {
    padding: 3rem 2.5rem;
  }
}

.gh-tile-heading {
  font-family: 'IvyJournal', serif;
  font-weight: 600;
  font-size: clamp(1.5rem, 4vw, 2rem);
  line-height: 1.3;
  color: #fff;
  margin: 0 0 1rem;
}

.gh-tile-text {
  font-family: 'Muli', serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.95);
  margin: 0 0 1.5rem;
}

.gh-map-directions-btn {
  align-self: flex-start;
  font-family: 'Muli', system-ui, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  padding: 0.75rem 1.5rem;
  background-color: #FFB81D;
  color: #062726;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.2s;
}

.gh-map-directions-btn:hover {
  background-color: #e5a619;
}

/* ---- Transport section ---- */
.gh-transport-section {
  width: 100%;
  background-color: #F2F3F4;
  padding: 2.5rem 1.5rem 3rem;
}

.gh-transport-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.gh-transport-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.gh-transport-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 1rem;
  display: block;
}

.gh-transport-title {
  font-family: 'IvyJournal', serif;
  font-weight: 600;
  font-size: 34px;
  line-height: 51px;
  color: rgb(0, 68, 57);
  margin: 0 0 1rem;
}

@media (max-width: 600px) {
  .gh-transport-title {
    font-size: clamp(1.25rem, 6vw, 34px);
    line-height: 1.5;
  }
}

.gh-transport-text {
  font-family: 'Muli', serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 34px;
  color: rgb(41, 41, 41);
  margin: 0 0 1rem;
}

.gh-transport-subtitle {
  font-family: 'IvyJournal', serif;
  font-weight: 600;
  font-size: 1.25rem;
  line-height: 1.4;
  color: rgb(0, 68, 57);
  margin: 1rem 0 0.5rem;
}
