/* Luxury Navigation Bar */
.lux-navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 9999;
  padding: 20px 40px;
  font-family: 'Poppins', 'Helvetica Neue', sans-serif;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
}

.lux-navbar.over-video {
  background: rgba(0, 0, 0, 0.4);
}

.lux-container {
  max-width: 1600px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.lux-logo img {
  height: 48px;
  width: auto;
  filter: brightness(1.2);
  transition: transform 0.3s ease;
}

.lux-logo:hover img {
  transform: scale(1.04);
}

.lux-menu {
  display: flex;
  gap: 40px;
}

.lux-menu a {
  color: white;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  position: relative;
  padding-bottom: 4px;
  transition: all 0.3s ease;
}

.lux-menu a::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  bottom: 0;
  left: 0;
  background: #cba135;
  transition: width 0.3s;
}

.lux-menu a:hover {
  color: #cba135;
}

.lux-menu a:hover::after {
  width: 100%;
}

.lux-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 28px;
  color: white;
  cursor: pointer;
}

/* Responsive */
@media (max-width: 980px) {
  .lux-menu {
    position: absolute;
    top: 80px;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    width: 100%;
    flex-direction: column;
    align-items: center;
    padding: 20px 0;
    display: none;
  }

  .lux-menu.active {
    display: flex;
  }

  .lux-toggle {
    display: block;
  }
}

