:root {
  --bg: #0d0a07;
  --line: #2a2018;
  --gold: #d9a441;
  --text: #e9d9b0;
  --maxw: 860px;
}

* { box-sizing: border-box; }

html, body { margin: 0; padding: 0; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  -webkit-font-smoothing: antialiased;
}

/* ---------- Sticky bar ---------- */
.bar {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 11px 16px;
  background: rgba(13, 10, 7, 0.85);
  backdrop-filter: saturate(140%) blur(8px);
  -webkit-backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid var(--line);
}
.bar-title {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
}
.btn {
  display: inline-flex;
  align-items: center;
  padding: 8px 15px;
  border-radius: 999px;
  border: 1px solid var(--gold);
  color: var(--gold);
  background: transparent;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.bar-links { display: flex; align-items: center; gap: 8px; }
/* The photo menu is the one we want people to open first. */
.btn-gold { background: var(--gold); color: #1a0f06; font-weight: 600; }

/* ---------- Menu pages ---------- */
.pages {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 14px 10px 44px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.page {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 6px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.5);
  background: #1a120c; /* placeholder tone while the image loads */
}
