:root {
  /* COLORS */
  --primary-color: #f4f5ed;
  --dark-color: #333;
  --darkest-color: #232323;
  --accent-color-400: #87694f;
  --accent-color-300: #bfa591;

  --variant-1-light: #caa791;
  --variant-1-dark: #967c6c;

  --variant-2-light: #dfd3c0;
  --variant-2-dark: #aca294;

  --variant-3-light: #c3b0a8;
  --variant-3-dark: #90817c;

  --transparent-black-color: rgba(0, 0, 0, 0.7);

  /* FONT FAMILIES */
  --Libre-Franklin-font: "Libre Franklin", sans-serif;
  --Montserrat-font: "Montserrat", sans-serif;
  --Halimun-font: "Halimun", sans-serif;
  --Averes-Title-font: "Averes Title", sans-serif;
}
html {
  scroll-behavior: smooth;
  overflow-x: hidden;

  scrollbar-width: thin;
  scrollbar-color: var(--accent-color-300) var(--primary-color);
}
::selection {
  background-color: var(--accent-color-300);
  color: #fff;
}
::-webkit-scrollbar {
  width: 0.5rem;
}
::-webkit-scrollbar-track {
  background: var(--primary-color);
}
::-webkit-scrollbar-thumb {
  background: var(--accent-color-300);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--accent-color-400);
}

body {
  background-color: var(--primary-color);
  font-family: var(--Montserrat-font);
  overflow-x: hidden;
}

.flex {
  display: flex !important;
}

.wrapper {
  max-width: 90%;
  margin: 0 auto;
}
.hidden {
  display: none !important;
}
.overflow-hidden {
  overflow: hidden !important;
}
.overflow-visible {
  overflow: visible !important;
}
.fadeOut {
  animation: fadeOut 0.5s ease-in-out !important;
}
iframe {
  width: 100%;
}
/* ================================================================== */
/* ======================= NAVIGATION SECTION ======================= */
/* ================================================================== */
.primary-heading {
  font-family: var(--Averes-Title-font);
  font-size: 2.5rem;
  line-height: 2;
  font-weight: 400;
  padding: 0 2rem;
}
.primary-heading__light {
  color: #fff;
}
.primary-heading__dark {
  color: #000;
}

.secondary-heading {
  font-family: var(--Halimun-font);
  font-size: 3.125rem;
  line-height: 2;
  font-weight: 500;
}
.secondary-heading__light {
  background-color: var(--primary-color);
  color: #000;
}

.secondary-heading__dark {
  background-color: var(--accent-color-300);
  color: var(--primary-color);
}

.btn {
  font-family: var(--Averes-Title-font);
  padding: 0.625rem 1.875rem;
  text-transform: uppercase;
  display: inline-block;
  font-size: 1.25rem;
  position: relative;
  z-index: 1;
  transition: all 0.3s ease-in-out;
  animation: fadeIn 1s ease-in;
  cursor: pointer;
}

.btn__light {
  overflow: hidden;

  border: 1px solid var(--accent-color-300);
  background-color: var(--primary-color);
  color: var(--dark-color);
}
.btn__dark {
  overflow: hidden;

  color: var(--primary-color);
  background-color: var(--accent-color-300);
  border: 1px solid var(--accent-color-400);
}

.btn__light::before,
.btn__dark::before {
  content: "";
  position: absolute;
  width: 0;
  height: 600%;
  top: 50%;
  left: 50%;
  z-index: -1;
  transform: translate(-50%, -50%) rotate(45deg);
  transition: all 0.3s ease-in-out;
}
.btn__light::before {
  background: var(--accent-color-400);
}
.btn__dark::before {
  background-color: var(--accent-color-400);
}

.btn__light:hover::before,
.btn__dark:hover::before {
  width: 150%;
}

.btn__light:hover {
  color: var(--primary-color);
}

