/* =====================================================
   Travel Guide (Traveling to Puri)
   ----------------------------------------------------
   Reuses the event page's typography and spacing tokens.
   Cards on the main list do NOT expand inline — tapping
   opens a full-screen overlay (see .travel-overlay).
   ===================================================== */

:root {
  --travel-gap: 28px;
  --travel-pad-x: 20px;
}

/* =====================================================
   HERO
   Same motive + glow pattern as event/story, slightly
   shorter because there's no header image here.
   ===================================================== */
.travel-hero {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: var(--color-bg);
  padding-top: 60px;    /* leave space for the sticky topbar */
  padding-bottom: 12px;
  isolation: isolate;
}

.travel-hero-motive {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 360px;
  max-width: 120%;
  aspect-ratio: 1 / 1;
  pointer-events: none;
  z-index: 0;
  opacity: 0.35;
  -webkit-mask-image: linear-gradient(to bottom,
    rgba(0,0,0,1) 0%, rgba(0,0,0,0.9) 20%, rgba(0,0,0,0.5) 40%, rgba(0,0,0,0) 60%);
          mask-image: linear-gradient(to bottom,
    rgba(0,0,0,1) 0%, rgba(0,0,0,0.9) 20%, rgba(0,0,0,0.5) 40%, rgba(0,0,0,0) 60%);
  animation: travel-motive-rotate 60s linear infinite;
}

.travel-hero-motive img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@keyframes travel-motive-rotate {
  from { transform: translateX(-50%) rotate(0deg); }
  to   { transform: translateX(-50%) rotate(360deg); }
}

.travel-hero-glow {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 400px;
  height: 300px;
  pointer-events: none;
  z-index: 1;
  background: radial-gradient(ellipse at center top,
    rgba(186, 141, 66, 0.42) 0%,
    rgba(186, 141, 66, 0.18) 35%,
    rgba(0, 0, 0, 0) 70%);
  max-width: 120%;
}

.travel-hero-text {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 60px 24px 16px;
}

.travel-hero-name {
  margin: 0;
  font-family: 'Savor', 'Montserrat', serif;
  font-size: 34px;
  font-weight: 400;
  color: var(--color-white);
  line-height: 1.1;
  letter-spacing: 0.3px;
}

.travel-hero-stroke {
  width: 64px;
  height: 1.5px;
  background: var(--color-yellow);
  margin: 14px auto 14px;
  border-radius: 2px;
  opacity: 0.85;
}

.travel-hero-lead {
  margin: 0;
  font-family: 'Cormorant Garamond', 'Georgia', serif;
  font-style: italic;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.35;
  color: var(--color-yellow-light);
}

/* =====================================================
   INTRO paragraph (sits between hero and section list)
   ===================================================== */
.travel-intro {
  margin: 12px var(--travel-pad-x) 0;
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.65;
  color: var(--color-offwhite);
}

/* =====================================================
   MAIN — stack of sections
   ===================================================== */
.travel-main {
  display: flex;
  flex-direction: column;
  gap: var(--travel-gap);
  margin-top: var(--travel-gap);
  padding: 0 var(--travel-pad-x);
  padding-bottom: 120px; /* room for floating bottom nav */
}

/* ---------- Section wrapper ---------- */
.travel-section {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.travel-section-heading {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 2px;
  font-family: 'Savor', 'Montserrat', serif;
  font-weight: 400;
  font-size: 20px;
  color: var(--color-white);
}

.travel-section-heading-icon {
  width: 10px;
  height: 19px;
  flex-shrink: 0;
  opacity: 0.9;
}

/* ---------- Card list inside a section ---------- */
.travel-card-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  overflow: hidden;
}

.travel-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 16px;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  color: var(--color-white);
  text-align: left;
  cursor: pointer;
  transition: background 0.15s ease, transform 0.1s ease;
  width: 100%;
  font-family: inherit;
}

.travel-card:last-child { border-bottom: none; }
.travel-card:hover { background: rgba(255, 255, 255, 0.06); }
.travel-card:active { transform: scale(0.995); }

.travel-card-label {
  flex: 1 1 auto;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.35;
  color: var(--color-white);
}

.travel-card-arrow {
  flex: 0 0 auto;
  color: var(--color-yellow);
  font-size: 20px;
  line-height: 1;
  opacity: 0.9;
}

/* =====================================================
   AT A GLANCE — inline card, does not expand
   ===================================================== */
.travel-glance {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.travel-glance-note {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  margin: 0 0 4px;
  line-height: 1.5;
}

.travel-glance-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.travel-glance-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  align-items: baseline;
  padding: 8px 0;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.08);
}

.travel-glance-item:last-child { border-bottom: none; }

.travel-glance-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--color-yellow);
  line-height: 1.4;
}

.travel-glance-value {
  font-size: 14px;
  color: var(--color-white);
  text-align: right;
  line-height: 1.4;
}

