/* Header Section */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background-color: #5a2d2f; /* Wine red */
  color: #fff;
}

.logo img {
  height: 50px;
  filter: brightness(0) saturate(100%) invert(37%) sepia(64%) saturate(547%) hue-rotate(35deg) brightness(95%) contrast(89%);
}

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

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

.nav .menu li a:hover {
  color: #d4af37; /* Gold accent */
}

.icons {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.search input {
  padding: 0.4rem;
  border: none;
  border-radius: 5px;
}

.search button {
  background: none;
  border: none;
  cursor: pointer;
}
