:root {
  --primary-colour: #450a0a;
  --text-colour-dark: #000;
  --text-colour-light: #fff;
  --text-colour-yellow: #fcc192;
  --button-colour-hover: #b45309;
}

.header-home,
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: var(--primary-colour);
  /* background-color: transparent; */

  /* Because we want header to be sticky later */
  height: 8rem;
  position: relative;
  /* background-color: transparent; */
  z-index: 9999;
}

.header {
  box-shadow: 0 1.2rem 3.2rem rgba(0, 0, 0, 0.2);

  position: sticky;
  top: 0;
  z-index: 2000;
}

.logo {
  /* height: 5.6rem; */
  height: 7.2rem;
  padding-left: 4.8rem;
}

.main-nav-list {
  list-style: none;
  display: flex;
  align-items: center;
  /* gap: 10.8rem; */
  gap: 12rem;
  padding-right: 6rem;
}

.main-nav-link:link,
.main-nav-link:visited {
  display: inline-block;
  text-decoration: none;
  text-transform: uppercase;
  color: var(--text-colour-light);
  font-weight: 400;
  font-size: 1.6rem;
  letter-spacing: 0.5px;
  /* letter-spacing: 0.5px; */
  text-shadow: 0.5px 0.5px 2px rgba(00, 00, 00, 0.8);

  transition: all 0.3s;
}

.main-nav-link:hover,
.main-nav-link:active {
  text-decoration: underline;
  color: var(--text-colour-yellow);
}

.main-nav-link.nav-cta:link,
.main-nav-link.nav-cta:visited {
  padding: 1.2rem 2.4rem;
  /* border-radius: 9px; */
  color: #fff;
  /* background-color: var(--primary-colour); */
  background-color: #bb9c7d;
}

.main-nav-link.nav-cta:hover,
.main-nav-link.nav-cta:active {
  background-color: var(--button-colour-hover);
}

.current-page {
  display: inline-block;

  text-decoration: underline;
  text-transform: uppercase;
  color: var(--text-colour-yellow);
  font-weight: 500;
  font-size: 1.6rem;
  /* letter-spacing: 0.5px; */
  text-shadow: 0.5px 0.5px 2px rgba(00, 00, 00, 0.8);

  transition: all 0.3s;
}

/* STICKY NAVIGATION */
.sticky .header-home {
  position: fixed;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 8rem;
  padding-top: 0;
  padding-bottom: 0;
  background-color: var(--primary-colour);
  z-index: 999;
  /* box-shadow: 0 1.2rem 3.2rem rgba(0, 0, 0, 0.03); */
  box-shadow: 0 1.2rem 3.2rem rgba(0, 0, 0, 0.2);
}

.sticky .main-slider {
  margin-top: 8rem;
}

/* .sticky .main-nav-link.nav-cta:link,
.sticky .main-nav-link.nav-cta:visited {
} */

/* .sticky .main-nav-link.nav-cta:hover,
.sticky .main-nav-link.nav-cta:active {
  background-color: var(--button-colour-hover);
} */

/* MOBILE */
.btn-mobile-nav {
  border: none;
  background: none;
  cursor: pointer;

  display: none;
}

.icon-mobile-nav {
  /* height: 4.8rem;
  width: 4.8rem; */
  height: 5.8rem;
  width: 5.8rem;
  color: var(--text-colour-light);
}

.icon-mobile-nav[name="close-outline"] {
  display: none;
}

.main-slider {
  height: calc(100vh - 8rem);
  width: 100vw;
  /* width: 100%; */
  /* position: absolute;
  top: 0; */
  overflow: hidden;
}
.slide {
  height: 100%;
  width: 100%;

  /* position: absolute;
  top: 0; */
  display: none;
  /* z-index: -1; */

  position: absolute;
  top: 0;
  overflow: hidden;
}

.slide__active {
  display: block;
  animation: imgFadeInSlide 2s;
}

.slide__active img {
  /* animation: zoomOut 9s; */
  animation: zoomOut 6s;
}

