/* header.css */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: white;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5px 10px;
  flex-wrap: wrap;
   height: var(--header-height);
   
   
}

.logo {
  height: 80px;
  width: auto;

}

.quick-links {
  display: flex;
  gap: 20px;
  align-items: center;
  
}

.quick-links a {
  position: relative;
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s ease;
}

.quick-links a::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  bottom: -3px;
  left: 0;
  background-color: #af4261;
  transition: width 0.3s ease;
}

.quick-links a:hover,
.quick-links a:focus {
  color: #af4261;
}

.quick-links a:hover::after,
.quick-links a:focus::after {
  width: 100%;
}

/* ===== Header Buttons ===== */
.header-buttons {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin-right: 25px; /* add positive margin to shift left */
}



.hbuttons {
  background-color: #007BFF;
  color: white;
  padding: 8px 16px;
  border-radius: 4px;
  text-decoration: none;
  font-size: 14px;
  white-space: nowrap;
  transition: all 0.3s ease;
}

.header-buttons .button:hover,
.header-buttons .button:focus {
  background-color: #f3ec78;
  color: #333;
  transform: scale(1.05);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
  margin-left: 10px; /* small space between logo and toggle */
}


.menu-toggle div {
  width: 25px;
  height: 3px;
  background-color: #333;
}
