/* ===== HERO ===== */
.hero{
  position: relative;
  background: var(--bg);
  margin-bottom: 100px; /* Space below hero for the overlap */
}

.hero__media{
  position: relative;
  height: 500px;
  overflow: hidden;
}

.hero__slide{
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.hero__slide--active{
  opacity: 1;
}

.hero__caption{
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 50%);
  width: min(980px, calc(100% - 140px));
  background: var(--gold);
  padding: 28px 24px;
  text-align: center;
}

.hero__caption h1{
  margin: 0;
  font-size: 44px;
  font-weight: 500;
  color: #21342b;
  letter-spacing: .4px;
  line-height: 1.15;
}

/* ===== DESKTOP HERO BOOKING BOX ===== */
.hero-booking{
  position: absolute;
  top: 90px;
  right: 70px;
  z-index: 4;
}

.hero-booking__inner{
  background: #ffffff;
  width: 360px;
  padding: 28px 24px 24px;
  box-shadow: 0 10px 30px rgba(0,0,0,.18);
}

.hero-booking__top{
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 16px;
  align-items: center;
  margin-bottom: 24px;
}

.hero-booking__col{
  text-align: center;
}

.hero-booking__label{
  display: block;
  font-size: 14px;
  letter-spacing: 2px;
  color: #111;
  margin-bottom: 12px;
}

.hero-booking__dayname{
  display: block;
  font-size: 13px;
  letter-spacing: 1px;
  color: rgba(0,0,0,.45);
  margin-bottom: 8px;
}

.hero-booking__day{
  display: block;
  font-size: 78px;
  line-height: .95;
  font-weight: 700;
  color: #111;
  margin-bottom: 6px;
}

.hero-booking__month{
  display: block;
  font-size: 15px;
  letter-spacing: 1px;
  color: #111;
}

.hero-booking__divider{
  font-size: 24px;
  color: rgba(0,0,0,.5);
}

.hero-booking__button{
  display: block;
  background: #c49c44;
  color: #111;
  text-decoration: none;
  text-align: center;
  padding: 18px 20px;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* Hide header book button on desktop */
.cta-book{
  display: none;
}


@media (max-width: 760px){
  .hero__media{ height: 420px; }

  .hero__caption{
    width: calc(100% - 24px);
    padding: 18px 14px;
    transform: translate(-50%, 40%);
  }

  .hero__caption h1{ font-size: 26px; }

  .hero{ margin-bottom: 70px; }

  .hero-booking{
    display: none;
  }

  .cta-book{
    display: inline-flex;
  }
}


/* ===== ABOUT SECTION ===== */
.about{
  background: #e7e2dc;
  padding: 80px 0;
}

.about-inner{
  width: min(1200px, calc(100% - 80px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 70px;
  align-items: center;
}

.about-image img{
  width: 100%;
  height: auto;
  display: block;
}

.about-text{
  color: rgba(0,0,0,.45);
  font-size: 18px;
  line-height: 1.9;
}

.about-text p{ margin: 0 0 22px; }

.about-text p:last-child{ margin-bottom: 0; }

@media (max-width: 760px){
  .about{ padding: 56px 0; }

  .about-inner{
    width: calc(100% - 24px);
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .about-text{
    font-size: 16px;
    line-height: 1.8;
  }
}

/* ===== ABOUT REVERSE ===== */
.about--reverse{
  background: #e7e2dc;
}

.about--reverse .about-inner{
  grid-template-columns: 1fr 1.25fr;
  gap: 70px;
}

.about--reverse .about-image img{
  width: 100%;
  height: auto;
  display: block;
}

.about--reverse .about-text{
  color: rgba(0,0,0,.45);
  font-size: 18px;
  line-height: 1.9;
}

@media (max-width: 760px){
  .about--reverse{ padding: 56px 0; }

  .about--reverse .about-inner{
    width: calc(100% - 24px);
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .about--reverse .about-image{ order: -1; }

  .about--reverse .about-text{
    font-size: 16px;
    line-height: 1.8;
  }
}

/* ===== JAZZ FESTIVAL PROMO ===== */
.jazz-promo{
  background: #21342b;
  padding: 80px 0;
}

.jazz-promo__inner{
  width: min(1200px, calc(100% - 80px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}

.jazz-promo__images{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: start; /* 👈 key */
}

.jazz-promo__images img{
  width: 100%;
  height: auto; /* 👈 no forced height */
  display: block;
}

.jazz-promo__images img:nth-child(2){
  margin-top: 60px;
}

.jazz-promo__content{
  color: #fff;
}

.jazz-promo__eyebrow{
  margin: 0 0 14px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 14px;
}

.jazz-promo__content h2{
  margin: 0 0 20px;
  font-size: 42px;
  line-height: 1.15;
  font-weight: 500;
}

.jazz-promo__content p{
  font-size: 18px;
  line-height: 1.8;
  color: rgba(255,255,255,.78);
  margin: 0 0 28px;
}

.jazz-promo__button{
  display: inline-block;
  background: var(--gold);
  color: #111;
  text-decoration: none;
  padding: 16px 28px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

@media (max-width: 760px){
  .jazz-promo{
    padding: 56px 0;
  }

  .jazz-promo__inner{
    width: calc(100% - 24px);
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .jazz-promo__images{
    gap: 12px;
  }

  .jazz-promo__images img{
    height: 360px;
  }

  .jazz-promo__images img:nth-child(2){
    margin-top: 24px;
  }

  .jazz-promo__content h2{
    font-size: 30px;
  }

  .jazz-promo__content p{
    font-size: 16px;
    line-height: 1.7;
  }

  .jazz-promo__button{
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 760px){
  .jazz-promo__content{
    order: 1;
  }

  .jazz-promo__images{
    order: 2;
    grid-template-columns: 1fr;
  }

  .jazz-promo__images img{
    height: auto;
    max-height: none;
    object-fit: contain;
    padding: 10px;
  }

  .jazz-promo__images img:nth-child(2){
    margin-top: 0;
  }
}