/* ================================================================== */
/* ========================= HEADER SECTION ========================= */
/* ================================================================== */
.section-header {
  font-family: "Averes Title";
  font-size: 1.2rem;
  padding: 2.5rem 0;
  color: var(--dark-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.section-header .logo {
  height: 5.625rem;
  aspect-ratio: 47/30;
}
.section-header .logo .logo--img {
  max-width: 100%;
  height: 100%;
}

/* NAVIGATION BAR */
.navigation {
  display: flex;
  justify-content: end;
  align-items: center;
}

/* The Outer links */
.navigation-standout {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
.navigation-standout__link {
  transition: all 0.3s ease-in-out;
  position: relative;
  cursor: pointer;
  background: transparent;
  border: none;
  padding: 0;
}
.navigation-standout__link .booking__options__list {
  margin-top: 1.125rem;
}
.navigation-standout__link::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  bottom: -0.625rem;
  background: currentColor;
}
.navigation-toggle--line {
  position: absolute;
  top: 1rem;
  transform: translateY(-0.125rem);
  width: 100%;
  cursor: pointer;
  height: 1rem;
}

.navigation-toggle--line__inner {
  position: absolute;
  bottom: 0;
  width: 100%;
  background-color: var(--transparent-black-color);
  height: 0.125rem;
}
.navigation-standout__icons {
  display: flex;
  gap: 0.625rem;
  margin-top: 0.625rem;
}
.navigation-standout__icon {
  display: block;
  width: 100%;
  height: 100%;
  transition: all 0.3s ease-in-out;
  fill: var(--transparent-black-color);
}
.navigation-standout__link:hover,
.navigation-standout__icon:hover {
  color: var(--accent-color-400);
  fill: var(--accent-color-400);
}

/* The Inner links */
.navigation-list {
  list-style: none;
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.25rem;
  overflow: hidden;
  margin-left: 2rem;
  margin-right: 1rem;
  margin-bottom: 0.625rem;
  transition: all 0.3s cubic-bezier(0.53, 0, 0.15, 1.3),
    opacity 0.5s ease-in-out;
}

.navigation-list.visibilityHidden {
  /* overflow: hidden; */
  visibility: hidden;
  pointer-events: none;
  flex: 0;
  opacity: 0;
  margin-left: 0;
  margin-right: 0;
  transform: translateX(100%);
}
.not-accessible {
  pointer-events: none;
}

.navigation-list__item {
  position: relative;
  min-width: max-content;
  transition: all 0.3s ease-in-out;
}

.navigation__services {
  border: none;
  background: transparent;
  color: currentColor;
  cursor: pointer;
  position: relative;
}
.navigation__services__list {
  position: absolute;
  padding: 0;
  margin: 0;
  margin-top: 1.3rem;
  min-width: max-content;
  margin-left: -7.75rem;
  list-style-type: none;
  display: none;
  gap: 1rem;
  border: 1px solid var(--accent-color-300);
  background-color: var(--primary-color);
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  animation: fadeIn 0.3s ease-in;
  z-index: 100;
}

/*.services-btn:focus-within .navigation__services__list,
.services-btn:target .navigation__services__list {
  display: flex;
}*/

.navigation-list__item::after {
  content: "";
  display: block;
  width: 0;
  height: 1px;
  background: var(--accent-color-400);
  margin-top: 0.625rem;
  transition: width 0.3s;
}
.navigation-list__item:hover,
.navigation-list__item.active {
  color: var(--accent-color-400);
}
.navigation-list__item:hover::after,
.navigation-list__item.active::after {
  width: 100%;
}

/* TOGGLE MENU */
.mobile-navigation-toggle,
.mobile-navigation {
  display: none;
}

.navigation-toggle {
  position: relative;
  width: 3.75rem;
  height: 1rem;
  cursor: pointer;
}

.navigation-toggle::before,
.navigation-toggle::after {
  background-color: var(--transparent-black-color);
  content: "";
  position: absolute;
  width: 100%;
  height: 0.125rem;
  left: 0;
  z-index: 99;
  transition: all 0.5s ease-in-out;
}
.navigation-toggle::before {
  top: 0;
}
.navigation-toggle::after {
  bottom: 0;
}

.navigation-toggle.close::before,
.navigation-toggle.close::after {
  top: 50%;
  width: 80%;
  transform: translateY(-50%);
  background-color: var(--accent-color-400);
}
.navigation-toggle.close::before {
  transform: rotate(225deg);
}
.navigation-toggle.close::after {
  transform: rotate(-225deg);
}

.navigation-toggle.expand {
  animation: toggleIconOpen 1s cubic-bezier(0.53, 0, 0.15, 1.3);
}

.navigation-toggle.expand.close {
  animation: toggleIconClose 1s cubic-bezier(0.5, 0, 0.5, 1);
}

/* ================================================================== */
/* ========================== HERO SECTION ========================== */
/* ================================================================== */
.section-hero {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;

  min-height: 45rem;
}

.section-hero .primary-heading {
  margin-bottom: 1rem;
  animation: fadeInLeft 1s ease-in;
}
.section-hero .secondary-heading {
  margin-top: 0;
  margin-bottom: 4rem;
  text-align: center;
}

.booking__options {
  position: relative;
}
.booking__options__list {
  padding: 0;
  margin: 0;
  margin-top: 0.5rem;
  list-style-type: none;
  position: absolute;
  display: none;

  gap: 1rem;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);

  border: 1px solid var(--accent-color-300);
  background-color: var(--primary-color);
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  animation: fadeIn 0.5s ease-in;
}
.booking__options__list a {
  animation: none;
}
.booking__options__list::before,
.navigation__services__list::before {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-left: 0.5rem solid transparent;
  border-right: 0.5rem solid transparent;
  border-bottom: 0.5rem solid var(--accent-color-400);
  top: -0.5rem;
  left: 50%;
  transform: translateX(-50%);
}

.booking__options__list__item {
  min-width: max-content;
}
.booking__options__list__item > a {
  display: block;
}

.options_btn {
  cursor: pointer;
  animation: fadeIn 1s ease-in;
  border: 1px solid var(--accent-color-400);
  background-color: #8d7253;
  color: #fff;
}
.options_btn:hover {
  background-color: var(--accent-color-400);
}

/*.book-now:focus-within .booking__options__list,
.book-now:target .booking__options__list {
  display: flex;
}*/

/* ================================================================== */
/* ======================== SERVICES SECTION ======================== */
/* ================================================================== */
.section-services {
  display: flex;
  flex-wrap: wrap;
  overflow: hidden;
}

.section-services .service-container:nth-child(1) {
  background-color: var(--variant-1-light);
}
.section-services .service-container:nth-child(2) {
  background-color: var(--variant-2-light);
}
.section-services .service-container:nth-child(3) {
  background-color: var(--variant-3-light);
}

.section-services .service-container:hover:nth-child(1) {
  background-color: var(--variant-1-dark);
}
.section-services .service-container:hover:nth-child(2) {
  background-color: var(--variant-2-dark);
}
.section-services .service-container:hover:nth-child(3) {
  background-color: var(--variant-3-dark);
}

.section-services .service-container {
  flex: 1;
  min-width: 24rem;
  aspect-ratio: 1/1;
  max-height: 40rem;
  transition: all 0.3s ease-in-out;
}

.section-services .service-container .service {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease-in-out;
  color: var(--primary-color);
}
.section-services .service-container:hover .service {
  transform: translateY(-2%);
}
.section-services .service-container:hover .service .service__title {
  color: #000;
}
.section-services .service-container:hover .service .service__title span {
  color: var(--primary-color);
}

.section-services .service-container .service .service__img {
  width: auto;
  max-height: 4.5rem;
  transition: all 0.3s ease-in-out;
}

.section-services .service-container .service .service__title {
  font: 2.5rem var(--Averes-Title-font);
  margin-top: 1.25rem;
  line-height: 1.5rem;
  transition: all 0.3s ease-in-out;
  text-align: center;
  z-index: 2;
  position: relative;
}
.section-services .service-container .service .service__title span {
  position: relative;
  color: #000;
  font: 2.5rem var(--Halimun-font);
  font-weight: 400;
  line-height: 1.5rem;
  display: block;
  transition: all 0.3s ease-in-out;
  z-index: 1;
}

.section-services .service-container .service .service__description {
  font-weight: 300;
  line-height: 1.5rem;
  font-size: 1.0625rem;
  padding: 0 1rem;
  text-align: center;
}

.section-services .service-container .services__actions {
  display: flex;
  align-items: center;

  justify-content: center;
  gap: 1rem;
}

/* ================================================================== */
/* ======================= HOME BANNER SECTION ====================== */
/* ================================================================== */
.section-banner {
  background: var(--accent-color-400) url("") no-repeat center center fixed;
  background-size: cover;
  min-height: 40rem;
  color: var(--primary-color);
}

.banner__container {
  max-width: 27.5rem;
  min-height: 40rem;
  display: flex;
  justify-content: center;
  flex-direction: column;
  margin: 0 auto;
  text-align: center;
}
.banner__title {
  font-family: var(--Averes-Title-font);
  color: var(--primary-color);
  text-transform: uppercase;
  font-size: 2.5rem;
  font-weight: 400;
}
.banner__description {
  font-weight: 300;
  line-height: 1.5rem;
  font-size: 1.0625rem;
}

/* ================================================================== */
/* ========================== MENU SECTION ========================== */
/* ================================================================== */
.menu__container {
  max-width: 32rem;
  min-height: 43.75rem;
  display: flex;
  justify-content: center;
  flex-direction: column;
  margin: 0 auto;
  text-align: center;
}
.menu__title {
  font: 2.5rem var(--Averes-Title-font);
  line-height: 2.5rem;
  margin: 0;
}
.menu__description {
  margin-top: 1.5rem;
  margin-bottom: 3.5rem;
  color: var(--transparent-black-color);
  font: var(--Averes-Title-font);
  text-transform: capitalize;
}
.menu__actions {
  display: flex;
  /* flex-direction: column; */
  justify-content: center;
  align-items: center;
  gap: 1rem;
}
.menu__actions a {
  flex: 1;
  max-width: 6rem;
}

/* ================================================================== */
/* ========================== VIDEO SECTION ========================= */
/* ================================================================== */
.section-video {
  height: 44rem;
  background: var(--accent-color-400);
  position: relative;
}
.section-video_overlayBG {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--accent-color-400);
  opacity: 0.3;
}
.section-video > * {
  cursor: pointer;
}

