/* ===========================
   DESKTOP NAVBAR (CLEAN)
   =========================== */

.nav-desktop{
  position: sticky;
  top: 0;
  z-index: 50;

  background: rgba(201, 185, 185, 0.3);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.nav-inner{
  max-width: 1320px;
  margin: 0 auto;

  height: 82px;
  padding: 0 48px;

  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  column-gap: 28px;
}

/* ===== LOGO (LEFT) ===== */
.nav-logo{
  display: flex;
  align-items: center;
  text-decoration: none;
}

.nav-logo-img{
  height: 54px; /* luxury range: 46–60 */
  width: auto;
  display: block;
}

/* ===== LINKS (CENTER) ===== */
.nav-links{
  list-style: none;
  margin: 0;
  padding: 0;

  display: flex;
  justify-content: center;
  align-items: center;
  gap: 26px;
  flex-wrap: nowrap;
}

/* Base link style */
.nav-links a{
  position: relative;              /* needed for underline */
  text-decoration: none;

  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #222;

  opacity: 0.82;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

/* Smooth underline (hidden by default) */
.nav-links a::after{
  content: "";
  position: absolute;
  left: 50%;
  bottom: -6px;

  width: 100%;
  height: 1px;
  background: currentColor;

  transform: translateX(-50%) scaleX(0);
  transform-origin: center;
  transition: transform 0.35s ease;
}

/* Hover */
.nav-links a:hover{
  opacity: 1;
  transform: translateY(-1px);
}

.nav-links a:hover::after{
  transform: translateX(-50%) scaleX(1);
}

/* ===========================
   BRAND IN MIDDLE (UNCHANGED)
   =========================== */
.nav-brand a{
   font-family: "Cormorant Garamond", serif;
   position: relative;
  font-size: 23px;
  font-weight: 800;
  letter-spacing: 0.25em;
  color: #111;
  opacity: 1;
  transform: none;
}
.nav-brand a::after{
  content: "";
  position: absolute;
  left: 50%;
  bottom: -6px;
  width: 26px;
  height: 1px;
  background: rgba(0,0,0,0.35);
  transform: translateX(-50%);
}
.nav-brand a:hover{
  text-decoration: none;
}

/* ===== SEARCH (RIGHT) ===== */
.nav-search{
  width: 180px;
  display: flex;
  justify-content: flex-end;
}

.nav-search input{
  width: 100%;
  padding: 8px 14px;

  border-radius: 999px;
  border: 1px solid rgba(0,0,0,0.18);
  background: rgba(255,255,255,0.9);

  font-size: 13px;
  color: #222;
  outline: none;

  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.nav-search input::placeholder{
  color: rgba(0,0,0,0.45);
}

.nav-search input:focus{
  border-color: rgba(0,0,0,0.35);
  box-shadow: 0 0 0 3px rgba(0,0,0,0.06);
}

/* ===========================
   TABLET (768–1024)
   =========================== */
@media (max-width: 1024px) and (min-width: 768px){
  .nav-inner{
    padding: 0 24px;
    column-gap: 18px;
    height: 78px;
  }

  .nav-logo-img{
    height: 48px;
  }

  .nav-links{
    gap: 16px;
  }

  .nav-links a{
    font-size: 12px;
    letter-spacing: 0.16em;
  }

  .nav-brand a{
    font-size: 14px;
  }

  .nav-search{
    width: 150px;
  }
}

/* ===========================
   SMALL DESKTOP (<= 1200)
   =========================== */
@media (max-width: 1200px){
  .nav-links{
    gap: 18px;
  }
}
