/* ================================================
   BRUMA — Fine Dining Digital Menu
   Michelin-Star Aesthetic: Extreme Minimalism
   ================================================ */
@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital,wght@0,400;1,400&family=Manrope:wght@300;400;500;600;700&display=swap');

:root {
  --black:   #000000;
  --off-black: #0c0c0c;
  --charcoal: #1a1a1a;
  --stone:   #2a2a2a;
  --white:   #ffffff;
  --cream:   #f5f0e8;
  --muted:   #777777;
  --gold:    #c9a84c;
  --gold-light: rgba(201,168,76,.12);
  --line:    rgba(255,255,255,.1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--black);
  color: var(--white);
  font-family: 'Manrope', sans-serif;
  font-weight: 400;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }

/* ── LAYOUT ──────────────────────────────────────── */
.layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  min-height: 100vh;
}

/* ── SIDEBAR ─────────────────────────────────────── */
.sidebar {
  background: var(--off-black);
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 48px 32px;
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
}

/* Logo + tagline */
.sidebar-head {}
.sidebar-wordmark {
  font: 400 22px/1 'DM Serif Display', serif;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--white);
}
.sidebar-wordmark span { color: var(--gold); }
.sidebar-tagline {
  display: block;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--muted);
  text-transform: uppercase;
  margin-top: 8px;
}

/* Divider */
.sidebar-divider {
  height: 1px;
  background: var(--line);
  margin: 36px 0;
}

/* Nav */
.sidebar-nav {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.sidebar-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 16px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.2s, background 0.2s;
  cursor: pointer;
  border: none;
  background: transparent;
  width: 100%;
  text-align: left;
}
.sidebar-link:hover { color: var(--white); background: var(--charcoal); }
.sidebar-link.active {
  color: var(--gold);
  background: var(--gold-light);
}
.sidebar-link .num {
  font-size: 9px;
  font-weight: 400;
  color: var(--stone);
}
.sidebar-link.active .num { color: var(--gold); opacity: .5; }

/* Bottom sidebar */
.sidebar-foot {}
.sidebar-address {
  font-size: 10px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 24px;
}
.sidebar-address strong { color: var(--white); display: block; font-size: 10px; letter-spacing: 1px; margin-bottom: 4px; }
.btn-reserve {
  display: block;
  width: 100%;
  padding: 15px;
  border: 1px solid var(--gold);
  background: transparent;
  color: var(--gold);
  font-family: 'Manrope', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-align: center;
  transition: background 0.3s, color 0.3s;
  cursor: pointer;
}
.btn-reserve:hover {
  background: var(--gold);
  color: var(--black);
}

/* ── MAIN CONTENT ────────────────────────────────── */
.content {
  padding: 64px 7vw 80px;
  max-width: 900px;
}

/* Page header */
.page-header {
  margin-bottom: 72px;
}
.page-eyebrow {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 16px;
}
.page-title {
  font: 400 clamp(40px,5vw,68px)/1 'DM Serif Display', serif;
  color: var(--white);
  letter-spacing: -1px;
}
.page-title em {
  font-style: italic;
  color: var(--cream);
}
.page-sub {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.7;
  max-width: 480px;
  margin-top: 20px;
}

/* ── SECTION ─────────────────────────────────────── */
.menu-section {
  margin-bottom: 80px;
}
.section-label {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 40px;
}
.section-label h2 {
  font: 400 11px/1 'Manrope', sans-serif;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--muted);
  text-transform: uppercase;
  white-space: nowrap;
}
.section-label-line {
  flex: 1;
  height: 1px;
  background: var(--line);
}
.section-label-num {
  font-size: 9px;
  color: var(--stone);
}

