/* ============================================================
   Pyramids Road Guest House — Tour DETAIL page stylesheet
   Add-on module. Load AFTER style.css and tours.css:

   <link rel="stylesheet" href="../css/style.css">
   <link rel="stylesheet" href="../css/tours.css">
   <link rel="stylesheet" href="../css/tour-detail.css">

   Uses the site's existing tokens (--deep, --warm, --gold, --gold2,
   --sand, --cream, --muted, --white, --text, --textlt, --border,
   --font-display, --font-body) — nothing is redefined here.
   Matches the site's language: sharp square corners (no radius),
   uppercase gold labels, Cormorant Garamond display / Jost body.
   ============================================================ */

/* ─── Tour Hero (image, not the plain dark page-hero) ───────────────────── */
.tour-hero {
  position: relative;
  margin-top: var(--nav-h);
  height: 62vh;
  min-height: 420px;
  max-height: 640px;
  overflow: hidden;
}
.tour-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.tour-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(30,15,7,.92) 0%, rgba(30,15,7,.45) 55%, rgba(30,15,7,.08) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: 3rem;
}
.tour-hero-inner { position: relative; z-index: 2; }
.tour-hero-breadcrumb {
  font-size: .78rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .9rem;
}
.tour-hero-breadcrumb a:hover { text-decoration: underline; }
.tour-hero-breadcrumb span { opacity: .5; margin: 0 .5em; }
.tour-badge.on-hero { margin-bottom: 1rem; }
.tour-hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.05;
  max-width: 820px;
  margin-bottom: 1.1rem;
}
.tour-hero-meta { display: flex; flex-wrap: wrap; gap: .75rem; }
.tour-hero-meta span {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  font-family: var(--font-body);
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--sand);
  border: 1px solid rgba(240,230,211,.35);
  padding: .5rem .9rem;
  background: rgba(30,15,7,.25);
}

/* ─── Layout: content + sticky booking rail ─────────────────────────────── */
.tour-layout {
  display: grid;
  grid-template-columns: 1.7fr 1fr;
  gap: 4rem;
  align-items: start;
}
@media (max-width: 900px) {
  .tour-layout { grid-template-columns: 1fr; gap: 3rem; }
}

.tour-block { margin-bottom: 3.5rem; }
.tour-block:last-child { margin-bottom: 0; }
.tour-block .section-title { font-size: clamp(1.6rem, 2.6vw, 2.2rem); }
.tour-block .section-subtitle { max-width: none; }
.tour-block p + p { margin-top: 1rem; }

/* ─── Highlights ─────────────────────────────────────────────────────────── */
.tour-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .6rem 2rem;
  margin-top: 1.5rem;
}
@media (max-width: 560px) { .tour-highlights { grid-template-columns: 1fr; } }
.tour-highlights li {
  display: flex;
  gap: .65rem;
  align-items: flex-start;
  font-size: .9rem;
  color: var(--textlt);
  padding: .5rem 0;
  border-bottom: 1px solid var(--border);
}
.tour-highlights li::before {
  content: '';
  width: 6px; height: 6px;
  margin-top: .5em;
  background: var(--gold);
  flex-shrink: 0;
}

/* ─── Gallery ────────────────────────────────────────────────────────────── */
.tour-gallery {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: .75rem;
  margin-top: 1.5rem;
  box-shadow: 0 4px 20px rgba(30,15,7,.07);
}
.tour-gallery figure { margin: 0; position: relative; overflow: hidden; height: 100%; }
.tour-gallery .g-main { grid-row: 1 / span 2; min-height: 320px; }
.tour-gallery img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s; }
.tour-gallery figure:hover img { transform: scale(1.05); }
.tour-gallery figcaption {
  position: absolute; left: 0; bottom: 0;
  background: linear-gradient(0deg, rgba(30,15,7,.85), transparent);
  color: var(--sand);
  font-size: .72rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 1.4rem .9rem .6rem;
  width: 100%;
}
@media (max-width: 600px) {
  .tour-gallery { grid-template-columns: 1fr; grid-template-rows: auto; }
  .tour-gallery .g-main { min-height: 220px; }
}

/* ─── Included / Not Included ───────────────────────────────────────────── */
.incl-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-top: 1.5rem;
}
@media (max-width: 560px) { .incl-grid { grid-template-columns: 1fr; } }
.incl-card {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 1.6rem 1.7rem;
}
.incl-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--deep);
  margin-bottom: .9rem;
  display: flex;
  align-items: center;
  gap: .5rem;
}
.incl-card ul { display: flex; flex-direction: column; gap: .55rem; }
.incl-card li {
  display: flex;
  gap: .6rem;
  align-items: flex-start;
  font-size: .88rem;
  color: var(--textlt);
}
.incl-card.yes li::before { content: '✓'; color: #4d7a4a; font-weight: 800; }
.incl-card.no  li::before { content: '✕'; color: #a1442f; font-weight: 800; }

/* ─── Good To Know ───────────────────────────────────────────────────────── */
.info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 1.5rem;
}
@media (max-width: 560px) { .info-grid { grid-template-columns: 1fr; } }
.info-card {
  border: 1px solid var(--border);
  padding: 1.1rem 1.3rem;
  background: var(--cream);
}
.info-card .label {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
}
.info-card .value {
  font-size: .9rem;
  color: var(--text);
  margin-top: .4rem;
  font-weight: 500;
}

/* ─── Booking Card (dark, matches how-it-works / rooms-cta gradient) ───── */
.book-card {
  position: sticky;
  top: calc(var(--nav-h) + 1.5rem);
  background: linear-gradient(160deg, #1e0f07 0%, #3d1e10 100%);
  border: 1px solid rgba(200,150,62,.35);
  padding: 2.1rem 2rem 1.9rem;
}
.book-card .from {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
}
.book-card .price {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--white);
  margin: .3rem 0 .2rem;
}
.book-card .price small {
  font-size: 1rem;
  font-weight: 400;
  color: var(--sand);
  font-family: var(--font-body);
}
.book-card .price-note {
  font-size: .8rem;
  color: rgba(240,230,211,.7);
  line-height: 1.6;
  margin-bottom: 1.3rem;
}
.tier-table { width: 100%; border-collapse: collapse; margin-bottom: 1.4rem; }
.tier-table td {
  font-size: .84rem;
  padding: .6rem 0;
  border-top: 1px solid rgba(200,150,62,.2);
  color: var(--sand);
}
.tier-table td:last-child { text-align: right; font-weight: 700; color: var(--gold2); }
.book-card .btn { width: 100%; justify-content: center; margin-bottom: .7rem; }
.book-card .btn:last-of-type { margin-bottom: 0; }
.trust-list {
  margin-top: 1.4rem;
  padding-top: 1.2rem;
  border-top: 1px dashed rgba(200,150,62,.3);
  display: flex;
  flex-direction: column;
  gap: .5rem;
}
.trust-list li {
  font-size: .78rem;
  color: rgba(240,230,211,.8);
  display: flex;
  gap: .5rem;
  align-items: flex-start;
}
.trust-list li::before { content: '◆'; font-size: .5rem; color: var(--gold); margin-top: .45em; }

/* ─── Related tours (reuses .tour-card / .tour-badge / .tour-link from tours.css) ─ */
.related-tours { background: var(--sand); }

/* ─── WhatsApp float ─────────────────────────────────────────────────────── */
.wa-float {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  z-index: 900;
  width: 54px; height: 54px;
  background: #25D366;
  color: #08360F;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 12px 26px -8px rgba(0,0,0,.45);
}
