body #load {
    display: block;
    height: 100%;
    overflow: hidden;
    position: fixed;
    width: 100%;
    z-index: 9901;
    opacity: 1;
    visibility: visible;
    transition: all 0.35s ease-out;
}

.load-wrap {
    width: 100%;
    height: 100%;
    background-position: center center;
    background-repeat: no-repeat;
    text-align: center;
    display: -ms-flexbox;
    display: -ms-flex;
    display: flex;
    -ms-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-flow: column wrap;
    flex-flow: column wrap;
    -ms-flex-pack: center;
    -ms-justify-content: center;
    justify-content: center;
}

.load-wrap>svg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

#load {
    background: var(--the7-elementor-beautiful-loading-bg, #ffffff);
    --the7-beautiful-spinner-color2: var(--the7-beautiful-spinner-color,
            rgba(0, 0, 0, 0.12));
}

.header-mobile {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    background: white;
    height: 69px;
    display: none; /* default hidden */
    padding: 0px 20px 0px 20px;
    border-bottom: 1px solid #ccc; /* Adjust the color and thickness as needed */
}

/* When screen < 1200px, switch to mobile */
@media (max-width: 1200px) {
    .header-mobile {
      display: block;
    }
}

.elementor-element-241e74a4 {
    width: 100px;
}

.logo-container {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.logo-container svg {
    margin-right: 40px;
  }

  #loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999999;
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .loader {
    border: 6px solid #f3f3f3;
    border-top: 6px solid #b48a3d; /* your brand gold */
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
  }
  
  /* Spin Animation */
  @keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }

  /* Fullscreen white overlay */
/* Overlay base: initially transparent and hidden */
.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: white;
  z-index: 99999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

/* When active: fade in */
.menu-overlay.active {
  opacity: 1;
  visibility: visible;
}


/* Close button (X) in top-right */
#menu-close {
  position: absolute;
  top: 20px;
  right: 25px;
  font-size: 36px;
  background: none;
  border: none;
  cursor: pointer;
  color: black;
}

.fullscreen-nav a {
  font-family: 'Forum', sans-serif;
  font-size: 28px;
  text-decoration: none;
  color: #B0893D; /* default gold */
  transition: color 0.3s;
  font-weight: normal;
}

.fullscreen-nav a:hover {
  color: #8a6c2c; /* optional darker gold on hover */
}

.fullscreen-nav a.active,
.fullscreen-nav a[aria-current="page"] {
  color: #383838; /* deep gray for active */
  font-weight: normal;
}

.fullscreen-nav {
  margin-top: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: calc(100vh - 80px);
}

.fullscreen-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: center;
}

.fullscreen-nav li {
  margin: 1.5rem 0;
}

.fullscreen-nav-list .submenu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  padding-left: 1rem;
}

.fullscreen-nav-list .submenu.open {
  max-height: 500px; /* big enough for your submenu */
}

.fullscreen-nav-list .submenu a {
  font-size: 22px;
  display: block;
  margin: 0.3rem 0;
  color: #B0893D;
  text-decoration: none;
  transition: color 0.3s;
}

.fullscreen-nav-list .submenu a:hover {
  color: #8a6c2c;
}

.arrow {
  display: inline-block;
  margin-left: 8px;
  transition: transform 0.3s ease;
  border: solid #B0893D;
  border-width: 0 2px 2px 0;
  padding: 4px;
  transform: rotate(-45deg); /* default: pointing right */
}

.has-submenu .submenu.open ~ a .arrow,
.toggle-submenu.open .arrow {
  transform: rotate(45deg); /* pointing down */
}

.fullscreen-logo {
  width: 300px;     /* or 250px for tighter layout */
  height: auto;
  margin-bottom: 2rem;
  display: block;
}

.visita-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #B0893D;
  color: white !important;
  font-family: 'Forum', sans-serif !important;
  font-size: 20px !important;
  padding: 15px 20px 15px 30px; /* top right bottom left */
  margin-top: 2rem;
  text-decoration: none;
  border: none;
  border-radius: 3px;
  gap: 10px; /* spacing between text and icon */
  transition: background-color 0.3s;
}

.visita-button:hover {
  background-color: #a07a32; /* optional hover color */
}

.visita-button .calendar-icon {
  width: 22px;
  height: 22px;
  object-fit: contain;
}