.video__container {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.video__playBtn-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  background: rgba(135, 105, 79, 0.5);
  border: 1px solid var(--primary-color);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease-in-out;
}
.section-video:hover .video__playBtn-container {
  background: rgba(43, 51, 63, 0.7);
}
.video__playBtn {
  fill: #fff;
  height: 3rem;
  width: auto;
}

.video__overlay {
  width: 100%;
  /* color: #fff; */
  color: var(--darkest-color);
  text-align: center;
  position: absolute;
  bottom: 4rem;
  left: 50%;
  transform: translateX(-50%);
}
.video__text {
  font: 2.75rem var(--Averes-Title-font);
  line-height: 3.5rem;
  filter: drop-shadow(0 1px 2px rgb(0 0 0 / 0.1))
    drop-shadow(0 1px 1px rgb(0 0 0 / 0.06));
}
.video__text span {
  font: 3.75rem var(--Halimun-font);
  line-height: 3.5rem;
  display: block;
  filter: drop-shadow(0 1px 2px rgb(0 0 0 / 0.1))
    drop-shadow(0 1px 1px rgb(0 0 0 / 0.06));
}

/* ================================================================== */
/* ========================== STORY SECTION ========================= */
/* ================================================================== */
.section-story {
  background: #fff;
  padding: 6.25rem 4rem;
}

