/* =========================================
   CHRISTMAS PAGE
========================================= */

html {
  scroll-behavior: smooth;
}

body {
  background: #e7e2dc;
}


/* =========================================
   CHRISTMAS HERO
========================================= */

.christmas-hero {
  background: #21342b;
  padding: 110px 24px;
  text-align: center;
}

.christmas-hero__inner {
  width: min(900px, 100%);
  margin: 0 auto;
}

.christmas-hero__eyebrow {
  margin: 0 0 18px;
  color: var(--gold);
  font-size: 14px;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.christmas-hero h1 {
  margin: 0 0 24px;
  color: #ffffff;
  font-size: clamp(44px, 7vw, 82px);
  font-weight: 500;
  line-height: 1.05;
}

.christmas-hero__text {
  max-width: 700px;
  margin: 0 auto 34px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 19px;
  line-height: 1.8;
}

.christmas-hero__button {
  display: inline-block;
  background: var(--gold);
  color: #111111;
  padding: 17px 30px;
  font-weight: 700;
  letter-spacing: 2px;
  text-decoration: none;
  text-transform: uppercase;
  transition:
    background 0.25s ease,
    color 0.25s ease;
}

.christmas-hero__button:hover {
  background: #ffffff;
  color: #21342b;
}


/* =========================================
   CHRISTMAS MENUS
========================================= */

.christmas-menus {
  background: #e7e2dc;
  padding: 90px 0;
}

.christmas-menus__inner {
  width: min(1200px, calc(100% - 80px));
  margin: 0 auto;
}

.christmas-menus__heading {
  max-width: 760px;
  margin: 0 auto 50px;
  text-align: center;
}

.christmas-menus__eyebrow {
  margin: 0 0 12px;
  color: #b89456;
  font-size: 14px;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.christmas-menus__heading h2 {
  margin: 0 0 18px;
  color: #21342b;
  font-size: 46px;
  font-weight: 500;
  line-height: 1.15;
}

.christmas-menus__heading > p:last-child {
  margin: 0;
  color: rgba(0, 0, 0, 0.6);
  font-size: 18px;
  line-height: 1.8;
}


/* =========================================
   MENU CARDS
========================================= */

.christmas-menu-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 38px;
  align-items: start;
}

.christmas-menu-card {
  overflow: hidden;
  background: #ffffff;
}

.christmas-menu-card__image {
  width: 100%;
  background: #21342b;
}

.christmas-menu-card__image img {
  width: 100%;
  height: 700px;
  display: block;
  object-fit: contain;
  object-position: center;
}

.christmas-menu-card__content {
  padding: 32px;
  text-align: center;
}

.christmas-menu-card__label {
  margin: 0 0 10px;
  color: #b89456;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.christmas-menu-card__content h3 {
  margin: 0 0 16px;
  color: #21342b;
  font-size: 29px;
  font-weight: 500;
}

.christmas-menu-card__content p:not(.christmas-menu-card__label) {
  margin: 0 0 25px;
  color: rgba(0, 0, 0, 0.58);
  font-size: 16px;
  line-height: 1.7;
}

.christmas-menu-card__button {
  display: inline-block;
  background: #21342b;
  color: #ffffff;
  padding: 15px 25px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-decoration: none;
  text-transform: uppercase;
  transition:
    background 0.25s ease,
    color 0.25s ease;
}

.christmas-menu-card__button:hover {
  background: var(--gold);
  color: #111111;
}


/* =========================================
   CHRISTMAS BOOKING
========================================= */

.christmas-booking {
  background: #21342b;
  padding: 80px 0;
}

.christmas-booking__inner {
  width: min(1100px, calc(100% - 80px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 70px;
  align-items: center;
}

.christmas-booking__eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 14px;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.christmas-booking__content h2 {
  margin: 0 0 20px;
  color: #ffffff;
  font-size: 42px;
  font-weight: 500;
  line-height: 1.15;
}

.christmas-booking__content > p:last-child {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 17px;
  line-height: 1.8;
}

.christmas-booking__details {
  display: grid;
  gap: 15px;
}

.christmas-booking__details a {
  display: block;
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: #ffffff;
  padding: 20px 22px;
  font-size: 18px;
  text-decoration: none;
  word-break: break-word;
  transition:
    background 0.25s ease,
    color 0.25s ease;
}

.christmas-booking__details a span {
  display: block;
  margin-bottom: 7px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.christmas-booking__details a:hover {
  background: var(--gold);
  color: #111111;
}

.christmas-booking__details a:hover span {
  color: #111111;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 950px) {
  .christmas-menu-card__image img {
    height: 580px;
  }

  .christmas-booking__inner {
    grid-template-columns: 1fr;
    gap: 35px;
  }
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 760px) {
  .christmas-hero {
    padding: 75px 18px;
  }

  .christmas-hero h1 {
    font-size: 42px;
  }

  .christmas-hero__text {
    font-size: 16px;
    line-height: 1.7;
  }

  .christmas-hero__button {
    width: 100%;
    padding: 16px;
  }

  .christmas-menus {
    padding: 60px 0;
  }

  .christmas-menus__inner {
    width: calc(100% - 24px);
  }

  .christmas-menus__heading {
    margin-bottom: 32px;
  }

  .christmas-menus__heading h2 {
    font-size: 34px;
  }

  .christmas-menus__heading > p:last-child {
    font-size: 16px;
    line-height: 1.7;
  }

  .christmas-menu-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .christmas-menu-card__image img {
    height: auto;
    max-height: none;
    object-fit: contain;
  }

  .christmas-menu-card__content {
    padding: 26px 20px;
  }

  .christmas-menu-card__content h3 {
    font-size: 25px;
  }

  .christmas-menu-card__button {
    width: 100%;
    text-align: center;
  }

  .christmas-booking {
    padding: 60px 0;
  }

  .christmas-booking__inner {
    width: calc(100% - 24px);
  }

  .christmas-booking__content h2 {
    font-size: 32px;
  }

  .christmas-booking__content > p:last-child {
    font-size: 16px;
    line-height: 1.7;
  }

  .christmas-booking__details a {
    font-size: 16px;
  }
}

.back-home-btn{
    display:inline-block;
    margin:24px 0 40px 40px;
    padding:10px 18px;
    font-size:13px;
    letter-spacing:2px;
    text-decoration:none;
    color:#b89456;
    border:1px solid #b89456;
    transition:0.25s ease;
}

.back-home-btn:hover{
    opacity:.75;
    transform:translateY(-1px);
}

@media (max-width:760px){

    .back-home-wrap{
        width:calc(100% - 24px);
        padding-top:18px;
    }

}