@media screen and (min-width: 320px) and (max-width: 768px) {
.contact__item a {
  color: #1F1F1F;
  font-size: 18px;
}
}

.page-title.bg-dark-overlay.text-center {
  border-radius: 16px;
  border: 5px solid #CAA86B;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, -0.9); /* Soft shadow */
}

.btn.btn--lg.btn--color.btn--button {
  display: inline-block; /* Ensures flexibility in layout */
  background-color: #577652; /* Shared background color */
  color: #CAA86B; /* Text color from the second rule */
  padding: 5px 20px; /* Padding from the first rule */
  border-radius: 16px; /* Higher border-radius from the first rule */
  font-size: 18px; /* Shared font size */
  font-weight: bold; /* Shared font weight */
  text-align: center; /* Shared text alignment */
  text-decoration: none; /* Remove underline */
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 1.2); /* Soft shadow */
  transition: all 0.3s ease; /* Shared transition */
  z-index: 2; /* From the second rule */
  margin-left: auto; /* Center-align horizontally */
  margin-right: auto; /* Center-align horizontally */
  display: block; /* Full-width button to center in its container */
}

.mb-40 {
  font-family: "Barlow", sans-serif;
  font-weight: 700;
  font-size: 18px;
}

.nav__menu>li>a {
  font-family: "Barlow", sans-serif;
  font-weight: 700;
  color: #527351;
  font-size: 18px;
  padding: 0 17px;
  line-height: 95px;
  display: block;
  position: relative;
  cursor: pointer;
  z-index: 9999; /* Ensure it's above other content */
}

.text-center {
  margin-top: 0%;
}

.page-title.text-center {
  position: relative; /* Make it a positioned element */
  margin-top: 0%;
}

.page-title.text-center::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

  z-index: 1;
}

.page-title.text-center h1, 
.page-title.text-center p {
  position: relative; /* Ensure the text appears above the overlay */
  z-index: 2;
}

.page-title__subtitle {
  font-size: 18px;
  font-weight: 700;
  color: #F8F4E8;
  margin-bottom: 0;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2); /* Soft shadow */
}

.page-title.text-center, /* Main Headboard */
.footer {
  border-radius: 16px;
  border: 5px solid #CAA86B;
  z-index: 2;
}

.footer {
  background-image: url('img/footer/1.jpg');
  background-size: cover; /* Ensures the image stretches to cover the entire area */
  background-position: center; /* Keeps the image centered */
  background-repeat: no-repeat; /* Prevents the image from repeating */
}

.map {
  border-radius: 16px;
  margin-top: 10%;
  margin-bottom: 10%;
}

.contact__title {
  color: #7C7C7C;
  font-size: 34px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2); /* Soft shadow */
}

.footer {
  border-radius: 16px;
  border: 5px solid #CAA86B;
}

.footer {
  padding: 0% 0;
  /* Adjust the padding to control height */
  background-size: cover;
  /* Ensures the background image fits properly */
  background-repeat: no-repeat;
  background-position: center;
}

.footer__bottom {
  padding: 0% 0;
  /* Adjust padding for the bottom section */
}

.page-title__title {
  color: #F8F4E8;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 1.2); /* Soft shadow */
  -webkit-text-stroke: 2px #CAA86B;
}

/*-------------------------------------------------------*/
/* Hamburger Nav */
/*-------------------------------------------------------*/


@media (max-width: 1024px) {
  .nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 9999;
  }

  body {
    padding-top: 60px;
    /* Adjust this value to match the height of your nav */
  }
}

@media (min-width: 769px) {
  .nav {
    position: relative;
    /* Reset to default for desktop */
    z-index: 9999; /* Ensure it's above other content */
  }

  body {
    padding-top: 0;
    /* Remove padding for desktop */
  }
}

.nav__menu {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
  z-index: 9999; /* Ensure it's above other content */
}

.nav__menu>li {
  padding: 10px 0;
  /* Space between items */
  position: relative;
  /* Needed for pseudo-element positioning */
}

.nav__menu>li>a {
  color: #527351;
  text-decoration: none;
  font-family: "Barlow", sans-serif;
  font-weight: 700;
  font-size: 18px;
  display: block;
  padding-bottom: 5px;
  /* Add space between text and line */
}

.nav__menu>li::after {
  content: "";
  display: block;
  height: 1px;
  background-color: #527351;
  margin-top: 15px;
  width: 100%;
}

/* Adjust phone number alignment */
.nav__phone--mobile {
  text-align: center;
  /* Center-align the phone number */
  margin-top: 20px;
  /* Add some space above the phone number */
}

.nav__phone--mobile .nav__phone-number {
  font-size: 18px;
  text-decoration: none;
  display: inline-block;
  padding-bottom: 10%;
}


@media (min-width: 992px) {
  .nav__menu>li {
    display: inline-block;
    margin-right: 15px;
  }

  .nav__menu>li::after {
    display: none;
  }
}
/*-------------------------------------------------------*/
/* Partners*/
/*-------------------------------------------------------*/
.text-center-partners {
  text-align: center;
  margin-top: 5%;
  margin-bottom: 5%;
  }
