/* navbar */ 

/* Hide the underline for all navbar links */
.navbar-nav > li > a {
    border-bottom: none !important; /* Remove underline */
}

/* Show the underline on hover */
.navbar-nav > li > a:hover {
    border-bottom: 1px solid rgba(255, 255, 255, 0.8); /* Underline on hover */
}

html, body {
    touch-action: pan-y; /* Allow vertical scrolling */
}

html, body {
    overflow-x: hidden; /* Default: Hide overflow */
}
@media (max-width: 1024px) { /* This targets tablets and mobile devices */
    html, body {
         overflow-x: visible ;
    }
}
p
{
	font-family: "Montserrat";
}



.inner-wrap {display: none;}


* General styles for the Buttonizer button */
.buttonizer-button-0-0-10 {
    background-color: #007bff; /* Set a background color for desktop */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2); /* Add shadow for desktop */
    border-radius: 5px; /* Optional: Add border radius for styling */
    z-index: 1000; /* Ensure it's above other elements */
}

/* Hide background on mobile */
@media only screen and (max-width: 768px) {
    .buttonizer-button-0-0-10 {
        background-color: transparent !important; /* Make background transparent */
        box-shadow: none !important; /* Remove shadow */
        border: none !important; /* Remove border */
        position: fixed !important; /* Fixed position for mobile */
        bottom: 30px; /* Adjust distance from the bottom */
        right: -285px; /* Adjust distance from the right */
        width: auto !important; /* Width based on content */
        height: auto !important; /* Height based on content */
        padding: 10px; /* Add some padding for touch targets */
        margin: 0 !important; /* Remove margin */
        transition: all 0.3s ease; /* Smooth transition for any movement */
    }
}

/* Additional styles for smaller screens */
@media only screen and (max-width: 480px) {
		.nav-menu a,
		.menu a,
		.main-navigation a,
		ul li a {
		  color: #FFCC00 !important;
		}
    .buttonizer-button-0-0-10 {
        bottom: 30px; /* Adjust bottom distance for smaller screens */
        right: -285px; /* Adjust right distance for smaller screens */
        padding: 8px; /* Smaller padding for touch targets */
    }
}



/* Hamburger icon visible on desktop */
.menu-toggle-desktop {
  position: absolute;
  right: 0px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 999;
}

.menu-toggle-desktop span {
  display: block;
  height: 3px;
  background-color: #fff; /* or your preferred color */
  margin: 1px 0;
  transition: all 0.3s ease;
}

/* Make the middle bar shorter */
.menu-toggle-desktop span:nth-child(2) {
  width: 20px; /* shorter line */
  margin-left: 0;
}

/* Top and bottom bars remain full width */
.menu-toggle-desktop span:nth-child(1),
.menu-toggle-desktop span:nth-child(3) {
  width: 28px;
}


.desktop-slideout {
  position: fixed;
  top: 0;
  right: -300px;
  width: 300px;
  height: 100%;
  background: rgba(0, 0, 0, 0.96);
  box-shadow: -2px 0 10px rgba(0,0,0,0.2);
  transition: right 0.3s ease;
  z-index: 998;
  padding: 2rem;
}

body.desktop-menu-open .desktop-slideout {
  right: 0;
}

/* Hide hamburger icon when drawer is open */
.desktop-menu-open .menu-toggle-desktop {
  display: none !important;
}

.desktop-slideout-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.desktop-slideout-content li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0;
  margin: 0;
}

.desktop-slideout-content a {
  display: block;
  padding: 1rem 0;
  font-size: 17px;
  text-transform: uppercase;
  text-decoration: none;
  color: #FFCC00;
  font-weight: 600;
}

.desktop-slideout-content a:hover {
  color: #fff;
}

@media (max-width: 1023px) {
  .menu-toggle-desktop {
    display: none !important;
  }
}

.drawer-close-btn {
  background: none;
  border: none;
  color: #FFF;
  font-size: 30px;
  cursor: pointer;
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 9999;
}


.desktop-slideout-content ul {
  list-style: none;
  padding: 4rem 0 0 0; 
  margin: 0;
}