/* ============================================
   AMBOSELI PAGE — amboseli.css
   Embed additions into your existing styles.css,
   or link this file after styles.css
   ============================================ */

/* ============================================
   DESTINATION HERO
   ============================================ */
.dest-hero {
  position: relative;
  height: 100vh;
  min-height: 560px;
  overflow: hidden;
}

.dest-hero__slides {
  position: absolute;
  inset: 0;
}

.dest-hero__slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.1s cubic-bezier(0.4, 0, 0.2, 1);
}
.dest-hero__slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(10, 8, 6, 0.65) 0%,
    rgba(10, 8, 6, 0.25) 55%,
    rgba(10, 8, 6, 0.1) 100%
  );
}
.dest-hero__slide.is-active { opacity: 1; }

.dest-hero__slide-inner {
  position: absolute;
  bottom: 12vh;
  left: clamp(1.5rem, 8vw, 8rem);
  z-index: 2;
  max-width: 580px;
  animation: heroFadeUp 0.9s ease forwards;
}

.dest-hero__eyebrow {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 0.85rem;
}

.dest-hero__title {
  font-family: NewYork;
  font-size: clamp(3.5rem, 8vw, 7rem);
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 1rem;
}

.dest-hero__copy {
  font-size: clamp(0.9rem, 1.5vw, 1.05rem);
  color: rgba(255,255,255,0.75);
  line-height: 1.65;
  margin-bottom: 1.75rem;
  max-width: 460px;
  padding-bottom: 0;
}

/* Controls */
.dest-hero__controls {
  position: absolute;
  bottom: 2.5rem;
  right: clamp(1.5rem, 5vw, 4rem);
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.dest-hero__prev,
.dest-hero__next {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.35);
  display: inline-flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.8);
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(6px);
  transition: all 0.25s ease;
}
.dest-hero__prev:hover,
.dest-hero__next:hover {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.65);
  color: #fff;
}

.dest-hero__dots {
  display: flex;
  gap: 6px;
}
.dest-hero__dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  border: none;
  transition: all 0.25s ease;
}
.dest-hero__dot.is-active {
  background: #fff;
  transform: scale(1.3);
}

/* Breadcrumb */
.dest-hero__breadcrumb {
  position: absolute;
  top: calc(var(--header-h) + 1.5rem);
  left: clamp(1.5rem, 8vw, 8rem);
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.dest-hero__breadcrumb a { color: rgba(255,255,255,0.5); transition: color 0.2s; }
.dest-hero__breadcrumb a:hover { color: rgba(255,255,255,0.85); }
.dest-hero__breadcrumb span:last-child { color: rgba(255,255,255,0.75); }

/* ============================================
   INTRODUCTION SECTION
   ============================================ */
.amb-intro {
  padding: clamp(4rem, 8vw, 8rem) 0;
  background: #fff;
}

.amb-intro__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
}

.amb-intro__text .section-eyebrow { margin-bottom: 0.5rem; }
.amb-intro__text p { color: var(--clr-text-light); line-height: 1.8; }

.amb-intro__visual {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 320px 200px;
  gap: 8px;
}

.amb-intro__img-main {
  grid-column: 1 / -1;
  grid-row: 1;
  background-size: cover;
  background-position: center;
  border-radius: 2px;
}

.amb-intro__img-secondary {
  grid-column: 1 / 2;
  grid-row: 2;
  background-size: cover;
  background-position: center;
  border-radius: 2px;
}

.amb-intro__stat-pill {
  position: absolute;
  bottom: 1.25rem;
  right: 0;
  background: #525E47;
  color: #fff;
  padding: 1.1rem 1.4rem;
  border-radius: 2px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-width: 130px;
  box-shadow: 0 8px 28px rgba(0,0,0,0.18);
}
.amb-intro__stat-pill strong {
  font-family: NewYork;
  font-size: 2.2rem;
  font-weight: 300;
  line-height: 1;
}
.amb-intro__stat-pill span {
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-top: 3px;
}

@media (max-width: 900px) {
  .amb-intro__grid { grid-template-columns: 1fr; }
  .amb-intro__visual { grid-template-rows: 280px 170px; }
}

