/* ==========================================
   OFFER PAGE
========================================== */

.offer-page {
  background: #f7f4ee;
}

/* ==========================================
   HERO
========================================== */

.offer-page__hero {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  display: flex;
  align-items: center;
}

.offer-page__hero-image {
  position: absolute;
  inset: 0;
}

.offer-page__hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.offer-page__hero-overlay {
  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      rgba(18,34,48,.70),
      rgba(18,34,48,.55)
    );
}

.offer-page__hero-content {
  position: relative;
  z-index: 2;

  max-width: 760px;

  color: #fff;
}

.offer-page__badge {
  display: inline-block;

  margin-bottom: 18px;
  padding: 8px 18px;

  border-radius: 999px;

  background: #b28a45;

  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.offer-page__title {
  margin: 0;

  font-size: clamp(42px,5vw,72px);
  line-height: 1.05;
}

.offer-page__lead {
  margin-top: 22px;

  max-width: 700px;

  font-size: 21px;
  line-height: 1.8;

  opacity: .96;
}

.offer-page__validity {
  margin-top: 34px;

  display: flex;
  gap: 10px;
  flex-wrap: wrap;

  font-size: 15px;
  font-weight: 600;
}

/* ==========================================
   CONTENT
========================================== */

.offer-page__main {
  padding: 90px 0;
}

.offer-page__layout {
  display: grid;
  grid-template-columns: minmax(0,1fr) 340px;
  gap: 70px;
  align-items: start;
}

.offer-page__section {
  margin-bottom: 70px;
}

.offer-page__section-heading span {
  display: block;

  color: #b28a45;

  font-size: 12px;
  font-weight: 700;

  letter-spacing: .18em;
  text-transform: uppercase;
}

.offer-page__section-heading h2 {
  margin: 12px 0 30px;

  color: #17324d;

  font-size: 42px;
}

.offer-page__description {
  color: #5d6770;

  font-size: 18px;
  line-height: 1.9;
}

/* ==========================================
   INCLUDES
========================================== */

.offer-page__includes {
  display: grid;
  grid-template-columns: repeat(2,minmax(0,1fr));
  gap: 18px 30px;

  padding: 0;
  margin: 0;

  list-style: none;
}

.offer-page__includes li {
  display: flex;
  align-items: center;
  gap: 14px;

  padding-bottom: 14px;

  border-bottom: 1px solid rgba(0,0,0,.08);
}

.offer-page__check {
  color: #b28a45;
  font-size: 20px;
  font-weight: bold;
}

/* ==========================================
   BOOKING CARD
========================================== */

.offer-page__booking {
  position: sticky;
  top: 110px;
}

.offer-page__booking-card {
  padding: 34px;

  border-radius: 22px;

  background: #17324d;
  color: #fff;

  box-shadow: 0 20px 55px rgba(0,0,0,.18);
}

.offer-page__price-label {
  opacity: .8;
  font-size: 12px;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.offer-page__price {
  margin: 12px 0;

  font-size: 56px;
  font-weight: 700;
  line-height: 1;
}

.offer-page__price span {
  font-size: 26px;
}

.offer-page__price-note {
  opacity: .75;
}

.offer-page__booking-benefits {
  margin: 35px 0;

  display: grid;
  gap: 14px;
}

.offer-page__booking-benefits div {
  display: flex;
  gap: 10px;
  align-items: center;
}

.offer-page__booking-button {
  display: block;

  width: 100%;
  padding: 18px;

  border-radius: 12px;

  background: #b28a45;
  color: #fff;

  text-align: center;
  text-decoration: none;
  font-weight: 700;
}

.offer-page__booking-button:hover {
  background: #9c783d;
}

/* ==========================================
   GALLERY
========================================== */

.offer-page__gallery-content {
  margin-top: 30px;
}

/* ==========================================
   RESPONSIVE
========================================== */

@media (max-width:1100px){

  .offer-page__layout{
    grid-template-columns:1fr;
  }

  .offer-page__booking{
    position:static;
  }

}

@media (max-width:768px){

  .offer-page__hero{
    min-height:420px;
  }

  .offer-page__main{
    padding:60px 0;
  }

  .offer-page__includes{
    grid-template-columns:1fr;
  }

  .offer-page__section-heading h2{
    font-size:34px;
  }

}