@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700&family=Poppins:wght@300;400;600&display=swap');

:root{
  --gold:#c5a059;
  --goldSoft: rgba(197,160,89,.22);
  --text:#fff;
  --muted:#9a9a9a;
  --muted2:#b9b9b9;
}

/* Layout */
.menu-container {
  display: flex;
  color: var(--text);
  font-family: 'Poppins', sans-serif;
  padding: 60px 5%;
  min-height: 100vh;
  gap: 70px;
}

/* Left Nav */
.menu-nav { width: 20%; border-right: 1px solid #c5a05944;}
.menu-nav ul {
  position: sticky;
  top: 50px;
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
}

/* Each nav item (no shifting on active) */
.nav-item {
  position: relative;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 14px 10px 14px 14px;
  cursor: pointer;
  color: rgba(255,255,255,.55);
  transition: color .25s ease, background .25s ease, transform .25s ease;
  border-radius: 10px;
  user-select: none;
}

/* subtle hover */
.nav-item:hover{
  color: rgba(255,255,255,.85);
  background: rgba(255,255,255,.03);
}

/* active: stays aligned, only shows gold indicator + glow */
.nav-item.active{
  color: var(--gold);
  background: linear-gradient(90deg, rgba(197,160,89,.13), rgba(255,255,255,0));
}

/* gold indicator bar */
.nav-item.active::before{
  content:"";
  position:absolute;
  left: 6px;
  top: 10px;
  bottom: 10px;
  width: 3px;
  border-radius: 8px;
  background: var(--gold);
  box-shadow: 0 0 0 6px rgba(197,160,89,.10);
}

/* Right content */
.menu-content { width: 78%; min-width: 0; }

/* Category */
.category-section { display: none; }
.category-section.active { display: block; }

.cat-title {
  font-family: 'A-HEAD';
  font-size: clamp(30px, 2vw, 64px);
  color: var(--gold);
  margin: 0 0 34px 0;
  display: inline-block;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(197,160,89,.5);
}

/* Grid */
.menu-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px 60px;
}

/* Item */
.menu-item{ padding: 0; }

.item-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 18px;
  font-weight: 600;
  font-size: 16px;
  color: #fff;
  margin-bottom: 8px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgb(197 160 89 / 18%)
}
.item-header span:first-child{
  letter-spacing: .04em;
  text-transform: uppercase;
  font-size: 14px;
}

/* Tags */
.tags{
  display:flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 10px;
}
.tag{
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.10);
  color: rgba(255,255,255,.72);
  background: rgba(255,255,255,.03);
}
.tag.gold{
  border-color: rgba(197,160,89,.45);
  background: rgba(197,160,89,.14);
  color: rgba(255,255,255,.88);
}

.menu-item p {
  font-size: 13px;
  color: rgba(255,255,255,.62);
  line-height: 1.7;
  margin: 0;
}

/* Mobile: horizontal slider nav (no borders / not buttony) */
@media (max-width: 1024px) {
  .menu-container { flex-direction: column; gap: 26px; padding: 46px 5%; }
  .menu-nav { width: 100%; }
  .menu-nav ul {
    position: relative;
    top: 0;
    display: flex;
    gap: 18px;
    overflow-x: auto;
    white-space: nowrap;
    padding: 8px 2px 14px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .menu-nav ul::-webkit-scrollbar{ display:none; }

  .nav-item{
    padding: 0;
    border-radius: 0;
    background: transparent !important;
    color: rgba(255,255,255,.58);
    font-size: 12px;
    letter-spacing: .16em;
  }
  .nav-item:hover{ background: transparent; }
  .nav-item.active{ color: var(--gold); }
  .nav-item.active::before{
    content:"";
    position:absolute;
    left: 0;
    right: 0;
    bottom: -10px;
    top: auto;
    width: auto;
    height: 2px;
    border-radius: 999px;
    background: var(--gold);
    box-shadow: 0 0 0 6px rgba(197,160,89,.10);
  }

  .menu-content { width: 100%; }
  .menu-grid { grid-template-columns: 1fr; gap: 22px; }
}
