/* ===== 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;
}

/* IMPORTANT: hide on mobile so mobile stays exactly the same */
@media (max-width: 900px){
  .hero-booking{
    display: none;
  }
}

/* Hide header book button on desktop */
.cta-book{
  display: none;
}

/* Show it again on mobile */
@media (max-width: 900px){
  .cta-book{
    display: inline-flex;
  }
}

@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; }
}


.offers{
    background:#f5f3f0;
  padding:80px 20px;
}

.offers-container{
  max-width:1200px;
  margin:auto;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:40px;
}

/* OFFER CARD */

.offer-card{
  background:white;
  box-shadow:0 8px 25px rgba(0,0,0,0.08);
  transition:0.3s;
}

.offer-card:hover{
  transform:translateY(-6px);
}

/* IMAGE */

.offer-image img{
  width:100%;
  height:240px;
  object-fit:cover;
}

/* TEXT */

.offer-info{
  padding:30px;
  text-align:center;
}

.offer-info h2{
  margin-bottom:10px;
}

.offer-subtitle{
  color:#666;
  margin-bottom:15px;
}

.offer-text{
  line-height:1.6;
  margin-bottom:25px;
}

/* BUTTON */

.offer-btn{
  background:#3e6c7d;
  color:white;
  padding:12px 28px;
  text-decoration:none;
  display:inline-block;
  font-weight:600;
}

/* RESPONSIVE */

@media(max-width:900px){

  .offers-container{
    grid-template-columns:repeat(2,1fr);
  }

}

@media(max-width:600px){

  .offers-container{
    grid-template-columns:1fr;
  }

}

.offer-actions{
  display:flex;
  flex-direction:column;
  gap:12px;
  align-items:center;
}

.offer-link{
  text-decoration:none;
  font-size:13px;
  letter-spacing:2px;
  color:#b89456;
  border-bottom:1px solid #b89456;
  padding-bottom:4px;
  transition:opacity .25s ease, transform .25s ease;
}

.offer-link:hover{
  opacity:0.75;
  transform:translateY(-1px);
}