    .header-sunset {
  background: linear-gradient(90deg, #ff7e5f, #feb47b);
  padding: 40px 0;
  position: relative;
  overflow: hidden;
  border-radius: 0 0 20px 20px;
}
.header-sunset::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('https://www.transparenttextures.com/patterns/dark-mosaic.png');
  opacity: 0.15;
}
.header-sunset .header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}
.header-sunset .logo img {
  max-height: 80px;
  filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.3));
  transition: transform 0.4s ease;
}
.header-sunset .logo img:hover {
  transform: scale(1.2);
}
.header-sunset .nav ul {
  display: flex;
  gap: 35px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.header-sunset .nav ul li a {
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  border-radius: 8px;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}
.header-sunset .nav ul li a:hover {
  color: #ffeb3b;
  background: rgba(0, 0, 0, 0.2);
  transform: scale(1.1);
}
.header-sunset .nav ul li a::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 120%;
  height: 120%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.2), transparent);
  transform: translate(-50%, -50%) scale(0);
  transition: transform 0.3s ease;
  z-index: -1;
}
.header-sunset .nav ul li a:hover::before {
  transform: translate(-50%, -50%) scale(1);
}