:root {
  --bg: #010101;
  --surface: #352c25;
  --surface-2: #3e3732;
  --text: #e4bc89;
  --muted: #c7b8ab;
  --accent: #dc6b06;
  --accent-soft: #5b524c;
  --line: #6a6058;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.28);
  --radius: 18px;
  --radius-sm: 12px;
  --max-width: 1180px;
}

.header {
	width: 100%;
	text-align: center;
}

.header img {
	width: 150px;
	margin-top: 30px;
}

.header p {
	font-size:12px;
	color: var(--accent);
}

.image-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  height: auto;
  padding: 1rem; /* prevents edge touching on mobile */
}

.image-wrapper img {
  max-width: 580px;
  height: auto;
  border-radius: 8px; /* optional: makes it look nicer */
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, "Segoe UI", Roboto, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
}

.menu-shell {
  width: min(calc(100% - 32px), var(--max-width));
  margin: 0 auto;
  padding: 32px 0 56px;
}

.hero {
  background: linear-gradient(135deg, rgba(82,72,64,0.96), rgba(56,50,45,0.96));
  color: #fff;
  border-radius: 28px;
  padding: 34px 28px;
  box-shadow: var(--shadow);
  margin-bottom: 28px;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto -90px -90px auto;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
}

.hero h1 {
  margin: 0 0 10px;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.hero p {
  margin: 0;
  max-width: 720px;
  color: rgba(244,237,231,0.86);
  font-size: 1rem;
}

.category-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 28px;
}

.category-nav a {
  text-decoration: none;
  color: var(--accent);
  background: rgba(255,255,255,0.08);
  border: 1px solid var(--line);
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 600;
  transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease;
  backdrop-filter: blur(6px);
}

.category-nav a:hover {
  transform: translateY(-1px);
  background: rgba(255,255,255,0.14);
  border-color: #8a7d73;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.menu-category {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.category-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 18px 20px;
  background: linear-gradient(180deg, var(--surface) 0%, var(--surface-2) 100%);
  border-bottom: 1px solid var(--line);
}

.category-header h2 {
  margin: 0;
  font-size: 1.18rem;
  line-height: 1.2;
  color: var(--accent);
}

.category-header span {
  white-space: nowrap;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 600;
  background: var(--accent-soft);
  padding: 6px 10px;
  border-radius: 999px;
}

.table-wrap {
  overflow-x: auto;
}

.menu-table {
  width: 100%;
  border-collapse: collapse;
}

.menu-table thead th {
  text-align: left;
  padding: 12px 20px;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  background: #4f4842;
}

.menu-table thead th:last-child,
.menu-table tbody td:last-child {
  text-align: right;
  width: 110px;
}

.menu-table tbody tr {
  border-top: 1px solid var(--line);
  transition: background 0.16s ease;
}

.menu-table tbody tr:hover {
  background: rgba(255,255,255,0.04);
}

.menu-table tbody td {
  padding: 14px 20px;
  vertical-align: middle;
}

.item-name {
  font-weight: 600;
  color: var(--text);
}

.product-name {
  font-weight: 500;
}

.product-ingredients {
  font-size: 0.75rem;
  font-weight: 200;
  color: var(--muted);
  font-style: italic;
  margin-top: 2px;
  line-height: 1.3;
}

.product-qty {
  font-size: 0.85rem;
}

.item-price {
  font-weight: 700;
  color: var(--accent);
  white-space: nowrap;
}

.footer-note {
  margin-top: 28px;
  padding: 16px 18px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.92rem;
}

/* up button */
.scroll-top-btn {
    position: fixed;
    right: 20px;
    bottom: 20px;

    width: 50px;
    height: 50px;

    border-radius: 50%;

    background: var(--text);
    color: #403b36;

    display: flex;
    align-items: center;
    justify-content: center;

    text-decoration: none;

    box-shadow: 0 6px 18px rgba(0,0,0,0.35);

    transition:
        transform 0.2s ease,
        background 0.2s ease,
        opacity 0.2s ease;

    z-index: 9999;
}

.scroll-top-btn:hover {
    background: #ffd27a;
    transform: translateY(-3px);
}

.scroll-top-btn svg {
    width: 26px;
    height: 26px;
}

@media (max-width: 900px) {
  .menu-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .menu-shell {
    width: min(calc(100% - 20px), var(--max-width));
    padding: 20px 0 40px;
  }

  .hero {
    padding: 24px 18px;
    border-radius: 22px;
  }

  .category-header,
  .menu-table thead th,
  .menu-table tbody td {
    padding-left: 14px;
    padding-right: 14px;
  }

  .category-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .category-nav {
    gap: 8px;
  }

  .category-nav a {
    font-size: 0.9rem;
    padding: 9px 12px;
  }

  .menu-table thead th:last-child,
  .menu-table tbody td:last-child {
    width: 90px;
  }
}

/* 📱 Mobile */
@media (max-width: 768px) {
  .image-wrapper {
    flex-direction: column;
    height: auto;        /* avoid weird vertical centering issues */
  }

  .image-wrapper img {
    width: 100%;
    max-width: 400px;    /* keeps them from getting too big */
  }
}