/*
 * Custom CSS
 */

:root {
  --bs-body-bg: #efebe5;
  --site-navbar-bg: #623e2a;
  --site-brown: #623e2a;
}

.site-navbar {
  background-color: var(--site-navbar-bg);
}

.hero-section {
  position: relative;
  min-height: calc(100vh - 56px);
  background-image:
    /* linear-gradient(rgba(45, 31, 23, 0.28), rgba(45, 31, 23, 0.38)), */
    url("images/home-bg.jpg");
  background-position: center;
  background-size: cover;
  overflow: hidden;
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(98, 62, 42, 0.18);
}

.hero-kicker {
  font-size: 1.25rem;
  letter-spacing: 0.45rem;
  opacity: 0.65;
}

.hero-title {
  font-size: 4rem;
  max-width: 14ch;
  line-height: 1.04;
  opacity: 0.5;
}

.hero-button {
  color: var(--site-brown);
  letter-spacing: 0.22rem;
  border: 0;
  border-radius: 0;
  /* opacity: 0.65; */
}

.hero-button:hover,
.hero-button:focus {
  color: #fff;
  background-color: var(--site-brown);
}

.retreat-section {
  background-color: var(--bs-body-bg);
}

.retreat-heading {
  /* max-width: 1060px; */
  font-size: 3rem;
  font-weight: 400;
  line-height: 1.22;
}

.retreat-image img {
  width: 100%;
  aspect-ratio: 2.5 / 1;
  object-fit: cover;
}

.gallery-thumbnail {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.retreat-details {
  /* max-width: 960px; */
  color: #26302c;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  line-height: 1.38;
  letter-spacing: 0.55rem;
}

.property-features {
  position: relative;
  min-height: 720px;
  background-image:
    linear-gradient(rgba(98, 62, 42, 0.48), rgba(98, 62, 42, 0.48)),
    url("images/yurt-2.jpg");
  background-position: center;
  background-size: cover;
  display: flex;
  align-items: center;
}

.feature-item {
  min-height: 365px;
  gap: 4.5rem;
  padding: 3rem 2rem;
  border: 1px solid rgba(255, 255, 255, 0.82);
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 8.5rem;
  height: 8.5rem;
  color: #fff;
  font-size: 7.5rem;
  line-height: 1;
}

.feature-text {
  max-width: 360px;
  color: #fff;
  font-size: 1.7rem;
  line-height: 1.35;
}

.site-footer {
  background-color: #91713c;
  color: rgba(255, 255, 255, 0.68);
}

.footer-nav .nav-link {
  color: rgba(255, 255, 255, 0.66);
  font-size: 1.05rem;
  font-weight: 700;
}

.footer-nav .nav-link:hover,
.footer-nav .nav-link:focus {
  color: #fff;
}

.footer-divider {
  height: 1px;
  background-color: rgba(255, 255, 255, 0.16);
}

.footer-copy {
  color: rgba(255, 255, 255, 0.66);
  font-size: 1.05rem;
  font-weight: 700;
}

.buying-border {
  --bs-border-color: var(--site-brown);
}

.guest-quote {
  color: var(--site-brown);
}

@media (max-width: 1199.98px) {
  .hero-title {
    font-size: 4rem;
  }

  .retreat-heading {
    font-size: 2.5rem;
  }

  .retreat-details {
    font-size: 1.15rem;
    letter-spacing: 0.38rem;
  }
}

@media (max-width: 991.98px) {
  .hero-section {
    min-height: 760px;
  }

  .hero-title {
    font-size: 3.5rem;
  }

  .retreat-heading {
    font-size: 2rem;
  }

  .retreat-details {
    font-size: 0.95rem;
    letter-spacing: 0.24rem;
  }

  .property-features {
    min-height: auto;
  }

  .feature-item {
    min-height: auto;
    gap: 2rem;
    padding: 2.25rem;
  }

  .feature-icon {
    width: 5rem;
    height: 5rem;
    font-size: 4.5rem;
  }

  .feature-text {
    max-width: none;
    font-size: 1.35rem;
  }
}

@media (max-width: 575.98px) {
  .hero-section {
    min-height: 680px;
  }

  .hero-kicker {
    font-size: 0.78rem;
    letter-spacing: 0.2rem;
  }

  .hero-title {
    font-size: 2.8rem;
    max-width: 11ch;
  }

  .hero-button {
    width: 70%;
    letter-spacing: 0.14rem;
  }

  .retreat-heading {
    font-size: 1.45rem;
  }

  .retreat-image img {
    aspect-ratio: 1.45 / 1;
  }

  .retreat-details {
    font-size: 0.78rem;
    letter-spacing: 0.12rem;
  }

  .feature-item {
    align-items: flex-start;
    min-height: auto;
    gap: 1.5rem;
    padding: 2rem 1.25rem;
  }

  .feature-icon {
    width: 4rem;
    height: 4rem;
    font-size: 3.5rem;
  }

  .feature-text {
    max-width: none;
    font-size: 1.1rem;
  }
}
