/* style/header.css */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: #2b2b2b;
  color: #fff;
  padding: 1rem 0;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
}

.site-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: #fff;
  text-decoration: none;
}

.main-nav ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
}

.main-nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.main-nav a:hover {
  color: #ffd700;
}

.main-nav a.active {
  color: #ffd700;
  font-weight: bold;
  text-decoration: underline;
}

.nav-toggle {
  display: none;
  font-size: 1.5rem;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.nav-toggle.open {
  transform: rotate(90deg);
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem; /* space between logo and text */
  font-size: 1.5rem;
  font-weight: bold;
  color: #fff;
  text-decoration: none;
}

.logo-img {
  height: 40px; /* Adjust as needed */
  width: auto;
  display: block;
}
