/* Responsive design */
@media (max-width: 768px) {
  #menu-mobile {
	z-index:100!important;
    display: flex !important;
    width: 100%;
    height: 3em; /* Initial height */
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    z-index: 98;
    transition: height 0.5s ease-in-out; /* Smooth height transition */
    align-items: center;
    justify-content: space-between;
    padding: 0 1em;
  }

  #menu-mobile.tall {
    height: 5em; /* Expanded height to fit dropdown */
  }

  .logo {
	 z-index:100;
    height: 2.5em;
    margin: auto 0;
	pointer-events:auto;
  }

  .dropdown {
    position: relative;
    display: flex;
    align-items: center;
  }

  .dropbutton {
        position: absolute;
        left: -50vw;
        width: 30px;
        cursor: pointer;
        margin: 0 1em;
  }

  .dropdown-content {
        display: flex;
        position: absolute;
        top: 2.5em;
        left: -100vw;
		flex-direction:row;
    width: 100vw; /* Full width */
    align-items: center;
    opacity: 0;
    visibility: hidden; /* Hidden by default */
    transition: opacity 0.5s ease-in-out, visibility 0.5s ease-in-out;
    z-index: 100;
  }

  .dropdown-content.show {
    opacity: 1;
    visibility: visible; /* Show the dropdown */
	 background-color: rgba(0, 0, 0, 0.6);
  }

  .dropdown-content.show::before{
background-color: rgba(0, 0, 0, 0.6);	 
	 content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(10px);
    z-index: 99;
	  
  }

#myDropdown.dropdown-content.show{

}
  .mobilemenu-item {
	  z-index:100;
    color: #c6f6f7;
    text-decoration: none;
    font-size: 1.2em;
    padding: 0.75em 1em;
    width: 100%;
    text-align: center;
    opacity: 0; /* Hidden by default */
    transition: opacity 0.5s ease-in-out 0.5s; /* Delayed fade-in */
  }

  .dropdown-content.show .mobilemenu-item {
    opacity: 1; /* Fade in when dropdown is shown */
  }

  .mobilemenu-item:hover {
    background: rgba(73, 222, 197, 0.2);
    color: #49dec5;
  }

  #menu {
    display: none !important;
  }

  #navwrapper2 > li:nth-child(3) {
    display: none;
  }

  .button-wrap {
    position: absolute;
    left: 20%;
    top: 25%;
  }

  #navwrapper2 {
    flex-direction: row;
    align-items: center;
    gap: 1em;
  }

  .navbutton {
    font-size: 1em;
    padding: 0.5em;
  }

  img#central-image {
    height: 15em;
  }

  .content-padding {
    padding: 0 !important;
    margin-left: 5% !important;
    margin-right: 5% !important;
  }

  .cta {
    max-width: 75% !important;
  }

  .cta-wrap {
    background: transparent!important;
    width: 100% !important;
    position: sticky;
    bottom: 0%;
  }

  button#cta-button {
    max-height: 5em;
    padding: 5px !important;
    width: 90%;
  }

  #sidebar-logo-image {
    position: absolute;
    top: 50%;
    left: 15%;
    height: 10em !important;
    pointer-events: none;
    z-index: 0;
  }

  button#cta-button-about {
    font-size: 1em;
  }

  div.aboutus.section.\31 {
    flex-direction: column !important;
    flex-wrap: wrap !important;
  }

  .employeename {
    padding-top: 25%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}

/** Normal Site Below **/




#menu-mobile{
	display:none;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  	list-style: none; /* Remove default bullets */
	color:#c6f6f7;
	font-family: 'Poppins', sans-serif; /* Modern font */
}

#menu {
  width: 100%;
  z-index: 99;
  height: 5em; /* Fixed height instead of max-height */
  background: rgba(0, 0, 0, 0.9); /* Slightly transparent for style */
  position: fixed;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2em; /* Add padding for better spacing */
  pointer-events: none;
  font-family: 'Poppins', sans-serif; /* Modern font */
}

#menu * {
  pointer-events: auto;
}

.button-wrap {
  display: flex;
  align-items: center;
}

#navwrapper2 {
  display: flex;
  list-style: none; /* Remove default bullets */
  gap: 1.5em; /* Space between buttons */
}

.navbutton {
  color: white;
  text-decoration: none; /* Remove underline from links */
  font-size: 1.1em;
  padding: 0.5em 1em; /* Better clickable area */
  transition: color 0.3s ease, transform 0.2s ease; /* Smooth hover effects */
}

.navbutton:hover {
  color: #49dec5; /* Match particle line color for cohesion */
  transform: scale(1.05); /* Slight zoom on hover */
}

.logo {
  height: 3em; /* Slightly larger for visibility */
  object-fit: contain;
}

/* Particle background */
#particles-js {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-color: #000;
  pointer-events: auto;
}

/* Centered image */
#central-image {
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 25em;
  pointer-events: none;
  z-index: 0;
}