.section-story .story__title {
  text-align: center;
  font: 2.5rem var(--Averes-Title-font);
  line-height: 2.5rem;
  margin: 0;
}

.story__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 4rem;
  margin-top: 3.5rem;
  font: var(--Averes-Title-font);
  text-transform: capitalize;
}

.story__description-container {
  color: var(--transparent-black-color);
  flex-basis: 60%;
  font-weight: 300;
  font-size: 1.5rem;
  line-height: 1.875rem;
}

.story__img-container {
  flex-basis: 35%;
  min-width: 25rem;
  height: auto;
}
.story__img {
  width: 100%;
  display: block;
}

/* ================================================================== */
/* ======================== LOCATION SECTION ======================== */
/* ================================================================== */
.section-location {
  margin-top: 3.125rem;
}

.section-location .location__container {
  width: 85%;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;

  justify-content: center;
  align-items: center;
  gap: 5.5rem;
}

.section-location .location {
  max-width: 42.5rem;
  min-width: 25rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1.25rem;
  background: #fff;
  text-align: center;
  padding: 4.375rem 0;
  transition: all 0.3s ease-in-out;
}

.section-location .location:hover {
  transform: translateY(-0.5rem);
}

.section-location .location .location__icon {
  fill: var(--darkest-color);
  width: 3.75rem;
  height: 3.75rem;
}

.section-location .location .location__title {
  font: 2.25rem var(--Averes-Title-font);
  color: var(--accent-color-300);
  text-transform: uppercase;
  margin: 0;
}
.section-location .location .location__address {
  color: var(--transparent-black-color);
  font-size: 1.125rem;
  line-height: 1.5rem;
  font-weight: 400;
  font-style: normal;
  max-width: 18rem;
}
.section-location .location .location__phone {
  font: 1.375rem var(--Averes-Title-font);
  color: #000000;
  margin: 0;
}

/* ================================================================== */
/* ========================= FOOTER SECTION ========================= */
/* ================================================================== */
.section-footer {
    padding: 0.25rem 0 1.125rem 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1.25rem;
    margin-top: 6.25rem;
}

