/* ===== PAGE HERO ===== */
.page-hero {
  height: 50vh; min-height: 320px;
  position: relative;
  background: url('../images/tour-3.jpg') center/cover no-repeat;
  display: flex; align-items: center; justify-content: center;
}
.page-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.35), rgba(0,0,0,0.65));
}
.page-hero-content {
  position: relative; text-align: center; color: white; padding: 0 24px;
}
.page-hero-eyebrow {
  text-transform: uppercase; letter-spacing: 0.15em;
  font-size: 0.8rem; opacity: 0.8; margin-bottom: 10px;
}
.page-hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 12px;
}
.page-hero-content p { font-size: 1rem; opacity: 0.85; }

/* ===== FILTER BAR ===== */
.filter-bar {
  background: white;
  border-bottom: 1px solid #eee;
  position: sticky; top: 64px; z-index: 50;
}
.filter-container {
  max-width: 1100px; margin: 0 auto; padding: 0 24px;
  display: flex; gap: 8px; overflow-x: auto;
  padding-top: 14px; padding-bottom: 14px;
}
.filter-btn {
  background: none; border: 2px solid #ddd;
  padding: 8px 22px; border-radius: 30px;
  font-family: 'Lato', sans-serif; font-size: 0.85rem;
  cursor: pointer; white-space: nowrap;
  transition: all 0.2s; color: #555;
}
.filter-btn:hover { border-color: #2C6E49; color: #2C6E49; }
.filter-btn.active {
  background: #2C6E49; border-color: #2C6E49;
  color: white; font-weight: 700;
}

/* ===== TOURS LIST ===== */
.tours-list { padding: 60px 24px; background: #f8f5f0; }
.tours-list-container { max-width: 1100px; margin: 0 auto; }

.tour-row {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 48px; align-items: start;
  padding: 48px 0;
}
.tour-row-image { position: relative; }
.tour-row-image img {
  width: 100%; height: 300px;
  object-fit: cover; border-radius: 8px;
  display: block;
}
.tour-badge {
  position: absolute; top: 16px; left: 16px;
  background: #2C6E49; color: white;
  padding: 5px 14px; border-radius: 30px;
  font-size: 0.75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em;
}
.tour-badge--gold { background: #C8963E; }

.tour-row-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.7rem; margin-bottom: 12px; color: #1a1a1a;
}
.tour-meta {
  display: flex; gap: 20px; flex-wrap: wrap;
  margin-bottom: 16px;
}
.tour-meta span { font-size: 0.85rem; color: #666; }

.tour-row-content p {
  color: #555; line-height: 1.8;
  margin-bottom: 14px; font-size: 0.95rem;
}

.tour-includes { margin: 20px 0; }
.tour-includes h4 {
  font-size: 0.8rem; text-transform: uppercase;
  letter-spacing: 0.1em; color: #888;
  margin-bottom: 10px;
}
.tour-includes ul {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 6px;
}
.tour-includes li { font-size: 0.88rem; color: #444; }

.tour-row-footer {
  display: flex; align-items: center;
  justify-content: space-between;
  margin-top: 24px; padding-top: 20px;
  border-top: 1px solid #e8e8e8;
}
.tour-price-block { display: flex; align-items: baseline; gap: 6px; }
.price-from { font-size: 0.85rem; color: #888; }
.price-amount {
  font-family: 'Playfair Display', serif;
  font-size: 2rem; color: #2C6E49; font-weight: 700;
}
.price-per { font-size: 0.85rem; color: #888; }

.tour-divider {
  border: none; border-top: 1px solid #e2ddd8; margin: 0;
}

/* Active nav link */
.nav-links a.active { color: #C8963E !important; }

/* ===== MOBILE ===== */
@media (max-width: 768px) {
  .tour-row {
    grid-template-columns: 1fr;
    gap: 20px; padding: 36px 0;
  }
  .tour-row-image img { height: 220px; }
  .tour-includes ul { grid-template-columns: 1fr; }
  .tour-row-footer { flex-direction: column; align-items: flex-start; gap: 16px; }
  .filter-bar { top: 56px; }
}