#mainpage-content {
	  pointer-events: none;
	width:100%;
	height:auto;
	position: absolute;
	top:55%;
	background:rgba(255,255,255,0.0);
}
.content-padding{
	margin-right:10%;
	margin-left:10%;
	z-index:-1;
	padding:0em 2.5em 0em 2.5em;
	background:rgba(0,0,0,0.3);
	color:white;
	text-align:center;

}

h1 {
	
	font-size:3em;
	display:flex;
	justify-content:center;
	 color: #49dec5;
	
}

.highlighted {
	 color: #49dec5;
}
.service-list{
	font-size:1em;
	padding-left:2em;
	list-style: none; /* Remove default bullets */
	color:#49dec5;
	padding-top:2em;
	padding-bottom:2em;
	padding-right:2em;
}
.service-list > li {
	padding-top:1em;
	animation: glow 2s infinite alternate;
}

@keyframes glow {
    to {
        text-shadow: 0 0 10px white;
    }
}
.contact-icon-wrap{
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    grid-gap: 25px; /* Adjust the value to add space between the image and text */

	
}
.contact-icon{
	max-height:2em!important;
		  pointer-events: auto;
}
svg {
	width:2em;
	fill:white;
	transition: fill 0.3s ease-in
}
svg:hover{
	fill:#49dec5;
	transition: fill 0.3s ease-in;
}
.hours-list{
	font-size:.9em;
	list-style: none; /* Remove default bullets */
	color:#49dec5;
	padding-top:2em;
	padding-bottom:2em;
}
#booking-content {
	pointer-events: none;
	width:100%;
	height:auto;
	position: absolute;
	top:50%;
	background:rgba(255,255,255,0.0);
	text-align:center;
}
.booking-padding{
	min-width:100%;
	text-align:center;
	z-index:-1;
	padding:0em 2.5em 0em 2.5em;
	background:rgba(0,0,0,0.3);
	color:white;
}
.day {
	font-size:1.4em;
}
.mainpage-subcontent-heading{
	padding-top:2em;
	font-size:1.25em;
	color:#49dec5;
}
#sbw_38jtd4{
	padding-top:5vh;

}
span.booking-embed{
	background:none!important;
	
}
#sb_sidebar_container > aside > div.provider-item.item {
	display:none!important;
} 
 * {
	  font-family: 'Poppins', sans-serif; /* Modern font */
 }
 .cta {
	display:flex;
	max-width:25%;
	flex-direction: column;
    align-items: center;
    gap: 1em;
 }
 .cta-wrap{
	background-color: transparent;
	backdrop-filter: blur(10px);
z-index:99;
position:fixed;
bottom:0%;
left:0%;
	 display:flex;
	 width:100%;
	 justify-content:center;
 }
 #cta-button{
	z-index:98;
	position:absolute;
	top:45%;
	transform: translate(-50%,-50%);
	left:50%;
	background-color: transparent;
	backdrop-filter: blur(10px);
	padding:25px;
	pointer-events:auto;
	cursor:pointer;
	transition: background 0.8s ease, width 0.2s ease, border-color 0.5s ease-in;
	width:auto;
	border-radius:5px;
	border-color:white;
	align-items:center;
	font-size:2em;
	
 }
 #cta-button:hover{
	background-color:rgba(73, 222, 197,0.8);
	transition: background 0.3s ease, width 0.2s ease, border-color 0.5s ease-in;;
	width:calc-size(auto,+500px);
	border-color:black;
	
 }


/** CSS for about us page **/


.sidebar-wrapper {
}

.aboutus-wrap{
margin-top:5%;
	padding-left:15px;
	z-index:1;
	background-color: transparent;
	backdrop-filter: blur(10px);
	display:flex;
	flex-direction:column;
	position:absolute;
	
	right:10%;
	width:65%;

}
div.aboutus.section.\31 {
    padding-bottom: 10%;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    justify-content: space-between;
    align-content: flex-start;
    align-items: center;
}
.headshot1{
	z-index:99;
	max-height:10%;
	height:15vh;
	clip-path: circle(50% at 50%);
	overflow:visible;
	overflow-clip-margin:20em;

}
img.headshot1 {
	
}
#blurb1{
	text-align: justify;
	padding: 2em 2em 2em 5em;
}
div.aboutus.section.\32 {
    padding-bottom: 10%;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    justify-content: space-between;
    align-content: flex-start;
    align-items: center;
}
#sidebar-logo-image {
  position: absolute;
  top: 50%;
  left: 15%;
  transform: translate(-50%, -50%);
  height: 25em;
  pointer-events: none;
  z-index: 0;
}
#cta-button-about{
	z-index:98;
	position:absolute;
	top:65%;
	transform: translate(-50%,-50%);
	left:15%;
	background-color: transparent;
	backdrop-filter: blur(10px);
	padding:25px;
	pointer-events:auto;
	cursor:pointer;
	transition: background 0.8s ease, width 0.2s ease, border-color 0.5s ease-in;
	width:auto;
	border-radius:5px;
	border-color:white;
	align-items:center;
	font-size:2em;
	
 }