.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-areas: "left right";
  justify-items: center;
  align-items: center;
  padding-left: 13rem;
  padding-right: 13rem;
  gap: 5rem;
}

.about-text {
  grid-area: left;
  display: flex;
  flex-direction: column;
  justify-content: left;
  align-items: flex-start;
}

.about-text h2 {
  gap: 1rem;
  font-family: var(--main-font);
  font-size: clamp(1.8rem, calc(3vw + 0.2rem), 2.5rem);
}

.about-text p {
  margin: 0;
  padding: 1rem 0;
  font-family: var(--secondary-font);
  font-size: clamp(1rem, calc(3vw + 0.2rem), 1.3rem);
  align-self: flex-start;
  letter-spacing: var(--main-font-spacing);
  text-align: left;
}

.about-photo {
  grid-area: right;
  border-radius: 2rem;
}
.about-photo {
  width: 550px;
}

/* Desktop container utility class */
.content.about {
  margin-left: auto;
  margin-right: auto;
  padding-top: 10rem;
  padding-bottom: 10rem;
}

/* 2xl */
@media (max-width: 1536px) {
  /* .content.about {
    max-width: 1280px;
  } */
  .about {
    padding: 0;
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

/* xl */
@media (max-width: 1280px) {
  /* .content.about {
    max-width: 1024px;
  } */
  .about {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .book-btn-white {
    align-self: center;
  }
  .about-photo {
    width: 400px;
  }
  .about-text h2 {
    align-self: center;
  }
}

/* lg */
@media (max-width: 1024px) {
  /* .content.about {
    max-width: 768px;
  } */
}

/* md */
@media (max-width: 768px) {
  /* .content.about {
    max-width: 640px;
  } */
}

/* sm */
@media (max-width: 640px) {
  /* .content.about {
    max-width: 475px;
  } */
  .about-text {
    padding-left: 0;
    padding-right: 0;
  }
}

/* xs */
@media (max-width: 475px) {
  .content.about {
    width: 100%;
  }
  .about-photo {
    width: 300px;
  }
}

.info1 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-areas: "left right";
  padding-left: 13rem;
  padding-right: 13rem;
  gap: 5rem;
}

.info1-text {
  grid-area: right;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.info1-text h3 {
  font-family: var(--main-font);
  font-size: clamp(1.8rem, calc(3vw + 0.2rem), 2.5rem);
}

.info1-text p {
  margin: 0;
  padding: 1rem 0;
  font-family: var(--secondary-font);
  font-size: clamp(1.1rem, calc(3vw + 0.2rem), 1.3rem);
  letter-spacing: var(--main-font-spacing);
}

.info1-photo {
  grid-area: left;
  border-radius: 2rem;
  width: 700px;
}

.info2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-areas: "left right";
  padding-left: 13rem;
  padding-right: 13rem;
  gap: 5rem;
}

.info2-image-container {
  position: relative;
}

.info2-text {
  grid-area: left;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.info2-text h4 {
  font-family: var(--main-font);
  font-size: clamp(1.8rem, calc(3vw + 0.2rem), 2.5rem);
}

.info2-text p {
  margin: 0;
  padding: 1rem 0;
  font-family: var(--secondary-font);
  font-size: clamp(1.1rem, calc(3vw + 0.2rem), 1.3rem);
  letter-spacing: var(--main-font-spacing);
}

.info2-photo {
  grid-area: right;
  border-radius: 2rem;
  width: 700px;
}

/* Desktop container utility class */
.content.info1 {
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 10rem;
}

/* 2xl */
@media (max-width: 1536px) {
  /* .content.info1 {
    max-width: 1280px;
  } */
  .info1 {
    padding: 0;
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .info1-photo {
    width: 600px;
  }
}

/* xl */
@media (max-width: 1280px) {
  /* .content.info1 {
    max-width: 1024px;
  } */
  .info1 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0;
  }
  .info1-text {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

/* lg */
@media (max-width: 1024px) {
  /* .content.info1 {
    max-width: 768px;
  } */
}

/* md */
@media (max-width: 768px) {
  /* .content.info1 {
    max-width: 640px;
  } */
}

/* sm */
@media (max-width: 640px) {
  /* .content.info1 {
    max-width: 475px;
  } */
  .info1-photo {
    width: 500px;
  }
}

/* xs */
@media (max-width: 475px) {
  .content.info1 {
    width: 100%;
  }
  .info1-photo {
    width: 350px;
  }
  .info1-text h3 {
    text-align: center;
  }
}

/* Desktop container utility class */
.content.info2 {
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 10rem;
}

/* 2xl */
@media (max-width: 1536px) {
  /* .content.info2 {
    max-width: 1280px;
  } */
  .info2 {
    padding: 0;
    padding-left: 3rem;
    padding-right: 3rem;
  }
  .info2-photo {
    width: 600px;
  }
}

/* xl */
@media (max-width: 1280px) {
  /* .content.info2 {
    max-width: 1024px;
  } */
  .info2 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0;
  }
  .info2-text p {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

/* lg */
@media (max-width: 1024px) {
  /* .content.info2 {
    max-width: 768px;
  } */
}

/* md */
@media (max-width: 768px) {
  /* .content.info2 {
    max-width: 640px;
  } */
}

/* sm */
@media (max-width: 640px) {
  /* .content.info2 {
    max-width: 475px;
  } */
  .info2-photo {
    width: 500px;
  }
}

/* xs */
@media (max-width: 475px) {
  .content.info2 {
    width: 100%;
  }
  .info2-photo {
    width: 350px;
  }
  .info2-text h4 {
    text-align: center;
  }
}
.rental-options {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  padding-left: 30rem;
  padding-right: 30rem;
}

.rental-title {
  font-size: clamp(1.8rem, calc(3vw + 0.2rem), 3rem);
  font-family: var(--main-font);
  text-align: center;
  padding-bottom: 2rem;
}

.rental-subtitle {
  font-size: clamp(1.1rem, calc(3vw + 0.2rem), 1.3rem);
  font-family: var(--secondary-font);
  text-align: center;
  padding-bottom: 2rem;
  letter-spacing: var(--main-font-spacing);
}
.rental {
  border-radius: 3rem;
}

.option-container {
  position: relative;
}

.option-img {
  width: 29.6875rem;
}

.option-container:hover .book-now-btn2 {
  opacity: 1;
  transform: translateY(-0.2rem);
}
.option-container:hover .option-text {
  transform: translateY(-1.8rem);
}

.option-text-wrapper {
  transition: all 0.3s ease;
  position: relative;
}

.option-text {
  position: absolute;
  bottom: 30px;
  left: 40px;
  color: white;
  font-family: var(--secondary-font);
  font-size: clamp(1.1rem, calc(3vw + 0.2rem), 1.5rem);
  transition: all 0.3s ease;
}

.option-container img {
  border-radius: 3rem;
}

.book-now-btn2 {
  position: absolute;
  bottom: 20px;
  left: 38px;
  padding: 0.5rem 1rem;
  width: 10rem;
  border-radius: 1rem;
  background-color: rgb(219, 219, 219);
  border-style: none;
  color: rgb(0, 0, 0);
  font-family: var(--main-font);
  cursor: pointer;
  opacity: 0;
  transition: all 0.3s ease;
  text-decoration: none;
  text-align: center;
}

.book-now-btn {
  padding: 0.5rem 1rem;
  height: 40px;
  border-radius: 0.5rem;
  background-color: transparent;
  color: rgb(0, 0, 0);
  font-family: var(--main-font);
  border: 1px solid rgb(191, 191, 191);
  transition: all 0.3s ease;
  align-self: center;
  font-size: clamp(1.1rem, calc(2vw + 0.2rem), 1rem);
}

.book-now-btn:hover {
  color: #ffffff;
  background-color: rgb(191, 191, 191);
}

/* Desktop container utility class */
.content.rental-options {
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 10rem;
}

/* 2xl */
@media (max-width: 1536px) {
  /* .content.rental-options {
    max-width: 1280px;
  } */
  .rental-options {
    padding: 0;
    gap: 1rem;
  }
  .option-img {
    width: 400px;
  }
}

/* xl */
@media (max-width: 1280px) {
  /* .content.rental-options {
    max-width: 1024px;
  } */
  .rental-options {
    flex-direction: column;
  }
}

/* lg */
@media (max-width: 1024px) {
  /* .content.rental-options {
    max-width: 768px;
  } */
}

/* md */
@media (max-width: 768px) {
  /* .content.rental-options {
    max-width: 640px;
  } */
}

/* sm */
@media (max-width: 640px) {
  /* .content.rental-options {
    max-width: 475px;
  } */
  .option-img {
    width: 350px;
  }
}

/* xs */
@media (max-width: 475px) {
  .content.rental-options {
    width: 100%;
  }
}

.review-title {
  display: flex;
  text-align: center;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: var(--main-font);
  font-size: clamp(1.8rem, calc(3vw + 0.2rem), 3rem);
  padding-bottom: 1.5rem;
}

.review-counter {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  position: relative;
  padding-bottom: 1rem;
}

.review-counter-text {
  font-size: clamp(1.1rem, calc(3vw + 0.2rem), 1.5rem);
  font-family: var(--secondary-font);
  position: absolute;
  margin-left: 22rem;
}

.testimonial {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 2px solid rgb(191, 191, 191);
  color: black;
  width: 70%;
  height: 25rem;
  border-radius: 2rem;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.testimonial-user-wrapper {
  display: flex;
  align-self: start;
  padding-top: 0.5rem;
  padding-left: 5rem;
  padding-right: 5rem;
  gap: 0.5rem;
}

.rating {
  padding-bottom: 0.5rem;
}

.testimonial-user-wrapper-info {
  display: flex;
  flex-direction: column;
  align-self: center;
  text-align: center;
}

.user-name {
  text-align: center;
  align-self: center;
  font-family: var(--secondary-font);
}

.review-date {
  font-family: var(--secondary-font);
  text-align: center;
  align-self: center;
}

.testimonial-text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-left: 5rem;
  padding-right: 5rem;
}
.testimonial h5 {
  font-size: clamp(1.8rem, calc(3vw + 0.2rem), 2.5rem);
  font-family: var(--main-font);
  justify-self: center;
}

.testimonial p {
  font-family: var(--secondary-font);
  font-size: clamp(1.1rem, calc(3vw + 0.2rem), 1.3rem);
  letter-spacing: var(--main-font-spacing);
}

.arrow-wrapper {
  display: flex;
  flex-direction: row;
  gap: 10rem;
}

/* Desktop container utility class */
.content.testimonial {
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 10rem;
}

/* 2xl */
@media (max-width: 1536px) {
  /* .content.testimonial {
    max-width: 1280px;
  } */
}

/* xl */
@media (max-width: 1280px) {
  /* .content.testimonial {
    max-width: 1024px;
  } */
}

/* lg */
@media (max-width: 1024px) {
  /* .content.testimonial {
    max-width: 768px;
  } */
  .testimonial-user-wrapper {
    align-self: center;
  }
  .arrow-wrapper {
    position: absolute;
    bottom: 2rem;
    gap: 14rem;
  }
  .testimonial-text-wrapper {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

/* md */
@media (max-width: 768px) {
  /* .content.testimonial {
    max-width: 640px;
  } */
  .testimonial {
    width: 30rem;
    height: 35rem;
    padding: 0;
  }
}

/* sm */
@media (max-width: 640px) {
  /* .content.testimonial {
    max-width: 475px;
  } */
}

/* xs */
@media (max-width: 475px) {
  .content.testimonial {
    width: 100%;
  }
  .arrow-wrapper {
    bottom: 7rem;
  }

  .review-counter-text {
    margin-left: 18rem;
  }
}

.contact {
  display: flex;
  /* grid-template-columns: 1fr 1fr; */
  gap: 1rem;
  align-items: center;
  justify-content: center;
  padding-bottom: 8rem;
  padding-left: 15rem;
  padding-right: 15rem;
}

.contact-form-container {
  /* grid-column: 2; */
  font-family: var(--secondary-font);
  line-height: 1.55em;
}

.contact-form {
  background: white;
  padding: 32px;
  border-radius: 0.5rem;
  border: 2px solid rgb(191, 191, 191);
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 400;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 0.0625rem solid #ddd;
  border-radius: 0.25rem;
  font-size: 16px;
}

.cta-button-contact {
  padding: 0.5rem 0.5rem;
  height: 40px;
  border-radius: 0.5rem;
  background-color: transparent;
  color: rgb(0, 0, 0);
  font-family: var(--main-font);
  border: 1px solid rgb(191, 191, 191);
  transition: all 0.3s ease;
  align-self: start;
  text-decoration: none;
  font-size: clamp(0.8rem, calc(2vw + 0.2rem), 1rem);
  letter-spacing: var(--main-font-spacing);
}

.cta-button-contact:hover {
  background-color: rgb(191, 191, 191);
  color: rgb(255, 255, 255);
}

.content-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: black;
  position: relative;
}

.content-left h5 {
  font-size: clamp(2.5rem, calc(3vw + 1rem), 3rem);
  font-family: var(--main-font);
  padding: 2rem 0rem;
  margin: 0;
}

.content-left p {
  position: relative;
  font-family: var(--secondary-font);
  letter-spacing: var(--main-font-spacing);
  font-size: clamp(1rem, calc(3vw + 1rem), 1.5rem);
  margin: 0;
  padding: 0;
  text-align: left;
}

.features {
  list-style: none;
  padding: 0;
  margin-bottom: 48px;
}

.features li {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
  font-size: 17.6px;
}

.features li::before {
  content: "✓";
  color: #3182ce;
  margin-right: 16px;
}

/* Desktop container utility class */
.content.contact {
  margin-left: auto;
  margin-right: auto;
}

/* 2xl */
@media (max-width: 1536px) {
  /* .content.contact {
    max-width: 1280px;
  } */
  .content.contact {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

/* xl */
@media (max-width: 1280px) {
  /* .content.contact {
    max-width: 1024px;
  } */
}

/* lg */
@media (max-width: 1024px) {
  /* .content.contact {
    max-width: 768px;
  } */
}

/* md */
@media (max-width: 768px) {
  /* .content.contact {
    max-width: 640px;
  } */
  .contact {
    display: flex;
    flex-direction: column;
    gap: 0;
  }
  .contact-form-container {
    width: 100%;
  }
  .lottie-animation-loop {
    display: none;
  }
  .content-left {
    text-align: center;
  }
}

/* sm */
@media (max-width: 640px) {
  /* .content.contact {
    max-width: 475px;
  } */
}

/* xs */
@media (max-width: 475px) {
  .content.contact {
    width: 100%;
  }
}

.bottom {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.bottom-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.bottom::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.9) 0%,
    rgba(255, 255, 255, 0.4) 30%,
    rgba(255, 255, 255, 0) 70%
  );
  pointer-events: none;
}

.bottom-text {
  font-size: clamp(1.8rem, calc(3vw + 0.2rem), 3.5rem);
  font-family: var(--main-font);
  text-align: center;
  position: absolute;
  margin-top: 3rem;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: rgb(255, 255, 255);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
  z-index: 1;
}

/* Desktop container utility class */
.content.bottom {
  margin-left: auto;
  margin-right: auto;
}

/* 2xl */
@media (max-width: 1536px) {
  /* .content.bottom {
    max-width: 1280px;
  } */
}

/* xl */
@media (max-width: 1280px) {
  /* .content.bottom {
    max-width: 1024px;
  } */
}

/* lg */
@media (max-width: 1024px) {
  /* .content.bottom {
    max-width: 768px;
  } */
}

/* md */
@media (max-width: 768px) {
  /* .content.bottom {
    max-width: 640px;
  } */
  #hostaway-booking-widget {
    margin-top: 0 !important;
    top: 50% !important;
    left: 50% !important;
  }
  .bottom-text {
    display: none;
  }
}

/* sm */
@media (max-width: 640px) {
  /* .content.bottom {
    max-width: 475px;
  } */
}

/* xs */
@media (max-width: 475px) {
  .content.bottom {
    width: 100%;
  }
}

.footer {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-areas: "social company links";
  padding-left: 10rem;
  padding-right: 10rem;
  padding-top: 5rem;
  padding-bottom: 5rem;
  font-family: var(--secondary-font);
  align-items: center;
  background-color: rgb(43, 42, 42);
  color: rgb(230, 230, 230);
  gap: 1rem;
}

.footer-company-container {
  grid-area: company;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  height: 200px;
  align-items: center;
}

.footer-book-btn {
  padding: 0.5rem 1rem;
  height: 40px;
  border-radius: 0.5rem;
  /* background-color: transparent;
  color: rgb(255, 255, 255); */
  background-color: rgb(252, 241, 224);
  color: rgb(0, 0, 0);
  font-family: var(--main-font);
  border: 1px solid rgb(191, 191, 191);
  transition: all 0.3s ease;
  text-decoration: none;
  font-size: clamp(1.1rem, calc(2vw + 0.2rem), 1rem);
}

.footer-book-btn:hover {
  /* background-color: rgb(255, 255, 255);
  color: black; */
  transform: scale(0.9);
}

.footer-logo {
  width: 175px;
  object-fit: contain;
  align-self: left;
}

.footer-company-text {
  font-size: clamp(1.1rem, calc(3vw + 0.2rem), 1rem);
  text-align: center;
}

.footer-links-container {
  grid-area: links;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 1rem;
  height: 200px;
}

.footer-links-title {
  font-size: clamp(1.1rem, calc(3vw + 0.2rem), 1.8rem);
  text-align: center;
}

.footer-links {
  display: flex;
  flex-direction: column;
  font-size: clamp(1.1rem, calc(3vw + 0.2rem), 1rem);
  gap: 0.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: center;
}

.contact-container {
  grid-area: contact;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  height: 200px;
}

.contact-title {
  text-align: left;
  /* align-self: center; */
  font-size: clamp(1.1rem, calc(3vw + 0.2rem), 1.8rem);
}

.email-input {
  width: 200px;
  padding: 0.75rem;
  margin-bottom: 1rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 1rem;
  box-sizing: border-box;
}

.email-input:focus {
  outline: none;
  border-color: #0324fc;
}

.email-form {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact-btn {
  padding: 0.5rem 1rem;
  width: 200px;
  border-radius: 0.5rem;
  font-size: clamp(1.1rem, calc(3vw + 0.1rem), 1.3rem);
  border: 2px solid white;
  background-color: transparent;
  color: white;
  font-family: var(--main-font);
  transition: all 0.3s ease;
}

.contact-btn:hover {
  background-color: white;
  color: black;
}

.social-container {
  grid-area: social;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  height: 200px;
}

.social-title {
  font-size: clamp(1.1rem, calc(3vw + 0.2rem), 1.8rem);
  text-align: left;
}

.social-links {
  display: flex;
  flex-direction: row;
  gap: 1rem;
}

.social-links a {
  list-style: none;
  text-decoration: none;
}

.content.contact-page-top {
  position: relative;
  min-height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.content.contact-page-top::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.9)),
    url("/assets/images/contact-photo.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: brightness(0.9);
  z-index: -1;
}

.contact-page-top {
  text-align: center;
  color: white;
  z-index: 1;
  font-family: var(--main-font);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
}

.contact-page-top h1 {
  font-size: 3rem;
  margin-bottom: 2rem;
}

/* Desktop container utility class */
.contact-page-top {
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 10rem;
}

/* 2xl */
@media (max-width: 1536px) {
  /* .contact-page-top {
    max-width: 1280px;
  } */
}

/* xl */
@media (max-width: 1280px) {
  /* .contact-page-top {
    max-width: 1024px;
  } */
}

/* lg */
@media (max-width: 1024px) {
  /* .contact-page-top {
    max-width: 768px;
  } */
}

/* md */
@media (max-width: 768px) {
  /* .contact-page-top {
    max-width: 640px;
  } */
}

/* sm */
@media (max-width: 640px) {
  /* .contact-page-top {
    max-width: 475px;
  } */
}

/* xs */
@media (max-width: 475px) {
  .contact-page-top {
    width: 100%;
  }
}

/* Desktop container utility class */
.content.footer {
  margin-left: auto;
  margin-right: auto;
}

/* 2xl */
@media (max-width: 1536px) {
  /* .content.footer {
    max-width: 1280px;
  } */
}

/* xl */
@media (max-width: 1280px) {
  /* .content.footer {
    max-width: 1024px;
  } */
  .content.footer {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

/* lg */
@media (max-width: 1024px) {
  /* .content.footer {
    max-width: 768px;
  } */
}

/* md */
@media (max-width: 768px) {
  /* .content.footer {
    max-width: 640px;
  } */
  .email-input {
    width: 12rem;
  }
  .contact-btn {
    width: 150px;
  }
}

/* sm */
@media (max-width: 640px) {
  /* .content.footer {
    max-width: 475px;
  } */
  .footer {
    display: flex;
    flex-direction: column;
  }
  .email-input {
    width: 8rem;
  }
  .footer-links-container {
    display: none;
  }
}

/* xs */
@media (max-width: 475px) {
  .content.footer {
    width: 100%;
    padding-left: 0rem;
    padding-right: 0rem;
  }
}

.content.stays-page-top {
  position: relative;
  min-height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.content.stays-page-top::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.9)),
    url("/assets/images/stays-cover.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: brightness(0.9);
  z-index: -1;
}

.stays-page-top {
  text-align: center;
  color: white;
  z-index: 1;
  font-family: var(--main-font);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
}

.stays-page-top h1 {
  font-size: 3rem;
  margin-bottom: 2rem;
}

.stays {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  padding-top: 5rem;
  padding-bottom: 3rem;
  padding-left: 13rem;
  padding-right: 13rem;
}

.stay-info {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-areas: "left right";
  background-color: rgb(32, 35, 40);
  justify-items: center;
  align-items: center;
  color: white;
  font-family: var(--secondary-font);
  width: 500px;
  margin-left: 1rem;
  margin-right: 1rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
  border-bottom-left-radius: 2rem;
  border-bottom-right-radius: 2rem;
  position: relative;
}

.stay-info-left {
  grid-area: left;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
  width: 100%;
}

.stay-title {
  padding-left: 0.5rem;
  padding-bottom: 0.5rem;
  font-size: clamp(1rem, calc(3vw + 0.2rem), 1.3rem);
}

.stay-info-left img {
  padding-left: 0.5rem;
}

.stay.wildflower-willow,
.stay.cottage,
.stay.bluebonnet-belle {
  width: 100%;
}

.stay {
  display: flex;
  justify-content: center;
  align-items: center;
}

.learn-more-btn {
  border-radius: 1rem;
  font-family: var(--secondary-font);
  background-color: rgb(252, 241, 224);
  /* background-color: rgb(3, 55, 211); */
  color: rgb(0, 0, 0);
  border: none;
  width: 100px;
  height: 40px;
  position: absolute;
  bottom: 30px;
  right: 30px;
  transition: all 0.3s ease;
}
.learn-more-btn:hover {
  transform: scale(0.9);
  cursor: pointer;
}

.stay img {
  border-top-left-radius: 2rem;
  border-top-right-radius: 2rem;
  width: 500px;
}

.stay-info-left img {
  border-radius: 0;
  width: 130px;
}

.stay.cottage {
  display: flex;
  flex-direction: column;
}

.stay.bluebonnet-belle {
  display: flex;
  flex-direction: column;
}

.stay.wildflower-willow {
  display: flex;
  flex-direction: column;
}

.stay-info-title {
  font-size: 3rem;
  font-family: var(--main-font);
  text-align: center;
  padding-top: 5rem;
  padding-bottom: 3rem;
  scroll-margin-top: 100px;
}

.stay-info-container {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: stretch;
  padding-left: 13rem;
  padding-right: 13rem;
  gap: 5rem;
  grid-template-areas: "left right";
  padding-bottom: 5rem;
}

.stay-info-container2 {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: stretch;
  padding-left: 13rem;
  padding-right: 13rem;
  gap: 5rem;
  grid-template-areas: "left right";
  padding-bottom: 5rem;
}

.slider-container {
  grid-area: left;
}

.slider-container.cottage {
  grid-area: right;
}

.stay-info-text-content {
  grid-area: right;
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-family: var(--secondary-font);
  font-size: clamp(1rem, calc(3vw + 0.2rem), 1.6rem);
  align-self: center;
  letter-spacing: var(--main-font-spacing);
  text-align: left;
  gap: 1rem;
}

.stay-info-text-content2 {
  grid-area: left;
  display: flex;
  gap: 1rem;
  flex-direction: column;
  justify-content: center;
  font-family: var(--secondary-font);
  font-size: clamp(1rem, calc(3vw + 0.2rem), 1.6rem);
  align-self: center;
  letter-spacing: var(--main-font-spacing);
  text-align: left;
}

.slider-container {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  height: 100%;
}

.slider {
  width: 100%;
  max-width: 600px;
  height: 100%;
  /* margin: 20px; */
  text-align: center;
  border-radius: 2rem;
  overflow: hidden;
  position: relative;
}

.slides {
  display: flex;
  overflow-x: scroll;
  position: relative;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
}

.slide {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  width: 100%;
  height: 400px;
  scroll-snap-align: center;
  margin-right: 0px;
  box-sizing: border-box;
  transform-origin: center center;
  transform: scale(1);
}

.slide__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slide a {
  background: none;
  border: none;
}

a.slide__prev,
.slider::before {
  left: 5%;
}

a.slide__next,
.slider::after {
  right: 5%;
}

.slider::before,
.slider::after,
.slide__prev,
.slide__next {
  position: absolute;
  top: 48%;
  width: 40px;
  height: 40px;
  z-index: 2;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.slide__prev:hover,
.slide__next:hover {
  background: rgba(0, 0, 0, 0.5);
}

.slider::before,
.slider::after {
  content: "";
  z-index: 1;
  background: rgba(0, 0, 0, 0.3);
  pointer-events: none;
}

.slider__nav {
  box-sizing: border-box;
  position: absolute;
  bottom: 5%;
  left: 50%;
  width: 280px;
  margin-left: -140px;
  text-align: center;
  z-index: 2;
}

.slider__navlink {
  display: inline-block;
  height: 15px;
  width: 15px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.7);
  border: 2px solid rgba(0, 0, 0, 0.3);
  margin: 0 10px 0 10px;
  transition: all 0.3s ease;
}

.slider__navlink:hover {
  background-color: white;
  border-color: rgba(0, 0, 0, 0.5);
  transform: scale(1.1);
}

/* Desktop container utility class */
.content.stays {
  margin-left: auto;
  margin-right: auto;
}

/* 2xl */
@media (max-width: 1536px) {
  .content.stays {
    display: flex;
    flex-direction: column;
    padding-left: 0;
    padding-right: 0;
  }
  .stay-info-container,
  .stay-info-container2 {
    padding: 0;
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

/* xl */
@media (max-width: 1280px) {
  .stay-info-container,
  .stay-info-container2 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
}

/* lg */
@media (max-width: 1024px) {
}

/* md */
@media (max-width: 768px) {
}

/* sm */
@media (max-width: 640px) {
}

/* xs */
@media (max-width: 475px) {
  .content.stays {
    width: 100%;
  }
  .stay img {
    width: 300px;
  }
  .stay-info {
    width: 300px;
  }
  .stay-info-left img {
    width: 130px;
  }
}

.content.amenities-page-top {
  position: relative;
  min-height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.content.amenities-page-top::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.8)),
    url("/assets/images/amenities-cover.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  /* filter: brightness(0.9); */
  z-index: -1;
}

.amenities-page-top {
  text-align: center;
  color: white;
  z-index: 1;
  font-family: var(--main-font);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
}

.amenities-page-top h1 {
  font-size: 3rem;
  margin-bottom: 2rem;
}

.amenities {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding-left: 10rem;
  padding-right: 10rem;
  padding-top: 5rem;
}

.amenity-title {
  font-size: clamp(1.8rem, calc(3vw + 0.2rem), 3rem);
  font-family: var(--main-font);
  text-align: center;
  padding-bottom: 1rem;
}

.amenity-subtitle {
  font-size: clamp(1.1rem, calc(3vw + 0.2rem), 1.3rem);
  font-family: var(--secondary-font);
  text-align: center;
  padding-bottom: 1rem;
  letter-spacing: var(--main-font-spacing);
}

.amenity-list {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.amenity-wrapper {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  width: 280px;
  min-height: 320px;
  padding: 1.5rem;
  box-sizing: border-box;
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.6s ease-out;
}

.amenity-wrapper img {
  width: 60px;
  height: 60px;
  align-self: center;
  flex-shrink: 0;
}

.amenity-category {
  font-size: clamp(1rem, calc(3vw + 0.2rem), 1.3rem);
  font-family: var(--main-font);
  text-align: center;
}

.amenity-description {
  font-size: clamp(0.8rem, calc(3vw + 0.2rem), 1rem);
  font-family: var(--secondary-font);
  text-align: center;
  flex-shrink: 0;
  margin-bottom: 0.5rem;
  flex-grow: 1;
  align-items: center;
}

.slideInRight {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.slideInRight.animate {
  opacity: 1;
  transform: translateX(0);
}

/* For staggered delays, you can add these classes */
.slideInRight.delay-1 {
  transition-delay: 0.1s;
}
.slideInRight.delay-2 {
  transition-delay: 0.2s;
}
.slideInRight.delay-3 {
  transition-delay: 0.3s;
}
.slideInRight.delay-4 {
  transition-delay: 0.4s;
}
.slideInRight.delay-5 {
  transition-delay: 0.5s;
}
.slideInRight.delay-6 {
  transition-delay: 0.6s;
}
.slideInRight.delay-7 {
  transition-delay: 0.7s;
}

/* Desktop container utility class */
.content.amenities {
  margin-left: auto;
  margin-right: auto;
}

/* 2xl */
@media (max-width: 1536px) {
}

/* xl */
@media (max-width: 1280px) {
}

/* lg */
@media (max-width: 1024px) {
}

/* md */
@media (max-width: 768px) {
  .amenity-list {
    gap: 0;
  }
  .amenities {
    gap: 0;
  }
  .amenities {
    padding-left: 0rem;
    padding-right: 0rem;
    padding-top: 5rem;
  }
}

/* sm */
@media (max-width: 640px) {
}

/* xs */
@media (max-width: 475px) {
  .content.amenities {
    width: 100%;
  }
}

.content.explore-page-top {
  position: relative;
  min-height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.content.explore-page-top::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.9)),
    url("/assets/images/explore.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: brightness(0.9);
  z-index: -1;
}

.explore-page-top {
  text-align: center;
  color: white;
  z-index: 1;
  font-family: var(--main-font);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
}

.explore-page-top h1 {
  font-size: 3rem;
  margin-bottom: 2rem;
}

.explore-title {
  font-size: clamp(1.8rem, calc(3vw + 0.2rem), 3rem);
  font-family: var(--main-font);
  text-align: center;
  padding-top: 5rem;
  padding-bottom: 2rem;
}
.map-container {
  display: flex;
  max-width: 100%;
  margin-left: 20rem;
  margin-right: 20rem;
  padding-top: 5rem;
  padding-bottom: 10rem;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  min-height: 100vh;
}

.map-container svg {
  width: 100%;
  height: auto;
  display: block;
  border: 2px solid grey;
  border-radius: 2rem;
  padding: 3rem;
}

/* Style for interactive points */
.interest-point {
  cursor: pointer;
  transition: all 0.3s ease;
}

/* .interest-point:hover {
  fill: #eeff00 !important;
  stroke: #333;
  stroke-width: 2;
} */

/* Tooltip styles */
.tooltip {
  position: absolute;
  background: rgba(0, 0, 0, 0.9);
  color: white;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 14px;
  line-height: 1.4;
  max-width: 250px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  pointer-events: none;
  z-index: 1000;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease;
}

.tooltip.show {
  opacity: 1;
  transform: translateY(0);
}

.tooltip h3 {
  margin: 0 0 8px 0;
  font-size: 16px;
  color: #4caf50;
}

.tooltip p {
  margin: 0 0 6px 0;
}

.tooltip .distance {
  font-size: 12px;
  color: #ccc;
  margin-top: 8px;
}

/* Legend */
.legend {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.95);
  padding: 15px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  font-size: 12px;
}

.legend h4 {
  margin: 0 0 10px 0;
  font-size: 14px;
}

.legend-item {
  display: flex;
  align-items: center;
  margin-bottom: 5px;
}

.legend-color {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  margin-right: 8px;
}

.explore-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-areas: "left right";
  align-items: center;
  gap: 5rem;
  padding-left: 13rem;
  padding-right: 13rem;
  margin-bottom: 8rem;
}

.explore-photo1 {
  grid-area: left;
  width: 600px;
  border-radius: 2rem;
}

.explore-text1 p {
  grid-area: right;
  margin: 0;
  padding: 1rem 0;
  font-family: var(--secondary-font);
  font-size: clamp(1.1rem, calc(3vw + 0.2rem), 1.5rem);
  letter-spacing: var(--main-font-spacing);
}

.explore-text1 h1 {
  grid-area: right;
  margin: 0;
  font-family: var(--main-font);
  font-size: clamp(1.8rem, calc(3vw + 0.2rem), 2.5rem);
}

.explore-photo2 {
  grid-area: right;
  width: 600px;
  border-radius: 2rem;
}

.explore-text2 p {
  grid-area: left;
  margin: 0;
  padding: 1rem 0;
  font-family: var(--secondary-font);
  font-size: clamp(1.1rem, calc(3vw + 0.2rem), 1.5rem);
  letter-spacing: var(--main-font-spacing);
}

.explore-text2 h1 {
  grid-area: left;
  margin: 0;
  font-family: var(--main-font);
  font-size: clamp(1.8rem, calc(3vw + 0.2rem), 2.5rem);
}

/* Desktop container utility class */
.content.explore {
  margin-left: auto;
  margin-right: auto;
}

/* 2xl */
@media (max-width: 1536px) {
  .explore-photo {
    width: 475px;
  }
  .map-container {
    margin-left: 5rem;
    margin-right: 5rem;
  }
  .explore-info {
    padding-left: 5rem;
    padding-right: 5rem;
  }
}

/* xl */
@media (max-width: 1280px) {
  .explore-photo1,
  .explore-photo2 {
    padding-bottom: 1rem;
    width: 500px;
  }
  .explore-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 2rem;
  }
  .map-container {
    margin-left: 1rem;
    margin-right: 1rem;
  }
  .map-container svg {
    padding: 1rem;
  }
}

/* lg */
@media (max-width: 1024px) {
}

/* md */
@media (max-width: 768px) {
  .explore-info {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .map-container {
    margin-left: 0;
    margin-right: 0;
  }
  .map-container svg {
    padding: 0;
  }
}

/* sm */
@media (max-width: 640px) {
}

/* xs */
@media (max-width: 475px) {
  .content.explore {
    width: 100%;
  }
  .explore-photo1,
  .explore-photo2 {
    width: 370px;
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .explore-text1 p,
  .explore-text2 p {
    padding: 0;
  }
  .map-container {
    display: none;
  }
}