.footer__logo {
  width: 9.375rem;
}
.footer__logo img {
  max-width: 100%;
}
.footer__copyright {
  text-align: center;
  margin: 0;
  font-size: 12px;
}
/*! ================================================================== */
/*! ========================= ABOUT SECTION ========================== */
/*! ================================================================== */
.section-about__hero {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.section-about__hero__text {
  flex: 0.8;
}
.section-about__hero__text__title {
  font: 1.375rem var(--Averes-Title-font);
  color: var(--transparent-black-color);
}
.section-about__hero__text__title span {
  display: block;
  /* max-width: min-content; */
  line-height: 1.3;
  font: 2.2rem var(--Halimun-font);
  margin: 1.5rem 0 0 0;
}
.section-about__hero__text__description {
  max-width: 90%;
  color: var(--transparent-black-color);
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.5rem;
  margin-top: 2rem;
}
.section-about__hero__image {
  flex: 0.5;
}
.section-about__hero__image__img {
  display: block;
  max-width: 100%;
  margin: auto;
  width: 100%;
}

/* ========================= ABOUT SECTION ============================ */
.section-about {
  padding: 6.25rem 0;
  background-color: #fff;
}
.section-about__container {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  grid-template-rows: repeat(2, 1fr);
  justify-content: start;
  align-items: start;
  column-gap: 4rem;
  row-gap: 8rem;
}

.about__content-1 {
  grid-column: 4 / -1;
  grid-row: 1 / 2;
}

.about__content-2 {
  grid-column: 1 / 5;
  grid-row: 2 / -1;
}
.about__title {
  margin: 0 0 1.5rem 0;
  font: 1.375rem var(--Averes-Title-font);
  color: var(--transparent-black-color);
}
.about__subtitle {
  margin: 0;
  font: 2.2rem var(--Halimun-font);
}
.about__description {
  color: var(--transparent-black-color);
  line-height: 1.5rem;
  font-weight: 300;
}
.about__img {
  max-width: 100%;
  display: block;
}
.about__img-1 {
  grid-column: 1 / 4;
  grid-row: 1 / 2;
}
.about__img-2 {
  grid-column: 5 / -1;
  grid-row: 2 / -1;
}

/* ========================= TEAM SECTION ============================ */
.section-team {
  padding: 6.25rem 0;
}
.team__title {
  text-align: center;
  font: 1.375rem var(--Averes-Title-font);
  color: var(--transparent-black-color);
  margin: 0;
}

.team__container {
  margin-top: 3.125rem;
  display: grid;
  grid-template-columns: repeat(5, minmax(16rem, 1fr));
  justify-items: center;
  align-items: center;
  text-align: center;
  row-gap: 3.125rem;
  column-gap: 1rem;
}

.team__member {
  transition: all 0.3s ease-in-out;
}
.team__member:hover {
  transform: translateY(-0.5rem);
}
.team__img {
  width: 9.375rem;
  height: 9.375rem;
  border-radius: 50%;
  object-fit: cover;
}
.team__name {
  font: 600 1.375rem var(--Averes-Title-font);
}
.team__position {
  /* max-width: fit-content; */
}

/*! ================================================================== */
/*! ======================== CONTACT SECTION ========================= */
/*! ================================================================== */
.section-contact__hero {
  margin: 6.25rem auto 5rem;
}
.contact__hero__heading-main {
  font: 2.5rem var(--Averes-Title-font);
  color: var(--transparent-black-color);
  margin: 0;
}
.contact__hero__heading-secondary {
  font: 3.75rem var(--Halimun-font);
  margin: 1rem 0 0 0;
}

.section-contact {
  margin-top: 6.25rem;
  padding: 6.25rem 0;
  background: #fff;
  text-align: center;
}
.contact__main-heading {
  font: 1.125rem var(--Averes-Title-font);
  color: var(--transparent-black-color);
  margin-bottom: 1.875rem;
}
.contact__secondary-heading {
  font: 1.625rem var(--Averes-Title-font);
  /* margin: 1.875rem; */
}
.contact__form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.875rem;
  margin-top: 1.875rem;
  width: 50%;
  margin: 0 auto;
  justify-content: center;
  align-items: center;
}
.contact__input,
.contact__textarea {
  min-width: 14rem;
  height: 2.5rem;
  border: 1px solid var(--accent-color-300);
  padding: 0.3125rem 0.625rem;
  font-size: 1.125rem;
  font-weight: 400;
  outline: none;
  color: var(--transparent-black-color);
}

.contact__textarea {
  grid-column: 1/-1;
  min-height: 6.25rem;
  resize: vertical;
}

.contact__button {
  grid-column: 1/-1;
  max-width: max-content;
  margin: 0 auto;
}
