/* Template Header */
.template-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 200px;
  margin-top: 100px !important; /* Offset for background height if needed; adjust */
}

.template-title {
  font-size: var(--fs-h1); /* 60px on desktop */
  color: var(--e-global-color-primary); /* Kielo Blue */
  margin: 0;
}

.template-menu .menu-items {
  display: flex;
  gap: 40px; /* Space between menu items */
  list-style: none;
  // padding: 0 20px;
}

.template-menu .menu-items li.current-menu-item > a {
  border-bottom: 3px solid black !important;
  padding-bottom: 10px;
}

.template-menu .menu-items li a {
  font-size: var(--fs-body); /* 16px */
  color: var(--e-global-color-text);
  text-decoration: none;
  font-weight: 500;
  padding: 10px 0; /* Slight padding for button-like feel */
  transition: color 0.3s ease;
}

.template-menu .menu-items li a:hover {
  color: var(--e-global-color-primary); /* Hover to Kielo Blue */
}




/* Hide toggle on desktop */
.template-menu-toggle {
  display: none;
  cursor: pointer;
}

.template-menu-toggle img {
  width: 28px; /* adjust as needed */
  height: auto;
}






/* Mobile view */
@media (max-width: 768px) {
   
  .template-header {
	height: 80px !important;
	margin-top: 60px !important;
	
	 
  }
  .template-header .section-title {
	font-size: 24px;
	  
  }



 /* Show toggle, hide menu initially */
  .template-menu-toggle {
    display: block;
  }

  .template-menu {
    display: none; /* hidden until toggle */
    background: #fff; /* adjust */
    padding: 20px 0;
    width: 100%;
	top: 80px !important;
  }

  .template-menu .menu-items {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .template-menu.active {
    display: block;
  }





}