/* ============================================
   PARK HIGHLIGHTS
   ============================================ */
.amb-highlights {
  padding: clamp(4rem, 8vw, 8rem) 0;
}

.amb-highlights__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.amb-highlight-card {
  background: #fff;
  padding: 2rem 1.75rem;
  border-radius: 2px;
  border: 1px solid var(--clr-muted);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.amb-highlight-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.07);
  transform: translateY(-3px);
}

.amb-highlight-card__icon {
  width: 52px; height: 52px;
  background: #edf3ef;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #525E47;
  margin-bottom: 1.25rem;
}

.amb-highlight-card h3 {
  font-family: NewYork;
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--clr-dark);
  margin-bottom: 0.6rem;
}

.amb-highlight-card p {
  font-size: 0.875rem;
  color: var(--clr-text-light);
  line-height: 1.7;
  padding-bottom: 0;
  margin: 0;
}

@media (max-width: 1024px) {
  .amb-highlights__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .amb-highlights__grid { grid-template-columns: 1fr; }
}

/* ============================================
   BALLOON EXPERIENCE SECTION
   ============================================ */
.amb-balloon {
  position: relative;
  padding: clamp(5rem, 10vw, 10rem) 0;
  overflow: hidden;
  isolation: isolate;
}

.amb-balloon__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: -2;
}
.amb-balloon__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(25, 40, 30, 0.92) 0%,
    rgba(20, 30, 22, 0.82) 50%,
    rgba(15, 20, 16, 0.75) 100%
  );
}

.amb-balloon__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
}

.amb-balloon__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.1);
  margin: 1.75rem 0 2rem;
}

.amb-balloon__stat {
  background: rgba(255,255,255,0.04);
  padding: 1.1rem 0.9rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.2rem;
}
.amb-balloon__stat strong {
  font-family: NewYork;
  font-size: 1.8rem;
  font-weight: 300;
  color: #e8d5a8;
  line-height: 1;
}
.amb-balloon__stat span {
  font-size: 0.6rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}

.amb-balloon__image-stack {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 380px 200px;
  gap: 8px;
}

.amb-balloon__img {
  background-size: cover;
  background-position: center;
  border-radius: 2px;
}
.amb-balloon__img--main {
  grid-column: 1 / -1;
  grid-row: 1;
}
.amb-balloon__img--secondary {
  grid-column: 1 / 2;
  grid-row: 2;
}

@media (max-width: 900px) {
  .amb-balloon__inner { grid-template-columns: 1fr; }
  .amb-balloon__image-stack { grid-template-rows: 280px 160px; order: -1; }
  .amb-balloon__stats { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 500px) {
  .amb-balloon__stats { grid-template-columns: 1fr 1fr; }
  .amb-balloon__stat:last-child { grid-column: 1 / -1; }
}

/* ============================================
   WHAT TO SEE & DO
   ============================================ */
.amb-see-do {
  padding: clamp(4rem, 8vw, 8rem) 0;
  background: #fff;
}

.amb-see-do__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
}

.amb-see-do__item {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--clr-warm-sand);
  border-radius: 2px;
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}
.amb-see-do__item:hover {
  box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.amb-see-do__img {
  height: 360px;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  transition: transform 0.6s cubic-bezier(0.25,0.1,0.25,1);
}
.amb-see-do__item:hover .amb-see-do__img {
  transform: scale(1.04);
}

.amb-see-do__tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: #525E47;
  color: #fff;
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: 2px;
  backdrop-filter: blur(4px);
}

.amb-see-do__body {
  padding: 1.6rem 1.75rem 2rem;
  flex: 1;
}

.amb-see-do__body h3 {
  font-family: NewYork;
  font-size: 1.3rem;
  font-weight: 400;
  color: #254F39;
  margin-bottom: 0.6rem;
}

.amb-see-do__body p {
  font-size: 0.875rem;
  color: var(--clr-text-light);
  line-height: 1.75;
  padding-bottom: 0;
  margin: 0;
}

@media (max-width: 768px) {
  .amb-see-do__grid { grid-template-columns: 1fr; }
}

