.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid #2a2a2a;
}

.nav-container {
  max-width: 1300px;
  margin: auto;
  padding: 18px 8%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: 'Cinzel', serif;
  font-size: 22px;              /* Slightly bigger */
  font-weight: 700;             /* BOLD */
  letter-spacing: 3px;          /* Luxury spacing */
  color: #c9a24d;               /* Gold */
  text-transform: uppercase;
}

.logo span {
  font-weight: 400;
  color: #ffffff;
}


.nav-links {
  list-style: none;
  display: flex;
  gap: 30px;
}

.nav-links a {
  font-size: 14px;
  color: #fff;
  position: relative;
  transition: color 0.3s ease;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 50%;
  width: 0;
  height: 1px;
  background: #c9a24d;
  transition: 0.3s ease;
  transform: translateX(-50%);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-btn {
  border: 1px solid #c9a24d;
  padding: 8px 18px;
}
