/* Travel — Zola-inspired rhythm, multi-tone palette (page-scoped) */

.travel-page {
  --travel-accent: #c03200;
  --travel-title: #5c4030;
  --travel-body: #6b4a38;
  --travel-meta: #8f5a28;
  --travel-cta: #c03200;
  --travel-cta-text: #fdf8f6;
  --travel-rule: color-mix(in srgb, var(--border) 70%, #d4a882);
  --travel-icon-size: 3.5rem;
  /* Icon tint matches body text (#6b4a38). */
  --travel-icon-tint: brightness(0) saturate(100%) invert(28%) sepia(32%)
    saturate(700%) hue-rotate(346deg) brightness(0.72) contrast(1.15);
}

.travel-page main {
  max-width: 42rem;
  padding-top: 1.25rem;
  padding-bottom: 3.5rem;
}

.travel-page .page-title {
  margin-bottom: 2.5rem;
  white-space: nowrap;
  overflow-wrap: normal;
  /* Shrink tracking/size on narrow phones so the title stays one line. */
  font-size: clamp(1.15rem, 4.6vw, 2.75rem);
  letter-spacing: clamp(0.06em, 1.6vw, 0.22em);
}

.travel-section {
  margin-bottom: 3.75rem;
  text-align: center;
  padding-bottom: 2.75rem;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.travel-section:not(:last-child)::after {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: min(14rem, 72%);
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    color-mix(in srgb, var(--travel-accent) 50%, var(--border)),
    transparent
  );
  opacity: 0.7;
}

.travel-section:last-child {
  margin-bottom: 1.5rem;
  padding-bottom: 0;
}

.travel-section__icons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.75rem 1rem;
  margin: 0 0 1.05rem;
}

.travel-section__icon-slot {
  box-sizing: border-box;
  flex: 0 0 var(--travel-icon-size);
  width: var(--travel-icon-size);
  height: var(--travel-icon-size);
  display: flex;
  align-items: center;
  justify-content: center;
}

.travel-section__icon {
  display: block;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center;
  /* One shared tint for every icon — same shade across the page. */
  filter: var(--travel-icon-tint) drop-shadow(0 1px 1px rgb(0 0 0 / 0.14));
}

.travel-page .travel-label {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--travel-accent);
  margin: 0 0 0.55rem;
  text-align: center;
  opacity: 1;
}

.travel-copy {
  box-sizing: border-box;
  /* Centered column on the page. */
  width: 100%;
  max-width: min(34rem, 100%);
  margin-inline: auto;
}

.travel-title {
  font-family: var(--font-body);
  font-weight: 600;
  /* Section headers (Hotels, Visa, Staying Connected…) */
  font-size: clamp(1.45rem, 4.4vw, 1.85rem);
  letter-spacing: 0.02em;
  text-transform: none;
  color: var(--travel-title);
  margin: 0 0 1rem;
  text-align: center;
  line-height: 1.35;
  width: 100%;
}

.travel-title--hotel {
  /* Individual hotel names — one step smaller than section headers. */
  font-size: clamp(1.2rem, 3.6vw, 1.4rem);
}

.travel-body,
.travel-copy > p {
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--travel-body);
  margin: 0 0 1rem;
  text-align: justify;
  width: 100%;
}

.travel-copy > p:last-child {
  margin-bottom: 0;
}

.travel-lead {
  font-weight: 700;
  /* Darker brown so soft-terracotta titles don’t compete with Airport:/Flights: */
  color: var(--travel-title);
}

.travel-subtitle {
  font-family: var(--font-body);
  font-size: 0.98rem;
  font-style: italic;
  color: var(--travel-meta);
  margin: -0.35rem 0 0.75rem;
  text-align: center;
  width: 100%;
}

.travel-address {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--travel-body);
  margin: 0 0 1.25rem;
  text-align: center;
  line-height: 1.55;
  width: 100%;
}

/* Beat `.travel-copy > p { justify }` so short hotel lines stay centered. */
.travel-copy > p.travel-subtitle,
.travel-copy > p.travel-address {
  text-align: center;
}

.travel-section__actions {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: 0.65rem;
  width: 100%;
  max-width: 14rem;
  margin-inline: auto;
  margin-top: 0.25rem;
}

.travel-btn {
  appearance: none;
  -webkit-appearance: none;
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 1 1 9.5rem;
  min-height: 2.85rem;
  padding: 0.7rem 1rem;
  border: none;
  border-radius: 6px;
  background: var(--travel-cta);
  color: var(--travel-cta-text);
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-decoration: none;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.travel-btn:hover {
  opacity: 0.92;
}

.travel-btn:focus {
  outline: none;
}

.travel-btn:focus-visible {
  outline: 2px solid var(--travel-title);
  outline-offset: 3px;
}

.travel-error {
  text-align: center;
  font-style: italic;
  color: var(--travel-meta);
  opacity: 0.9;
}

@media (min-width: 640px) {
  .travel-page {
    --travel-icon-size: 3.85rem;
  }
}