/*-------------------------------------------------------*/
/* Footer */
/*-------------------------------------------------------*/
.footer__phone,
.footer__phone a {
  color: #1F1F1F;
  /* Set the desired color */
  text-decoration: none;
  /* Optional: Remove underline for links */
}

.footer__phone a:hover {
  text-decoration: underline;
  /* Optional: Add underline on hover */
}

@media (min-width: 768px) {
  .footer .widget_nav_menu {
    display: none;
  }
}

.footer {
  border-radius: 16px;
  border: 5px solid #CAA86B;
}

.footer .row {
  margin-left: 0;
  margin-right: 0;
}

.footer__bottom {
  display: flex;
  justify-content: flex-end;
  padding: 10px 20px;
}

.footer__bottom p {
  font-size: 14px;
  text-align: right;
}

.widget_nav_menu .active a {
  color: #C29D64;
  font-weight: bold;
}

@media screen and (max-width: 1060px) {
  footer.footer.rounded-section {
    padding: 20px;
    margin: 0 20px 20px;
    box-sizing: border-box;

  }

  footer.footer.rounded-section p,
  footer.footer.rounded-section a {
    font-size: 16px;
    text-align: center;
  }
}

.footer__phone-text {
  font-size: 18px;
  color: #1f1f1f;
  font-weight: bold;
}

.footer__phone-number {
  font-size: 18px !important;
  color: #caa86b !important;
  font-weight: bold !important;
}

.widget.widget_nav_menu {
  font-family: "Barlow", sans-serif;
  font-weight: 700;
  color: #527351;
  font-size: 18px;
}

/*-------------------------------------------------------*/
/* Parallax */
/*-------------------------------------------------------*/

.contact-watercolor-1 {
  position: absolute;
  top: 40%;
  left: 0;
  width: 200%;
  height: auto;
  aspect-ratio: 16 / 9;
  background-image: url('/img/contact/contact-watercolor01.png');
  background-size: contain;
  background-repeat: no-repeat;
  z-index: -4;
  opacity: 0%;
}

@media screen and (min-width: 320px) and (max-width: 768px) {
  .contact-watercolor-1 {
    position: absolute;
    top: 60%;
    left: -0%;
    width: 700%;
    height: auto;
    aspect-ratio: 16 / 9;
    background-image: url('/img/contact/contact-watercolor01.png');
    background-size: contain;
    background-repeat: no-repeat;
    z-index: -4;
    opacity: 0%;
  }
}

@media screen and (min-width: 769px) and (max-width: 1024px) {
  .contact-watercolor-1 {
    position: absolute;
    top: 10px;
    left: -0%;
    width: 200%;
    height: auto;
    aspect-ratio: 16 / 9;
    background-image: url('/img/contact/contact-watercolor01.png');
    background-size: contain;
    background-repeat: no-repeat;
    z-index: -4;
    opacity: 0%;
  }
}

/*-------------------------------------------------------*/
.contact-watercolor-2 {
  position: absolute;
  top: 15%;
  left:-10%;
  width: 200%;
  height: auto;
  aspect-ratio: 16 / 9;
  background-image: url('/img/contact/contact-watercolor02.png');
  background-size: contain;
  background-repeat: no-repeat;
  z-index: -10;
  opacity: 100%;
}

@media screen and (min-width: 320px) and (max-width: 768px) {
  .contact-watercolor-2 {
    position: absolute;
    top: 15%;
    left:-30%;
    width: 400%;
    height: auto;
    aspect-ratio: 16 / 9;
    background-image: url('/img/contact/contact-watercolor02.png');
    background-size: contain;
    background-repeat: no-repeat;
    z-index: -10;
    opacity: 100%;
  }
}

@media screen and (min-width: 769px) and (max-width: 1024px) {
  .contact-watercolor-2 {
    position: absolute;
    top: 15%;
    left:-30%;
    width: 400%;
    height: auto;
    aspect-ratio: 16 / 9;
    background-image: url('/img/contact/contact-watercolor02.png');
    background-size: contain;
    background-repeat: no-repeat;
    z-index: -10;
    opacity: 100%;
  }
}
/*-------------------------------------------------------*/
.contact-watercolor-3 {
  position: absolute;
  top: 10%;
  left: 0%;
  width: 200%;
  height: auto;
  aspect-ratio: 16 / 9;
  background-image: url('/img/contact/contact-watercolor03.png');
  background-size: contain;
  background-repeat: no-repeat;
  z-index: -5;
  opacity: 50%;
}

@media screen and (min-width: 320px) and (max-width: 768px) {
  .contact-watercolor-3 {
    position: absolute;
    top: 6%;
    left: -30%;
    width: 200%;
    height: auto;
    aspect-ratio: 16 / 9;
    background-image: url('/img/contact/contact-watercolor03.png');
    background-size: contain;
    background-repeat: no-repeat;
    z-index: -5;
    opacity: 50%;
  }
}

@media screen and (min-width: 769px) and (max-width: 1024px) {
  .contact-watercolor-3 {
    position: absolute;
    top: 10%;
    left: 0%;
    width: 200%;
    height: auto;
    aspect-ratio: 16 / 9;
    background-image: url('/img/contact/contact-watercolor03.png');
    background-size: contain;
    background-repeat: no-repeat;
    z-index: -5;
    opacity: 50%;
  }
}