/* ── FEATURED DISH ───────────────────────────────── */
.dish-featured {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 36px;
  align-items: center;
  padding: 32px;
  background: var(--off-black);
  border: 1px solid var(--line);
  border-left: 2px solid var(--gold);
  border-radius: 8px;
  margin-bottom: 36px;
  transition: background 0.3s;
}
.dish-featured:hover { background: var(--charcoal); }
.dish-img-ring {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid rgba(201,168,76,.25);
  flex-shrink: 0;
}
.dish-img-ring img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s;
}
.dish-featured:hover .dish-img-ring img { transform: scale(1.08); }
.dish-feat-eyebrow {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 10px;
}
.dish-feat-name {
  font: 400 26px/1.1 'DM Serif Display', serif;
  color: var(--white);
  margin-bottom: 10px;
}
.dish-feat-desc {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 20px;
}
.dish-feat-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.dish-feat-price {
  font: 700 22px/1 'Manrope', sans-serif;
  color: var(--white);
}
.dish-feat-tag {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--gold);
  border: 1px solid rgba(201,168,76,.3);
  padding: 4px 10px;
  text-transform: uppercase;
}

/* ── MENU ITEM LIST ──────────────────────────────── */
.menu-list {
  display: flex;
  flex-direction: column;
}
.menu-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: start;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
  transition: opacity 0.2s;
}
.menu-row:last-child { border-bottom: 0; }
.menu-row:hover { opacity: .85; }
.menu-row-name {
  font: 400 17px/1.1 'DM Serif Display', serif;
  color: var(--white);
  margin-bottom: 6px;
}
.menu-row-desc {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.6;
  max-width: 500px;
}
.menu-row-price {
  font: 700 16px/1 'Manrope', sans-serif;
  color: var(--white);
  white-space: nowrap;
  padding-top: 3px;
}

/* Custom Options Chips */
.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 12px;
}
.chip {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 10px;
  border: 1px solid var(--line);
  border-radius: 2px;
  color: var(--muted);
  cursor: pointer;
  transition: all 0.2s;
}
.chip:hover, .chip.on {
  border-color: var(--gold);
  color: var(--gold);
  background: var(--gold-light);
}

/* ── FOOTER ──────────────────────────────────────── */
.content-footer {
  border-top: 1px solid var(--line);
  padding-top: 36px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 10px;
  color: var(--muted);
}

/* ── FLOATING MENU FAB (mobile) ──────────────────── */
.menu-fab {
  display: none;
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 1000;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--gold);
  border: none;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  box-shadow: 0 4px 24px rgba(201,168,76,.35);
  transition: background 0.2s, transform 0.2s;
}
.menu-fab:hover { background: #d4aa58; transform: scale(1.08); }
.menu-fab span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--black);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
  transform-origin: center;
}
.menu-fab.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-fab.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.menu-fab.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── OVERLAY ─────────────────────────────────────── */
.sidebar-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.65);
  z-index: 90;
  opacity: 0;
  transition: opacity 0.3s;
  backdrop-filter: blur(2px);
}
.sidebar-overlay.visible { opacity: 1; }

/* ── RESPONSIVE ──────────────────────────────────── */
@media (max-width: 860px) {
  .layout { grid-template-columns: 1fr; }

  .menu-fab { display: flex; }
  .sidebar-overlay { display: block; }

  /* Sidebar slides in from left */
  .sidebar {
    position: fixed;
    left: -300px;
    top: 0;
    width: 280px;
    height: 100dvh;
    z-index: 100;
    transition: left 0.35s cubic-bezier(.4,0,.2,1);
    box-shadow: 8px 0 40px rgba(0,0,0,.6);
  }
  .sidebar.open { left: 0; }

  /* Nav stays vertical on mobile */
  .sidebar-nav { flex-direction: column; gap: 2px; }
  .sidebar-foot { display: flex; flex-direction: column; }

  /* Content fills full width */
  .content { padding: 32px 5vw 60px; }

  .dish-featured {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .dish-img-ring {
    width: 100%;
    height: 220px;
    border-radius: 10px;
  }
}

@media (max-width: 480px) {
  .content { padding: 24px 18px 48px; }
  .page-title { font-size: 42px; }
  .dish-feat-name { font-size: 22px; }
}

