/* =====================================================
   ITINERARIES PAGE – itinerary.css
   Order matches itineraries.html top → bottom
===================================================== */

/* =====================================================
   PAGE HEADING
   (Shared base styles handle typography & spacing)
===================================================== */
/* No page-specific overrides needed here */

/* =====================================================
   ITINERARY HERO IMAGE (per section)
===================================================== */
.itinerary-hero {
  max-width: 1100px;
  margin: 0 auto 40px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow-medium);
}

.itinerary-hero img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
}

/* Mobile adjustment */
@media (max-width: 768px) {
  .itinerary-hero img {
    height: 240px;
  }
}

/* =====================================================
   DAY TEXT (small muted helper inside itinerary copy)
===================================================== */
.day {
  color: var(--text-muted);
}

/* =====================================================
   FEATURED CTA (button under each itinerary)
===================================================== */
.featured-cta {
  display: flex;
  justify-content: center;
  margin-top: 50px;
}

.featured-cta .cta {
  background: linear-gradient(135deg, var(--brand-primary), var(--brand-cta));
  box-shadow: var(--shadow-cta);
  padding: 14px 34px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 999px;
  letter-spacing: 0.3px;
  transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
}

.featured-cta .cta:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-cta-hover);
  filter: brightness(1.05);
}

.featured-cta .cta:active {
  transform: translateY(0);
  box-shadow: 0 6px 14px rgba(0,0,0,.35);
}

/* =====================================================
   CAMPSITES GRID (Info Cards)
===================================================== */
.info-cards {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

/* Tablet & mobile: stack cards */
@media (max-width: 900px) {
  .info-cards {
    grid-template-columns: 1fr;
  }
}

.info-card {
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: 14px;
  border-bottom: 2px solid var(--brand-primary);
  border-right: 2px solid var(--brand-primary);
  padding: 28px 26px;
  box-shadow: var(--shadow-soft);
}

.info-card h3 {
  margin-bottom: 14px;
  color: var(--brand-primary);
}

.info-card ul {
  margin: 0;
  padding-left: 18px;
}

.info-card li {
  margin-bottom: 8px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Card image */
.info-card-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 14px;
  box-shadow: var(--shadow-soft);
  display: block;
}

/* =====================================================
   UTILITIES
===================================================== */
/* No-JS fallback for fade-in animations */
.no-js .fade-in {
  opacity: 1;
  transform: none;
}
