* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background: #111;
  color: #f5f1e8;
  line-height: 1.6;
}

.page-hero {
  background:
    linear-gradient(rgba(0, 0, 0, 0.6), rgba(17, 17, 17, 0.95));
  min-height: 55vh;
  padding: 20px 6%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* =========================
   HEADER
========================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: linear-gradient(to bottom, var(--parchment-1), var(--parchment-2));
  border-top: 2px solid rgba(55, 32, 19, 0.65);
  border-bottom: 2px solid rgba(55, 32, 19, 0.45);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.18);
}

.header-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 0.75rem;
  width: min(100% - 1rem, 1400px);
  min-height: 64px;
  margin: 0 auto;
  padding: 0.35rem 0;
}

.brand-left {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-left: 0.6rem;
  position: relative;
  z-index: 2;
}

.map-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0.45rem 0.9rem;
  color: #f2e2bc;
  font-family: "Cinzel", serif;
  font-size: 0.60rem;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  background: linear-gradient(to bottom, var(--wood-1), var(--wood-2));
  border: 2px solid #3a2114;
  border-radius: 10px;
  box-shadow:
    0 4px 10px rgba(0,0,0,0.16),
    inset 0 1px 0 rgba(255,255,255,0.06);
}

.map-link:hover {
  filter: brightness(1.05);
}
.top-sign-wrap {
  width: fit-content;
  margin: 5px;
  min-width: unset;
}

.menu-toggle {
  justify-self: end;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-right: 0.35rem;
  background: linear-gradient(to bottom, #67412a, #3a2215);
  border: 2px solid #3a2114;
  border-radius: 14px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.16);
  position: relative;
  z-index: 2;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 2px 0;
  background: #f1e1bc;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.site-nav {
  display: none;
  width: min(100% - 1rem, 1400px);
  margin: 0 auto;
  padding: 0 0 0.75rem;
  background: #70665d;
}

.site-nav.open {
  display: block;
}

.site-nav a {
  display: block;
  padding: 0.9rem 0.3rem;
  color: #ffffff;
  font-family: "Cinzel", serif;
  font-size: 0.95rem;
  border-bottom: 1px solid rgba(70, 42, 25, 0.12);
  text-decoration: none;
}

.site-nav a:hover {
    background: #1e242a;
    color: #d4a14a;
}

.hero-content {
  max-width: 700px;
  padding: 60px 0 30px;
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 12px;
}

.hero-content p {
  font-size: 1.05rem;
  color: #ddd;
}

main {
  padding: 60px 6%;
}

.menu-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 60px;
}

.menu-card {
  text-decoration: none;
  color: #f5f1e8;
  background: #1a1a1a;
  border: 1px solid #2d2d2d;
  border-radius: 18px;
  padding: 30px 24px;
  transition: 0.3s ease;
}

.menu-card:hover {
  transform: translateY(-6px);
  border-color: #d4a14a;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
}

.menu-card h2 {
  color: #d4a14a;
  margin-bottom: 10px;
}

.section-heading {
  text-align: center;
  margin-bottom: 35px;
}

.section-heading h2 {
  font-size: 2.2rem;
  margin-bottom: 10px;
}

.section-heading p {
  color: #c8c8c8;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.menu-item {
  background: #1b1b1b;
  border-radius: 16px;
  padding: 22px;
  border: 1px solid #292929;
}

.item-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
  gap: 20px;
}

.item-top h3 {
  color: #fff;
  font-size: 1.2rem;
}

.item-top span {
  color: #d4a14a;
  font-weight: bold;
  font-size: 1.25rem;
}

.menu-item p {
  color: #d0d0d0;
}

.order-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
}

.order-actions button {
  border: none;
  border-radius: 10px;
  padding: 0.75rem 1rem;
  background: #b7863b;
  color: #111;
  font-weight: 700;
  cursor: pointer;
}

.order-cart {
  width: min(1100px, 92%);
  margin: 2rem auto 3rem;
  background: #161616;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  padding: 1.25rem;
}

.order-cart-header,
.summary-row,
.cart-item-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.cart-items {
  margin: 1rem 0;
}

.cart-item {
  padding: 0.9rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.cart-item-meta {
  margin: 0.35rem 0 0;
  opacity: 0.8;
  font-size: 0.95rem;
}

.remove-cart-item,
#clearCartBtn {
  margin-top: 0.5rem;
  border: none;
  background: transparent;
  color: #d7a35a;
  cursor: pointer;
  font-weight: 600;
}

.checkout-btn {
  width: 100%;
  margin-top: 1rem;
  padding: 1rem;
  border: none;
  border-radius: 12px;
  background: #d7a35a;
  color: #111;
  font-weight: 800;
  cursor: pointer;
}

.checkout-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

footer {
  text-align: center;
  padding: 24px;
  background: #0c0c0c;
  color: #aaa;
  border-top: 1px solid #222;
}

@media (max-width: 900px) {
  .menu-links,
  .menu-grid {
    grid-template-columns: 1fr;
  }

  .hero-content h1 {
    font-size: 2.3rem;
  }
}

@media (max-width: 768px) {
  html,
  body {
    overflow-x: hidden;
  }

.site-header {
    width: 100%;
    overflow-x: hidden;
  }

.brand-left,
.menu-toggle {
    flex-shrink: 0;
  }

.top-sign-wrap {
    min-width: 0;
    display: flex;
    justify-content: center;
  }

.top-sign-wrap {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 0.95rem;
    padding: 0.5rem 0.8rem;
  }

.map-link {
    font-size: 0.85rem;
    white-space: nowrap;
  }


.header-inner {
    transform: scale(0.9);
    transform-origin: top center;
    }

.header-inner {
    display: grid;
    grid-template-columns: auto auto auto;
    justify-content: center;
    align-items: center;
    gap: 22px;
    }
}


.menu-links {
  display: grid !important;
  gap: 2rem !important;
  width: min(1500px, 92%) !important;
  margin: 3rem auto !important;
  padding: 0 !important;
}

.menu-links .menu-card {
  display: block !important;
  width: 100% !important;
  min-height: 220px !important;
  padding: 2.5rem 2rem !important;
  border-radius: 28px !important;
  text-decoration: none !important;

  background: linear-gradient(180deg, rgba(26, 26, 26, 0.96), rgba(18, 18, 18, 0.98)) !important;
  border: 1px solid rgba(214, 148, 63, 0.18) !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.28) !important;

  opacity: 1 !important;
  visibility: visible !important;
  position: relative !important;
  overflow: hidden !important;
}

.menu-links .menu-card h2 {
  margin: 0 0 1rem 0 !important;
  color: #d79a47 !important;
  font-size: clamp(2rem, 4vw, 3rem) !important;
  line-height: 1.1 !important;
  font-weight: 700 !important;
}

.menu-links .menu-card p {
  margin: 0 !important;
  color: #ece7df !important;
  font-size: 1.15rem !important;
  line-height: 1.7 !important;
  max-width: 700px !important;
}

.menu-links .menu-card:hover {
  transform: translateY(-4px);
  border-color: rgba(214, 148, 63, 0.35);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.34);
}

@media (max-width: 768px) {
  .menu-links {
    width: min(92%, 700px) !important;
    gap: 1.5rem !important;
    margin: 2rem auto !important;
  }

  .menu-links .menu-card {
    min-height: auto !important;
    padding: 2rem 1.5rem !important;
    border-radius: 24px !important;
  }

  .menu-links .menu-card h2 {
    font-size: 2.1rem !important;
  }

  .menu-links .menu-card p {
    font-size: 1rem !important;
    line-height: 1.6 !important;
  }
}



