header {
  background: linear-gradient(to right, var(--luxury-dark), var(--royal-blue));
  color: var(--creamy-white);
  padding: 1.25rem 2.5rem;
  position: fixed;
  top: 0;
  width: 100%;
  max-height: 5rem;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.25);
}
  nav ul li a.active {
 color: var(--gold-accent);
  background-color: rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
  border: 2px solid var(--gold-accent);
}

header .logo {
  font-family: "Cinzel", serif;
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

header .logo img#company_logo {
  width: 150px;
  height: 100px;
  object-fit: contain;
  vertical-align: middle;
  margin-right: 0.5rem;
}

header nav {
  margin-left: auto;
}

header nav ul {
  list-style: none;
  display: flex;
  gap: 2.5rem;
}

header nav ul li a {
  color: var(--creamy-white);
  text-decoration: none;
  font-weight: 700;
  padding: 0.6rem 1.2rem;
  border-radius: 6px;
  transition: color 0.3s ease, background-color 0.3s ease, transform 0.2s ease;
}

header nav ul li a:hover {
  color: var(--gold-accent);
  background-color: rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
}

.menu-icon {
  display: none;
}
.filter-icon {
  display: none;
}
.close-menu-btn{
  display: none;
}