.slide__text {
  font-family: "Cormorant", serif;
  color: var(--text-colour-light);
  /* font-size: 8rem; */
  font-size: 5rem;
  /* font-size: 80rem; */
  font-weight: 300;
  letter-spacing: 3px;
  line-height: 1.2;
  text-shadow: 1px 1px 3px rgba(00, 00, 00, 0.8);

  position: absolute;
  /* left: 8rem;
  bottom: 8rem; */
  left: 50%;
  /* left: 12%; */
  bottom: 5%;
  transform: translateX(-50%);
  width: 70%;
  /* background-color: hsla(0, 0%, 0%, 0.311);
  padding: 2rem 4rem; */
}

.slide__img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  position: relative;
  transition: transform 3s;
}

.slide__img__active {
  transform: scale(1.4);
}

/* Animation */
@keyframes imgFadeInSlide {
  0% {
    opacity: 0.8;
  }
  100% {
    opacity: 1;
  }
}

@keyframes zoomOut {
  0% {
    transform: scale(1.25);
  }
  100% {
    transform: scale(1.05);
  }
}

@keyframes moveFromTop {
  0% {
    opacity: 0;
    transform: translate(-50%, -500%);
  }

  /* 80% {
    transform: translate(-50%, -20%);
  } */

  100% {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}

/* @keyframes moveFromBottom {
  0% {
    opacity: 0;
    transform: translate(-50%, 1000%);
  }


  100% {
    opacity: 1;
    transform: translate(-50%, 0);
  }
} */

@keyframes moveFromLeft {
  0% {
    opacity: 0;
    transform: translateX(200%);
    z-index: 10;
  }

  80% {
    transform: translateX(-15%);
    z-index: 10;
  }

  100% {
    opacity: 1;
    transform: translate(0);
  }
}

@keyframes moveFromRight {
  0% {
    opacity: 0;
    transform: translateX(-200%);
    z-index: 10;
  }

  80% {
    transform: translateX(15%);
    z-index: 10;
  }

  100% {
    opacity: 1;
    transform: translate(0);
  }
}

@keyframes imgCentre {
  0% {
    opacity: 0;
    transform: translateY(-100%);
  }
  /* 
  80% {
    transform: translateY(-10%);
  } */

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroImage {
  0% {
    opacity: 0;
    transform: translateY(-100%);
  }

  /* 80% {
    transform: translate(0);
  } */

  100% {
    opacity: 1;
    transform: translate(0);
  }
}

@keyframes moveFromBottom {
  0% {
    opacity: 0;
    transform: translate(-50%, 1000%);
  }

  /* 80% {
    transform: translate(-50%, -20%);
  } */

  100% {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}
/* introduction */

.secondary-heading {
  font-family: "Cormorant", serif;
  color: var(--primary-colour);
  padding-top: 6rem;
  /* padding-bottom: 6rem; */
  font-size: 4.8rem;
  font-weight: 400;
  line-height: 1.2;
  text-align: center;
  margin-top: -2px;
}

.introduction-img {
  padding-top: 6rem;
  width: 60%;
  height: 50rem;
  object-fit: cover;
  display: block;
  margin: 0 auto;
}

.standard-text {
  font-size: 2rem;
  /* font-weight: 300; */

  letter-spacing: 0.5px;

  color: var(--text-colour-dark);
  /* z-index: 2000; */

  /* display: flex;
  justify-content: center;
  align-items: center; */

  font-weight: 200;
  line-height: 1.5;
  width: 80%;
  /* margin: 4.8rem auto 10.8rem; */
  margin: 4.8rem auto 8rem;
}

.tertiary-heading {
  font-family: "Cormorant", serif;
  color: var(--primary-colour);
  padding-bottom: 6rem;
  font-size: 3.2rem;
  font-weight: 400;
  line-height: 1.2;
  text-align: center;
  margin-top: -4rem;
}

/* home-services */
.home-services {
  background-color: var(--primary-colour);
  padding-bottom: 10rem;
}

.yellow-text {
  color: var(--text-colour-yellow);
}

/* gallery */
.gallery {
  margin-bottom: 4.8rem;
}

.gallery-slider {
  width: 70%;
  margin: 0 auto;
  display: block;

  position: relative;
}

.gallery-slide-img {
  width: 100%;
  height: 60rem;
  object-fit: cover;
  display: none;
}

.gallery-slide-img-active {
  display: block;
  animation: imgFadeIn 1.5s;
}

#text-less-margin,
#text-less-margin-2 {
  margin-bottom: 6rem;
}

.dots {
  margin-top: 3.2rem;
  display: flex;
  justify-content: center;
  gap: 1.6rem;
}

.dots-dot {
  border-radius: 50%;
  border: 0.15rem solid var(--text-colour-yellow);
  background-color: var(--primary-colour);

  height: 2rem;
  width: 2rem;
  cursor: pointer;
  transition: all 0.5s;
}

.dots-dot:hover {
  background-color: var(--button-colour-hover);
}

.dots-dot--active,
.dots-dot--active:hover {
  background-color: var(--text-colour-yellow);
}

#h3-home-custom {
  margin-top: 3rem;
  padding-bottom: 1rem;
}

.home-price-text {
  font-size: 2rem;
  /* font-weight: 300; */

  letter-spacing: 0.5px;

  color: var(--text-colour-yellow);
  /* z-index: 2000; */

  /* display: flex;
  justify-content: center;
  align-items: center; */
  text-align: center;
  font-weight: 200;
  line-height: 1.5;
}

.gallery-text-item {
  display: none;
}

.gallery-text-item-active {
  display: block;
  animation: imgFadeIn 1.5s;
}

.btn-container {
  text-align: center;
}

.explore-btn:link,
.explore-btn:visited {
  text-decoration: none;
  display: inline-block;
  font-size: 2rem;
  padding: 1.5rem 3rem;
  text-shadow: 0.5px 0.5px 2px rgba(00, 00, 00, 0.8);
  letter-spacing: 0.5px;

  /* border-radius: 9px; */
  color: var(--text-colour-light);
  background-color: #bb9c7d;
  transition: all 0.3s;
}

.explore-btn:hover,
.explore-btn:active {
  /* text-decoration: underline; */

  background-color: var(--button-colour-hover);
}

/* Animation */
@keyframes imgFadeIn {
  0% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}

/* poem */

.poem {
  position: relative;
}

.poem-img {
  /* height: 100%; */
  width: 100%;
  object-fit: cover;
  /* position: relative; */
}

.poem-text {
  color: var(--primary-colour);
  font-family: "Cormorant", serif;
  font-size: 7rem;
  font-weight: 600;
  letter-spacing: 1px;
  position: absolute;
  top: 8%;
  left: 5%;
}

/* contact */
.contact {
  padding-bottom: 8rem;
}

.contact-text {
  text-align: center;
  line-height: 1.8;
  margin-top: 2rem;
  margin-bottom: 4rem;
}

.highlighted-text {
  color: var(--primary-colour);
  text-align: center;
  font-size: 2.4rem;
  font-weight: 300;
}

.quaternary-heading {
  text-align: center;
  font-size: 2.6rem;
  font-weight: 400;
}

.contact-channels {
  padding-top: 6.4rem;
  display: flex;
  gap: 6rem;
  justify-content: center;
}

.contact-channel-each {
  background-color: var(--primary-colour);
  color: var(--text-colour-yellow);
  /* width: 30%; */
  padding: 3rem 8rem;
  flex-basis: 45rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact-channel-text {
  font-size: 2rem;
  font-weight: 200;
  text-align: center;
  line-height: 1.5;
  padding-top: 2rem;
}

.contact-link:link,
.contact-link:visited {
  font-size: 2rem;
  font-weight: 200;
  padding-top: 5rem;
  display: inline-block;

  text-decoration: none;
  color: var(--text-colour-yellow);

  letter-spacing: 1px;
  /* letter-spacing: 0.5px; */
  text-shadow: 0.5px 0.5px 2px rgba(00, 00, 00, 0.8);

  transition: all 0.3s;
}

.contact-link:hover,
.contact-link:active {
  text-decoration: underline;
  color: var(--text-colour-light);
}

/* footer */

.footer {
  background-color: var(--primary-colour);
}

.footer-container-1 {
  display: flex;
  justify-content: space-between;
  padding: 6rem;
}

.footer-logo-img {
  width: 20rem;
}

.social {
  display: flex;
  gap: 3.6rem;
  align-items: center;
}

.social-icon {
  color: var(--text-colour-light);
  height: 4rem;
  width: 4rem;
}

.social-icon:hover {
  cursor: pointer;
}

.footer-social-logo {
  height: 4rem;
  fill: var(--text-colour-light);
  /* color: #fff; */
  cursor: pointer;
  width: 4rem;
}

.facebook:hover {
  fill: #4267b2;
}

.line:hover {
  fill: #06c755;
}

.twitter:hover {
  color: #00acee;
}

.youtube:hover {
  color: #ff0000;
}

.instagram:hover {
  color: #d62976;
}

.whatsapp:hover {
  color: #25d366;
}

.tiktok:hover {
  color: #ff0050;
}

.footer-contact {
  width: 25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
}

.footer-text {
  font-size: 1.8rem;
  font-weight: 200;
}

.footer-sms-text {
  color: var(--text-colour-light);
  text-decoration: none;
  font-size: 1.8rem;
  font-weight: 200;
  letter-spacing: 0.5px;
}

.footer-sms-text:hover {
  cursor: pointer;
  text-decoration: underline;
}

.web-nyc,
.web-nyc:link,
.web-nyc:visited {
  display: inline-block;
  margin: 0 auto;

  font-size: 2.2rem;
  font-weight: 200;

  text-decoration: none;
  padding-top: 3rem;
  letter-spacing: 1px;
  /* padding: 1.2rem 2.8rem; */
  /* border-radius: 9px; */
  color: #fff;
  transition: 0.3s;
}

.web-nyc:hover,
.web-nyc:active {
  text-decoration: underline;
  /* background-color: var(--button-colour-hover); */
}

.web-link-text {
  text-align: center;
}

.address {
  text-align: center;
  color: var(--text-colour-light);
  font-size: 2rem;
  font-weight: 200;
  padding-top: 4.8rem;
  padding-bottom: 2rem;
  letter-spacing: 0.5px;
}

.copyright {
  text-align: center;
  color: var(--text-colour-light);
  font-size: 1.4rem;
  font-weight: 200;
  padding-top: 6rem;
  padding-bottom: 2rem;
  letter-spacing: 0.5px;
}

/* services - page */

/* services - hero */
.services-hero-img-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

/* .services-hero {
  height: 90vh;
} */

.services-hero-img {
  width: 100%;
  /* height: 100vh; */
  height: calc(100vh - 8rem);
  object-fit: cover;
  /* object-fit: fill; */
}

.services-hero-img-mobile {
  display: none;
}

.hero-heading {
  font-family: "Cormorant", serif;

  color: var(--text-colour-light);
  /* font-size: 8rem; */
  font-size: 6.4rem;
  font-weight: 300;
  letter-spacing: 3px;
  background-color: hsla(0, 0%, 7%, 0.7);
  padding: 2rem 4rem;

  position: absolute;
  left: 50%;
  bottom: 12%;
  transform: translateX(-50%);
  z-index: 10;
}

.heading-services {
  animation: moveFromTop 1.5s ease-out;
}

.img-left {
  animation: moveFromLeft 1.5s ease-out;
}

.img-right {
  animation: moveFromRight 1.5s ease-out;
}

.img-centre {
  animation: imgCentre 1.5s ease-out;
}

/* massage - types */

.massage-types {
  background-color: var(--primary-colour);
  padding-top: 12rem;
  padding-bottom: 12rem;
  display: flex;
  flex-direction: column;
  gap: 12rem;
}

.massage-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 80rem;
}

.massage-item-img {
  height: 80rem;
  width: 100%;
  object-fit: cover;
}

.massage-description {
  color: var(--text-colour-yellow);
  display: flex;
  flex-direction: column;
  padding-left: 2rem;
  padding-right: 2rem;
  justify-content: center;
  gap: 2rem;
}

.massage-type-heading {
  font-family: "Cormorant", serif;
  font-size: 4rem;
  font-weight: 500;
}

.massage-type-text,
.price-table {
  font-size: 2rem;
  font-weight: 200;
  line-height: 1.5;
  display: flex;
  gap: 6rem;
  padding-top: 1rem;
  align-self: center;
}

.duration-row,
.price-row {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.duration-row {
  align-items: flex-end;
}

.service-book-btn,
.service-book-btn:link,
.service-book-btn:visited {
  text-decoration: none;
  padding: 1.5rem 3rem;
  color: var(--primary-colour);
  font-size: 2rem;
  font-weight: 500;
  margin-top: 4rem;
  transition: 0.2s;
  border: none;
  align-self: center;
  background-color: #bb9c7d;
}

.service-book-btn:hover,
.service-book-btn:active {
  cursor: pointer;
  color: var(--text-colour-light);
  background-color: var(--button-colour-hover);
}

.white-bg {
  background-color: var(--text-colour-light);
  padding-left: 2rem;
}

.dark-text {
  color: var(--text-colour-dark);
}

.primary-colour-text {
  color: var(--primary-colour);
}

.white-text {
  color: var(--text-colour-light);
}

.primary-bg,
.primary-bg:link,
.primary-bg:visited {
  background-color: var(--primary-colour);
  color: var(--text-colour-light);
  font-weight: 400;
}

.primary-bg:hover,
.primary-bg:active {
  background-color: var(--button-colour-hover);
  color: var(--text-colour-light);
  font-weight: 400;
}

.massage-types-three {
  background-color: var(--primary-colour);
}

.types-three-img {
  padding-top: 12rem;
  width: 60%;
  height: 60rem;
  object-fit: cover;
  display: block;
  margin: 0 auto;
}

.massage-types-three-content {
  color: var(--text-colour-yellow);
  display: flex;
  flex-direction: column;
  /* padding-left: 2rem;
  padding-right: 2rem; */
  justify-content: center;
  /* gap: 2rem; */
  padding-bottom: 8rem;
}

.massage-types-three-content:not(:last-child) {
  border-bottom: var(--text-colour-yellow) 1px solid;
}

.service-events-item {
  padding-bottom: 8rem;
}

.service-events-item:first-child {
  border-bottom: var(--primary-colour) 1px solid;
}

.chair-heading {
  font-weight: 600;
}

.chair-img {
  padding-top: 6rem;
  width: 30%;
  /* height: 50rem; */
  object-fit: cover;
  display: block;
  margin: 0 auto;
}

.chair-body-text {
  margin-bottom: 2rem;
}

.chair-pro-list {
  color: var(--text-colour-dark);
  margin-bottom: 2rem;
  padding-left: 4rem;
}

.chair-pro-list li strong {
  font-weight: 600;
}

.chair-tertiary-heading {
  color: var(--primary-colour);
  padding-top: 4rem;
  padding-bottom: 6rem;
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 1.2;
  text-align: center;
}

.chair-tertiary-heading br {
  display: none;
}

.centre {
  text-align: center;
}

/* about page */

.hero-img {
  height: calc(100vh - 8rem);
  object-fit: cover;

  /* background-size: cover; */
  animation: heroImage 1s ease-out;
  /* position: relative; */
  width: 100%;
}

.heading-page {
  font-family: "Cormorant", serif;

  color: var(--text-colour-light);
  /* font-size: 8rem; */
  font-size: 6.4rem;
  font-weight: 600;
  letter-spacing: 3px;
  background-color: hsla(0, 0%, 7%, 0.482);
  padding: 2rem 4rem;
  /* text-shadow: 0.5px 0.5px 2px rgba(00, 00, 00, 0.8); */
  text-shadow: 2px 2px 2px rgba(00, 00, 00, 0.8);

  position: absolute;
  left: 50%;
  bottom: 10%;
  transform: translateX(-50%);
  z-index: 10;
}

.heading-about {
  white-space: nowrap;
  animation: moveFromBottom 1s ease-out;
}

.about {
  padding-bottom: 30rem;
}

.about-container {
  display: flex;
  flex-direction: column;
  gap: 35rem;
}

.about-item {
  /* height: 40rem; */
  position: relative;
}

.about-img {
  width: 100%;
  height: 80rem;
  object-fit: cover;
}

.about-text {
  background-color: var(--primary-colour);
  width: 45%;
  position: absolute;
  bottom: 0%;
  right: 5%;
  transform: translateY(50%);
}

.left-side {
  left: 5%;
}

.about-text-heading {
  color: var(--text-colour-yellow);
  font-family: "Cormorant", serif;
  font-size: 4rem;
  font-weight: 200;
  padding-top: 4rem;
  /* padding-bottom: 3rem; */
  text-align: center;
}

.about-text-body {
  font-size: 2rem;
  font-weight: 200;
  line-height: 1.5;
  padding: 3rem 4rem 6rem;
}

/* faq page */
.faqs {
  padding-top: 2rem;
  padding-bottom: 6rem;
}

/* .faq-heading {
  font-size: 4.8rem;
  padding-bottom: 4rem;
} */

.faq-item:nth-child(2) {
  padding-top: 6rem;
}

.faq-item {
  text-align: center;
  margin-bottom: 3rem;
}

.faq-item-question {
  position: relative;
}

.faq-button,
.faq-button:link,
.faq-button:visited {
  font-family: "Inter", sans-serif;
  width: 70%;
  border: none;
  /* background-color: #262626; */
  background-color: var(--primary-colour);
  color: var(--text-colour-light);
  font-size: 2rem;
  font-weight: 200;
  padding: 2rem 4rem;
  text-align: left;
  margin: 0 auto;
  cursor: pointer;
  box-shadow: 0 0.5rem 0.5rem rgba(0, 0, 0, 0.15);
  transition: all 0.2s;
}

.faq-button:hover {
  background-color: var(--primary-colour);
}

.faq-button:active {
  background-color: var(--primary-colour);
}

.faq-icon {
  color: var(--text-colour-light);
  font-size: 2rem;
  cursor: pointer;

  position: absolute;
  top: 0;
  top: 50%;
  right: 16%;
  transform: translate(-50%, -50%);
  transition: all 0.5s;
}

.faq-answer {
  font-family: "Inter", sans-serif;

  width: 70%;
  margin: 0 auto;
  padding: 2rem 4rem;
  font-size: 1.8rem;
  font-weight: 200;

  background-color: var(--text-colour-yellow);
  color: var(--text-colour-dark);
  text-align: left;
  line-height: 1.8;

  display: none;
}

.icon--active {
  transform: translate(-50%, -50%) rotate(-180deg);
}

.answer--active {
  display: block;
  animation: faqAnswer 0.8s;
}

/* blog page */
.blog {
  /* background-color: var(--text-colour-dark); */
}

.blog-list {
  width: 85%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 8rem;
  padding-top: 6rem;
  padding-bottom: 8rem;
}

.blog-item {
  width: 80%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.blog-img {
  width: 100%;
  height: 35rem;
  object-fit: cover;
  overflow: hidden;
}

.blog-description {
  background-color: var(--primary-colour);
  display: flex;
  flex-direction: column;
  padding: 3rem;
  padding-left: 5rem;
  justify-content: center;
  gap: 3rem;
}

.blog-text {
  font-size: 2.4rem;
  font-weight: 200;
  line-height: 1.4;
}

.blog-button,
.blog-button:link,
.blog-button:visited {
  text-transform: uppercase;
  padding: 1.5rem 3rem;
  color: var(--text-colour-dark);
  font-size: 1.8rem;
  font-weight: 700;
  margin-top: 4rem;
  transition: 0.2s;
  border: none;
  align-self: flex-start;
}

.blog-button:hover,
.blog-button:active {
  cursor: pointer;
  outline-offset: 0.3rem;
  outline: 0.2rem solid var(--text-colour-light);
}

/* blog - content */
.blog-page {
  /* background-color: var(--text-colour-dark); */
}

.blog-page-content {
  margin: 0 auto;
  padding-bottom: 5rem;
}

.blog-page-img {
  width: 50%;
  height: 40rem;
  object-fit: cover;
  display: block;
  margin: 3rem auto 0;
}

.blog-page-body {
  width: 70%;
  padding-top: 4rem;
  margin: 0 auto;
}

.blog-page-text {
  font-size: 2rem;
  font-weight: 200;
  line-height: 1.5;
  color: var(--text-colour-dark);
}

.blog-page-introduction {
  padding-bottom: 6rem;
}

.blog-page-text-container {
  padding-bottom: 6.4rem;
}

.blog-page-heading {
  font-size: 3rem;
  font-weight: 400;
  padding-bottom: 1.2rem;
}

.main-nav-link.nav-cta.underline:link,
.main-nav-link.nav-cta.underline:visited {
  text-decoration: underline;
  color: var(--button-colour-hover);
  text-shadow: none;
  font-weight: 500;
}

.main-nav-link.nav-cta.underline:hover,
.main-nav-link.nav-cta.underline:active {
  background-color: #bb9c7d;
}

.standard-text strong {
  font-weight: 500;
}

.bold-text {
  color: var(--primary-colour);
  display: block;
  text-align: center;
  font-size: 2rem;
  font-weight: 500;
}

.more-padding {
  padding-bottom: 6rem;
}

/* contact-section */

.section-booking {
  background-color: var(--text-colour-yellow);
  display: grid;
  grid-template-columns: 55fr 45fr;
  align-items: center;
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.booking-details {
  color: var(--text-colour-dark);
  text-align: center;
  padding-top: 4rem;
  position: relative;
  padding-bottom: 4rem;
}

.booking-heading {
  font-family: "Cormorant", serif;
  display: inline;
  font-size: 4rem;
  font-weight: 200;
  border-bottom: 2px solid var(--text-colour-dark);
}

.booking-description-text-1 {
  padding-top: 4rem;
  font-size: 2.2rem;
  font-weight: 200;
  line-height: 1.8;
}

.booking-number {
  display: grid;
  grid-template-columns: 15rem 30rem;
  justify-content: center;
  align-items: center;
  font-size: 2.4rem;
  padding-top: 6.4rem;
  font-weight: 200;
  row-gap: 4rem;
  color: var(--primary-colour);
}

.contact-photo {
  /* border-top: 3px solid #eab308;
  border-right: 3px solid #eab308;
  border-bottom: 3px solid #eab308; */
}

.contact-img {
  width: 100%;
  object-fit: cover;
}

.contact-photo-mobile {
  display: none;
}

.booking-link:link,
.booking-link:visited {
  display: inline-block;
  text-decoration: none;
  color: var(--primary-colour);

  letter-spacing: 1px;
  /* letter-spacing: 0.5px; */
  /* text-shadow: 0.5px 0.5px 2px rgba(00, 00, 00, 0.8); */

  transition: all 0.3s;
}

.booking-link:hover,
.booking-link:active {
  text-decoration: underline;
  /* color: var(--text-colour-dark); */
}

.booking-chat {
  display: inline-block;
  margin-top: 4.8rem;
}

.whatsapp-img {
  height: 6rem;
}

.booking-description {
  padding-top: 8rem;
  font-size: 2.2rem;
  font-weight: 200;
  line-height: 1.8;
  text-align: center;
}

.booking-list {
  display: inline-block;
  text-align: start;
  padding-top: 1rem;
  /* margin-left: 10rem; */
  /* margin: 0 auto; */
}

/* figure-section */

.figure {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  /* gap: 1.6rem; */
  gap: 2rem;
  padding: 1.6rem;
  padding-right: 3rem;
}

.figure-item {
  overflow: hidden;
}

.figure-item img {
  /* To remove white space between photos */
  display: block;
  object-fit: cover;
  height: 100%;
  width: 100%;
  transition: all 0.4s;
}

.figure-item img:hover {
  transform: scale(1.1);
}