/* ============================================
   HOW TO GET THERE
   ============================================ */
.amb-access {
  padding: clamp(4rem, 8vw, 8rem) 0;
  background-color: #525E47;
}

.amb-access__inner {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: start;
}

.amb-access__options {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 2px;
  overflow: hidden;
}

.amb-access__option {
  display: flex;
  gap: 1.25rem;
  padding: 1.75rem 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: background 0.2s ease;
}
.amb-access__option:last-child { border-bottom: none; }
.amb-access__option:hover { background: rgba(255,255,255,0.03); }

.amb-access__option-icon {
  flex-shrink: 0;
  width: 44px; height: 44px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #e8d5a8;
  margin-top: 2px;
}

.amb-access__option h4 {
  font-family: NewYork;
  font-size: 1rem;
  font-weight: 400;
  color: #fff;
  margin-bottom: 0.35rem;
}

.amb-access__option p {
  font-size: 0.855rem;
  line-height: 1.72;
  padding-bottom: 0;
  margin: 0;
}

@media (max-width: 900px) {
  .amb-access__inner { grid-template-columns: 1fr; }
}

/* ============================================
   BEST TIME TO VISIT
   ============================================ */
.amb-timing {
  padding: clamp(4rem, 8vw, 8rem) 0;
  background: #fff;
}

.amb-timing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.amb-timing__card {
  padding: 2rem 1.75rem;
  border: 1px solid var(--clr-muted);
  border-radius: 2px;
  background: #fafaf9;
  transition: box-shadow 0.3s ease;
  border-radius: 8px;
}
.amb-timing__card:hover {
  box-shadow: 0 6px 28px rgba(0,0,0,0.06);
}
.amb-timing__card--peak {
  border-color: #525E47;
  background: #f3f8f5;
  position: relative;
  border-radius: 8px;
}
.amb-timing__card--peak::before {
  content: 'Recommended';
  position: absolute;
  top: -1px; right: 1.5rem;
  background: #525E47;
  color: #fff;
  font-size: 0.58rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0.22rem 0.7rem;
  border-radius: 0 0 3px 3px;
}

.amb-timing__card-header {
  margin-bottom: 0.75rem;
}
.amb-timing__season {
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #525E47;
  display: block;
  margin-bottom: 0.3rem;
}
.amb-timing__card h3 {
  font-family: NewYork;
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--clr-dark);
}

.amb-timing__card > p {
  font-size: 0.875rem;
  color: var(--clr-text-light);
  line-height: 1.72;
  padding-bottom: 0.75rem;
  margin: 0;
}

.amb-timing__bullets {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid var(--clr-warm-sand);
  padding-top: 0.85rem;
}
.amb-timing__bullets li {
  font-size: 0.82rem;
  color: var(--clr-text-light);
  padding: 0.3rem 0;
  padding-left: 1.2rem;
  position: relative;
  line-height: 1.5;
}
.amb-timing__bullets li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: #525E47;
}

.amb-timing__note {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  background: var(--clr-warm-sand);
  padding: 1.2rem 1.5rem;
  border-radius: 2px;
  border-left: 3px solid #525E47;
}
.amb-timing__note svg {
  flex-shrink: 0;
  color: #525E47;
  margin-top: 0.1rem;
}
.amb-timing__note p {
  font-size: 0.85rem;
  color: var(--clr-text-light);
  line-height: 1.7;
  padding: 0;
  margin: 0;
}

@media (max-width: 900px) {
  .amb-timing__grid { grid-template-columns: 1fr; }
}

/* ============================================
   RESPONSIVE — SHARED OVERRIDES
   ============================================ */
@media (max-width: 768px) {
  .dest-hero__slide-inner {
    left: 1.5rem;
    right: 1.5rem;
    bottom: 9vh;
    max-width: 100%;
  }
  .dest-hero__title { font-size: clamp(2.8rem, 12vw, 4rem); }
  .dest-hero__breadcrumb { left: 1.5rem; }
  .dest-hero__controls { right: 1.5rem; }
}

@media (max-width: 480px) {
  .amb-balloon__stats { grid-template-columns: 1fr; }
}
