.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0px 40px;
  background: rgba(0,0,0,0.35);
  backdrop-filter: blur(12px);
  z-index: 1000;
}

.nav-left {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  letter-spacing: 2px;
}

.nav-center img {
  height: 80px;
}

.nav-right {
  display: flex;
  gap: 25px;
}

.nav-right a {
  text-decoration: none;
  color: #fff;
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  position: relative;
}

.nav-right a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 1px;
  bottom: -4px;
  left: 0;
  background: #d4af37;
  transition: 0.3s;
}

.nav-right a:hover::after {
  width: 100%;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.hamburger span {
  height: 2px;
  width: 25px;
  background: white;
  margin: 4px 0;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 70%;
  height: 100vh;
  background: #111;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 30px;
  transition: 0.4s;
  z-index: 999;
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu a {
  color: white;
  text-decoration: none;
  font-size: 1.2rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

@media(max-width: 768px) {
  .nav-right {
    display: none;
  }
  .hamburger {
    display: flex;
  }
}