/* amboseli-safari.css — page-specific styles only */
/* Shared nav, hero, footer, tokens loaded via style.css */

/* Reveal on scroll effect */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(.23,1,.32,1);
}
.reveal-on-scroll.visible {
  opacity: 1;
  transform: none;
}

/* Section container */
.amboseli-section {
  padding: 0.5rem 0 2rem 0;
  background: var(--ivory);
}
.amboseli-section .container {
  padding-top: 1rem;
  padding-bottom: 2rem;
  max-width: 900px;
  margin: 0 auto;
  background: var(--white);
  border-radius: 4px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}

/* Destinations grid */
.destinations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}
.destination-card {
  background: var(--cream);
  border-left: 3px solid var(--gold);
  padding: 1.5rem;
}

/* Timeline style */
.itinerary-timeline {
  border-left: 3px solid var(--gold);
  margin: 2rem 0 2rem 1.5rem;
  padding-left: 2.5rem;
  position: relative;
}
.timeline-item {
  position: relative;
  margin-bottom: 1.5rem;
  min-height: 2.2rem;
  display: grid;
  grid-template-columns: 32px 110px 1fr;
  align-items: center;
}
.timeline-item::before {
  content: '';
  grid-column: 1;
  grid-row: 1;
  justify-self: center;
  align-self: center;
  width: 1rem;
  height: 1rem;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.timeline-day {
  grid-column: 2;
  font-weight: 600;
  color: var(--gold);
  text-align: right;
  margin-right: 0.5rem;
  min-width: 90px;
  padding-right: 0.5rem;
  white-space: nowrap;
}
.timeline-desc {
  grid-column: 3;
  margin-left: 0.5rem;
  text-align: left;
}

/* Benefits cards */
.benefits-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 2rem;
}
.benefit-card {
  background: var(--cream);
  border-left: 3px solid var(--gold);
  padding: 1rem 1.5rem;
  min-width: 220px;
  flex: 1 1 220px;
  font-size: 0.92rem;
  color: #444;
  line-height: 1.6;
}

/* Headings */
.amboseli-section h2,
.amboseli-section h3 {
  font-family: 'Cormorant Garamond', serif;
  color: var(--green-dark);
  margin-top: 1.5rem;
  font-weight: 400;
}
.amboseli-section h4 {
  font-family: 'Cormorant Garamond', serif;
  color: var(--gold);
  margin-top: 1rem;
}

/* Utility */
.amboseli-section p {
  color: #444;
  line-height: 1.75;
}

/* Responsive */
@media (max-width: 700px) {
  .destinations-grid, .benefits-cards {
    grid-template-columns: 1fr !important;
    flex-direction: column;
  }
  .itinerary-timeline {
    padding-left: 1rem;
    margin-left: 0.5rem;
  }
}
