/* ===== Visa section ===== */

.section--venue-visa {
  padding: 3rem 0 3.2rem;
  background: radial-gradient(circle at top, rgba(15, 23, 42, 0.96), rgba(15, 23, 42, 1));
}

.venue-visa-card {
  margin-top: 1.2rem;
  border-radius: 1rem;
  border: 1px solid rgba(148, 163, 184, 0.5);
  background: rgba(15, 23, 42, 0.98);
  padding: 1.4rem 1.5rem 1.3rem;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.9);
  font-size: 0.94rem;
  color: var(--color-muted);
}

.venue-visa-card p + p {
  margin-top: 0.7rem;
}

.venue-visa-note {
  margin-top: 0.8rem;
  font-size: 0.9rem;
}

.venue-visa-note a {
  color: #bfdbfe;
  text-decoration: underline;
}

/* ===== Hotels section ===== */

.section--venue-hotels {
  padding: 3rem 0 3.5rem;
  background: radial-gradient(circle at top, rgba(2, 6, 23, 0.95), rgba(2, 6, 23, 1));
}

.venue-hotels-meta {
  display: grid;
  gap: 1.2rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 1.2rem;
  margin-bottom: 1.8rem;
}

.venue-hotels-meta__item h3 {
  margin: 0 0 0.3rem;
  font-size: 1rem;
}

.venue-hotels-meta__item p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--color-muted);
}

.venue-hotels-subtitle {
  margin: 0 0 0.7rem;
  font-size: 1.05rem;
}

/* Hotel cards grid */

.venue-hotel-grid {
  display: grid;
  gap: 1.3rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 0.6rem;
}

.venue-hotel-card {
  border-radius: 1rem;
  border: 1px solid rgba(148, 163, 184, 0.55);
  background: rgba(15, 23, 42, 0.98);
  padding: 1.2rem 1.3rem 1.1rem;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.9);
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.venue-hotel-card__name {
  margin: 0 0 0.2rem;
  font-size: 1.02rem;
}

.venue-hotel-card__tag {
  display: inline-flex;
  margin-left: 0.4rem;
  padding: 0.1rem 0.4rem;
  border-radius: 999px;
  border: 1px solid rgba(248, 250, 252, 0.4);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(248, 250, 252, 0.85);
}

.venue-hotel-card__address {
  margin: 0;
  font-size: 0.9rem;
  color: var(--color-muted);
}

.venue-hotel-card__details {
  margin: 0.2rem 0 0.3rem;
  display: grid;
  gap: 0.25rem;
  font-size: 0.88rem;
}

.venue-hotel-card__details div {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 0.4rem;
}

.venue-hotel-card__details dt {
  color: var(--color-muted);
}

.venue-hotel-card__details dd {
  margin: 0;
  color: #e5e7eb;
}

.venue-hotel-card__link {
  align-self: flex-start;
  margin-top: 0.3rem;
  font-size: 0.88rem;
}

.venue-hotel-card__shuttle-note {
  margin: 0.2rem 0 0;
  font-size: 0.8rem;
  color: var(--color-muted);
}

.venue-hotels-footer {
  margin-top: 1.4rem;
  font-size: 0.9rem;
  color: var(--color-muted);
}

.venue-hotels-footer a {
  color: #bfdbfe;
  text-decoration: underline;
}

/* ===== Responsive ===== */

@media (max-width: 1024px) {
  .venue-hotel-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .venue-hotels-meta {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 768px) {
  .venue-hotel-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}


/* ===== Venue Hero ===== */

.page-hero--venue {
  min-height: 420px;
  height: 48vh;

  background:
    linear-gradient(
      to right,
      rgba(5, 6, 23, 0.75) 0%,
      rgba(5, 6, 23, 0.25) 40%,
      rgba(5, 6, 23, 0.05) 90%,
      rgba(15, 18, 78, 0) 100%
    ),
    url("../assets/white-globe.jpg") center/cover no-repeat;

  background-blend-mode: overlay;
  border-bottom: 1px solid rgba(148, 163, 184, 0.24);
  position: relative;
}



.page-hero__inner {
  height: 100%;
  display: flex;
  align-items: center;         /* center-left alignment */
  justify-content: flex-start;
  padding-left: 2.5rem;
}

.page-hero__text {
  max-width: 650px;
}

/* Eyebrow pill */
.page-hero__eyebrow--venue {
  display: inline-flex;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;

  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;

  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(248, 250, 252, 0.18);
  color: rgba(249, 250, 251, 0.9);

  margin-bottom: 0.6rem;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.55);
}

/* Title + subtitle */
.page-hero__title {
  font-size: 2.3rem;
  font-weight: 700;
  margin: 0 0 0.4rem;
  text-shadow: 0 3px 10px rgba(0, 0, 0, 0.75);
}

.page-hero__lead {
  font-size: 0.98rem;
  color: rgba(235, 239, 245, 0.9);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
  margin: 0;
}


.page-hero__title,
.page-hero__lead,
.page-hero__eyebrow {
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}


/* Fade overlay ONLY — keeps all original styling intact */
.page-hero--venue {
  position: relative;
}

.page-hero--venue::before {
  content: "";
  position: absolute;
  inset: 0;

  /* Same fade style as home hero */
  background: linear-gradient(
    to right,
    rgba(5, 6, 23, 0.92) 0%,
    rgba(5, 6, 23, 0.85) 35%,
    rgba(5, 6, 23, 0.55) 65%,
    rgba(5, 6, 23, 0.22) 100%
  );

  pointer-events: none;
  z-index: 1; /* overlay above image */
}

/* Make sure existing text stays above overlay */
.page-hero__inner {
  position: relative;
  z-index: 2;
}


/* View on map link inside hotel cards */
.venue-hotel-card__map-link {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  margin-top: 0.1rem;
  font-size: 0.82rem;
  color: #e5e7eb;
  text-decoration: none;
  opacity: 0.85;
}

.venue-hotel-card__map-link span {
  font-size: 0.9em;
}

.venue-hotel-card__map-link:hover {
  opacity: 1;
  text-decoration: underline;
}


/* Mini map thumbnail inside hotel cards */
/* Mini map thumbnail – consistent size for all */
.venue-hotel-card__map-thumb {
  display: block;
  margin-top: 0.75rem;
  border-radius: 0.9rem;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.6);
  position: relative;
  aspect-ratio: 16 / 9; /* all maps same shape/height */
  background: radial-gradient(circle at top left,
      rgba(148, 163, 184, 0.25),
      rgba(15, 23, 42, 0.98));
}

.venue-hotel-card__map-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* crop to fill, keep proportions */
  opacity: 0.96;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.venue-hotel-card__map-thumb:hover .venue-hotel-card__map-img {
  opacity: 1;
  transform: scale(1.02);
}


.venue-hotel-card {
  border-radius: 1rem;
  border: 1px solid rgba(148, 163, 184, 0.55);
  background: rgba(15, 23, 42, 0.98);
  padding: 1.2rem 1.3rem 1.1rem;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.9);
  display: flex;
  flex-direction: column;
  gap: 0.6rem;

  /* New: smooth hover motion */
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.venue-hotel-card:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow: 0 22px 50px rgba(15, 23, 42, 0.95);
  border-color: rgba(248, 250, 252, 0.7);
}


