nav {
  position: fixed;
  top: 0;
  width: 100%;
  background: linear-gradient(90deg, #FF9933 0%, #FF6B35 50%, #E9426B 100%);
  padding: 15px 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(255, 153, 51, 0.3);
  border-bottom: 2px solid #FFD700;
}
.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: white;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.logo span { 
  color: #FFD700; 
}
nav ul {
  list-style: none;
  display: flex;
  gap: 35px;
  align-items: center;
}
nav ul li a {
  color: white;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: var(--transition);
  padding: 10px 20px;
  border-radius: 30px;
}
nav ul li a:hover {
  color: var(--gold);
  background: rgba(255, 215, 0, 0.15);
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
  transform: translateY(-2px);
}
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 6px;
}
.menu-toggle span {
  width: 28px;
  height: 3px;
  background: white;
  border-radius: 3px;
  transition: var(--transition);
}
.menu-toggle.active span:nth-child(1) { 
  transform: rotate(45deg) translate(6px, 6px); 
  background: #FFD700; 
}
.menu-toggle.active span:nth-child(2) { 
  opacity: 0; 
}
.menu-toggle.active span:nth-child(3) { 
  transform: rotate(-45deg) translate(7px, -7px); 
  background: #FFD700; 
}
@media (max-width: 768px) {
  nav { 
    padding: 12px 20px; 
  }

  nav ul {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    height: 100vh;
    background: rgba(26, 26, 46, 0.98);
    flex-direction: column;
    justify-content: center;
    transition: right 0.4s ease;
    padding-top: 60px;
  }
  nav ul.active { 
    right: 0; 
  }
  .menu-toggle { 
    display: flex; 
  }
}
