/*Menu*/
#fullscreen-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #efe9e1;
    color: #322d29;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between; /* Space out top, middle, and bottom rows */
    z-index: 1000;
    transform: translateX(-100%); /* Initially hidden */
    opacity: 0;
    pointer-events: none; /* Prevent interactions when hidden */
    padding: 20px;
    box-sizing: border-box;
}

.fullscreen-menu-bottom-links a{
    color: #1a1a1a;
}

/* Ensure badge is initially hidden */
.coming-soon-badge-desktop {
    background-color: #72383d; /* Badge color */
    color: white;
    font-size: 12px;
    font-weight: bold;
   border-radius: 12px;
  margin-left: 307px;
  display: inline-block;
  margin-top: -33px;
    padding: 3px 6px;
}

/* When the menu is open, the badge should be visible */
#fullscreen-menu.open .coming-soon-badge-desktop {
    opacity: 1; /* Show the badge */
    transform: translateY(0); /* Bring it to its normal position */
}


#menu-icon {
    width: 50px;
    height: 50px;
  }

.fullscreen-menu button {
    background: none;
    border: none;
    color: #322d29;
    font-size: 1rem;
    cursor: pointer;
    position: absolute;
    top: 20px;
    right: 20px;
}


#menu-toggle {
    background: transparent;
    box-shadow: none;
    color: #322d29;
    left:5px;
}

#close-menu {
    background: transparent;
    box-shadow: none;
    color: #322d29;
    right: 30px;
  position: absolute;
}

.top-row, .bottom-row {
    width: 100%;
    text-align: center; /* Center content horizontally */
}

.menu-content {
    display: flex;
    justify-content: space-between; /* Distribute columns evenly */
    width: 100%;
    max-width: 1200px; /* Adjust this value as needed */
    margin: 0 auto; /* Center the content */
}

.column {
    flex: 1; /* Each column takes up equal width */
    display: flex;
    flex-direction: column;
    gap: 10px; /* Space between links */
}

.column a {
    text-decoration: none;
    color: #322d29;
    font-size: 1.2rem;
    opacity: 0;  /* Initially hidden for animation */
    transform: translateY(20px);  /* Start position for animation */
    display: inline-block; /* Ensure links are inline elements */
}

.column a:hover {
    font-style: italic;
    font-size: 1.3rem;
}

/* Default styles for .hr */
.hr {
    border: none;
    height: 1px;
    background-color: #72383d;
    width: 100%;
    margin: 20px 0;
    transition: all 0.3s; /* Add a transition for smooth effect */
}

/* Styles for .hr after scrolling */
.scrolled .hr {
    background-color: #322d2; /* Change background color to black or any color */
}



@media (min-width: 921px) {
    .ast-theme-transparent-header #masthead {
      position: absolute;
      left: 0;
      right: 0;
      position: fixed;
      z-index: 9999;
      top: 0;
      width: 100%;
    }
  }
  
  
  /* Default styles for the button */
.ast-header-button-1 .ast-custom-button {
 
  border-color: #ffffff;
  border-width: 1px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.2);
box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
backdrop-filter: blur(5px);
-webkit-backdrop-filter: blur(5px);
border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Styles for the button after scrolling */
.scrolled .ast-header-button-1 .ast-custom-button {
background-color: #72383d; /* Change background to black */
color: #efe9e1;  
border: #f9f1f0; /* Change border color to black */
border-width: 1px;
border-radius: 0cqb;
}

/* Default styles for the social element */
.ast-builder-social-element {
  line-height: 1;
  color: #322d29;
  background: transparent;
  vertical-align: middle;
  transition: all 0.3s; /* Adjust transition timing for smooth effect */
  margin-left: 6px;
  margin-right: 6px;
  justify-content: center;
  align-items: center;
}

/* Styles for the social element after scrolling */
.scrolled .ast-builder-social-element {
  color: #322d29; /* Change text color */
  background: rgba(0,0,0,0.8); /* Change background to a semi-transparent black */
  transition: all 0.3s; /* Adjust transition timing for smooth effect */
}

/* Default styles for .ast-above-header-bar */
.ast-above-header-bar {
    border-bottom-width: 1px;
    border-bottom-color: transparent; /* Default color */
    border-bottom-style: solid;
    transition: border-bottom-color 0.3s; /* Smooth transition for color change */
}

/* Styles for .ast-above-header-bar after scrolling */
.scrolled .ast-above-header-bar {
    border-bottom-color: #72383d; /* Change color to match the desired effect */
}

/* Default styles for .ast-above-header-wrap */
.ast-above-header-wrap {
    background-color: transparent; /* Default background color */
    border-bottom-width: 1px;
    border-bottom-color: white; /* Default border color */
    border-bottom-style: solid;
    transition: background-color 0.3s, border-bottom-color 0.3s; /* Smooth transitions */
}

/* Styles for .ast-above-header-wrap after scrolling */
.scrolled .ast-above-header-wrap {
    background-color: #ffffff; /* Change background color to white */
    border-bottom-color: #f2ede4; /* Adjust the border color if needed */
}



/* Hide the scrolled logo initially */
#scrolled-logo {
    display: none;
}

/* Optionally add a transition for logo visibility */
.site-logo-img {
    transition: opacity 0.3s ease;
}

/* Styles for logo changes when scrolled */
.scrolled #default-logo {
    display: none; /* Hide the default logo */
}

.scrolled #scrolled-logo {
    display: block; /* Show the scrolled logo */
}


.ast-main-header-nav-open.ast-header-break-point .ast-mobile-header-wrap .ast-mobile-header-content {
  display: block;
  margin-top: -99px;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 1000;
 
}