.travel-glance-value a {
  color: var(--color-white);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.travel-glance-footer {
  font-size: 13px;
  line-height: 1.55;
  color: var(--color-offwhite);
  margin: 4px 0 0;
  font-style: italic;
}

/* =====================================================
   CLOSING NOTE — "A Note from Puri"
   Warmer, distinct treatment: soft yellow-tinted fill,
   italic Cormorant Garamond title, centered sign-off.
   ===================================================== */
.travel-closing {
  position: relative;
  margin-top: 12px;
  padding: 24px 20px 22px;
  border-radius: 16px;
  background:
    linear-gradient(180deg,
      rgba(186, 141, 66, 0.14) 0%,
      rgba(186, 141, 66, 0.05) 100%);
  border: 1px solid rgba(206, 161, 85, 0.35);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

/* Small decorative glow at the top edge to echo the hero */
.travel-closing::before {
  content: '';
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 220px;
  height: 100px;
  background: radial-gradient(ellipse at center,
    rgba(186, 141, 66, 0.35) 0%,
    rgba(0, 0, 0, 0) 70%);
  pointer-events: none;
}

.travel-closing-title {
  display: flex;
  justify-content: center;
  font-family: 'Cormorant Garamond', 'Georgia', serif;
  font-style: italic;
  font-weight: 500;
  font-size: 22px;
  color: var(--color-yellow-light);
  margin: 0 0 14px;
  letter-spacing: 0.3px;
  position: relative;
}

.travel-closing-body {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.7;
  color: var(--color-offwhite);
}

.travel-closing-body p { margin: 0 0 12px; }
.travel-closing-body p:last-child { margin-bottom: 0; }

/* Sign-off treatment for "Jai Jagannatha." */
.travel-closing-sign {
  margin-top: 14px !important;
  text-align: center;
  font-family: 'Savor', 'Cormorant Garamond', serif;
  font-size: 22px;
  color: var(--color-yellow);
  letter-spacing: 1px;
  line-height: 1.2;
}

/* =====================================================
   OVERLAY — full-screen card reader
   ===================================================== */
.travel-overlay {
  position: fixed;
  inset: 0;
  z-index: 1100; /* must exceed .topbar-wrap (1000) so overlay fully covers the page topbar */
  background: var(--color-bg);
  display: flex;
  flex-direction: column;
  animation: travel-overlay-in 0.24s ease-out;
}

.travel-overlay[hidden] { display: none; }

@keyframes travel-overlay-in {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Keep overlay pinned inside the desktop phone mockup */
@media (min-width: 520px) {
  .travel-overlay {
    left: 50%;
    transform: translateX(-50%);
    width: min(100vw, calc(100vh * 9 / 16));
    max-width: 440px;
  }
}

/* The overlay has its own topbar reusing the sticky wrap. */
.travel-overlay-topbar-wrap {
  flex: 0 0 auto;
}

/* Scrollable content area */
.travel-overlay-scroll {
  flex: 1 1 auto;
  overflow-y: auto;
  padding: 20px var(--travel-pad-x) 140px;
  scrollbar-width: none;
}
.travel-overlay-scroll::-webkit-scrollbar { width: 0; }

.travel-overlay-title {
  margin: 12px 0 10px;
  font-family: 'Savor', 'Montserrat', serif;
  font-weight: 400;
  font-size: 28px;
  line-height: 1.15;
  color: var(--color-white);
}

.travel-overlay-subtitle {
  margin: 0 0 20px;
  font-family: 'Cormorant Garamond', 'Georgia', serif;
  font-style: italic;
  font-size: 16px;
  line-height: 1.4;
  color: var(--color-yellow-light);
}

/* Image placeholder slot (below title) */
.travel-overlay-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 12px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 22px;
}

.travel-overlay-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Body prose */
.travel-overlay-body {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.7;
  color: var(--color-offwhite);
}

.travel-overlay-body p { margin: 0 0 14px; }
.travel-overlay-body p:last-child { margin-bottom: 0; }
.travel-overlay-body strong {
  color: var(--color-white);
  font-weight: 600;
}

.travel-overlay-body a {
  color: var(--color-white);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.travel-overlay-body ul {
  margin: 0 0 16px;
  padding-left: 20px;
}
.travel-overlay-body ul li {
  margin-bottom: 6px;
}

/* Italic pull-quote used at the end of some cards */
.travel-overlay-body .travel-aside {
  margin: 22px 0 6px;
  padding: 14px 16px;
  border-left: 2px solid var(--color-yellow);
  background: rgba(186, 141, 66, 0.08);
  border-radius: 0 8px 8px 0;
  font-family: 'Cormorant Garamond', 'Georgia', serif;
  font-size: 16px;
  color: var(--color-yellow-light);
  line-height: 1.5;
}

/* =====================================================
   Share-fallback toast
   ===================================================== */
.travel-toast {
  position: fixed;
  left: 50%;
  bottom: 110px;
  transform: translate(-50%, 10px);
  padding: 10px 18px;
  background: rgba(0, 0, 0, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: var(--color-white);
  font-size: 13px;
  font-weight: 500;
  z-index: 200;
  opacity: 0;
  transition: opacity 0.2s ease, transform 0.2s ease;
  pointer-events: none;
}

.travel-toast.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}
