:root {
  --bg: #050404;
  --bg-alt: #0c0a0a;
  --panel: #15110f;
  --primary: #b4522f;
  --accent: #f3b23a;
  --text: #f7f3ec;
  --muted: #b1a59a;
  --border: #3b2f27;
  --radius-lg: 18px;
  --radius-xl: 24px;
  --radius-pill: 999px;
  --shadow-soft: 0 18px 40px rgba(0, 0, 0, 0.7);
  --transition-fast: 0.18s ease-out;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* HEADER / NAV */

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(5, 4, 4, 0.96);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(59, 47, 39, 0.8);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.7rem 1.5rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.logo img {
  height: 115px;
}

.nav {
  display: flex;
}

.nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 1.75rem;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.nav-link {
  position: relative;
  font-weight: 500;
  color: #f2e9df;
  opacity: 0.85;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.3rem;
  width: 0;
  height: 2px;
  background: var(--accent);
  border-radius: 999px;
  transition: width var(--transition-fast);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-link:hover {
  opacity: 1;
}

/* Order here button */

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.45rem 1.3rem;
  border-radius: var(--radius-pill);
  border: 1px solid #f7f3ec;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.8rem;
}

/* remove underline for button */
.nav-cta::after {
  display: none;
}

.nav-cta:hover {
  background: #f7f3ec;
  color: #0b0908;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  border: none;
  background: none;
  padding: 0.25rem;
  cursor: pointer;
}

.nav-toggle span {
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: var(--text);
}

/* HERO – home */

.hero-home {
  position: relative;
  min-height: calc(100vh - 64px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background:
    radial-gradient(circle at top left, rgba(243, 178, 58, 0.2), transparent 55%),
    radial-gradient(circle at bottom right, rgba(180, 82, 47, 0.45), #050404 75%);
  overflow: hidden;
}

.hero-home::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, transparent 0%, rgba(0, 0, 0, 0.7) 80%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
}

/* hide h1 visually but keep for SEO */
.hero-inner h1 {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* Burgers with a Twist */
.hero-inner p {
  margin-top: 0.2rem;
  font-size: 1.4rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #f7f3ec;
}

.hero-cta {
  margin-top: 1.6rem;
}

/* BUTTONS */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-pill);
  padding: 0.78rem 1.8rem;
  font-size: 0.9rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background var(--transition-fast), color var(--transition-fast),
    transform var(--transition-fast), box-shadow var(--transition-fast);
}

.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.75);
}

.btn-primary:hover {
  background: #913f21;
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: #f7f3ec;
  border-color: rgba(247, 243, 236, 0.8);
}

.btn-outline:hover {
  background: #f7f3ec;
  color: #0b0908;
  transform: translateY(-1px);
}

/* GENERIC SECTIONS */

.page-hero {
  padding: 3rem 0 2.2rem;
  background: #0c0a0a;
  border-bottom: 1px solid rgba(59, 47, 39, 0.9);
}

.page-hero h1 {
  font-size: 2.1rem;
}

.page-hero-sub {
  max-width: 40rem;
  color: var(--muted);
  margin-top: 0.4rem;
}

.content-section {
  padding: 3rem 0;
  background: #0c0a0a;
}

.content-section:nth-of-type(even) {
  background: #15110f;
}

.section-heading {
  font-size: 1.5rem;
  margin-bottom: 0.8rem;
}

/* ===== MENU PAGE – sheet style ===== */

.page-menu {
  background: #000;
  background-image: url("../images/menu-bg.jpg"); /* optional background image */
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.menu-sheet-section {
  min-height: calc(100vh - 64px);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 3rem 1rem;
}

.menu-sheet-wrapper {
  max-width: 720px;
  width: 100%;
  background: #ffffff;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.85);
  border-radius: 4px;
}

.menu-sheet-inner {
  padding: 2.4rem 2.2rem 2.6rem;
  font-size: 0.9rem;
  color: #222;
}

.menu-sheet-header {
  text-align: center;
  margin-bottom: 1.8rem;
  border-bottom: 2px solid #111;
  padding-bottom: 1rem;
}

.menu-sheet-label {
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #777;
}

.menu-sheet-title {
  margin-top: 0.35rem;
  font-size: 1.2rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.menu-sheet-note {
  margin-top: 0.45rem;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #777;
}

.menu-sheet-section-block {
  margin-top: 1.8rem;
}

.menu-sheet-section-title {
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
  border-bottom: 1px solid #111;
  padding-bottom: 0.25rem;
}

/* text menu styles inside sheet */

.menu-list {
  margin-bottom: 0.8rem;
}

.menu-list article {
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
  padding: 0.6rem 0;
}

.menu-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
}

.menu-row h3 {
  font-size: 0.98rem;
  color: #111;
}

.menu-row .price {
  font-weight: 600;
  color: #111;
}

.menu-list p {
  font-size: 0.82rem;
  color: #555;
  margin-top: 0.15rem;
}

.menu-list.small article {
  padding: 0.4rem 0;
}

.menu-sheet-allergen {
  margin-top: 1.6rem;
  font-size: 0.72rem;
  color: #777;
  text-align: center;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ABOUT */

.two-col {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2.2rem;
}

/* Our Story heading + spacing */

.story-title {
  font-size: 2rem;
  margin-bottom: 1.6rem;
}

.story-columns p {
  margin-bottom: 1rem;
}

.two-col p {
  color: var(--muted);
  font-size: 0.93rem;
}

/* VISIT / CONTACT LAYOUT */

.info-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1.7rem;
}

.info-card {
  background: var(--panel);
  border-radius: var(--radius-lg);
  padding: 1.3rem 1.4rem 1.4rem;
  border: 1px solid rgba(59, 47, 39, 0.9);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.6);
  font-size: 0.9rem;
}

.info-card h2 {
  font-size: 1.1rem;
  margin-bottom: 0.4rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.info-list {
  list-style: none;
  margin-top: 0.4rem;
}

.info-list li::before {
  content: "• ";
  color: var(--accent);
  font-weight: 700;
}

.info-small {
  font-size: 0.82rem;
  color: var(--muted);
  margin-top: 0.4rem;
}

/* contact page layout */

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 2.2rem;
  align-items: flex-start;
}

.contact-form {
  background: var(--panel);
  border-radius: var(--radius-xl);
  padding: 1.7rem 1.7rem 1.9rem;
  border: 1px solid rgba(59, 47, 39, 0.95);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.75);
}

.contact-form h2 {
  margin-bottom: 0.9rem;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-bottom: 0.9rem;
}

.form-row label {
  font-size: 0.85rem;
  font-weight: 500;
}

.form-row input,
.form-row select,
.form-row textarea {
  border-radius: 12px;
  border: 1px solid rgba(59, 47, 39, 0.9);
  padding: 0.6rem 0.7rem;
  font-family: inherit;
  font-size: 0.9rem;
  outline: none;
  background: #0c0907;
  color: var(--text);
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  border-color: var(--accent);
}

.form-note {
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: 0.7rem;
}

.contact-aside {
  font-size: 0.9rem;
  color: var(--muted);
}

.contact-aside h2 {
  font-size: 1.1rem;
  margin-bottom: 0.4rem;
}

.contact-aside a {
  color: var(--accent);
  font-weight: 500;
}

.contact-small {
  font-size: 0.8rem;
  margin-top: 0.5rem;
}

/* FOOTER */

footer {
  border-top: 1px solid rgba(59, 47, 39, 0.9);
  background: #050404;
  padding: 1.25rem 0 1.6rem;
  margin-top: auto;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.8rem;
  color: #a99a8e;
}

/* RESPONSIVE */

@media (max-width: 900px) {
  .two-col,
  .contact-layout {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 720px) {
  .header-inner {
    padding-inline: 1rem;
  }

  .nav-toggle {
    display: flex;
  }

  .nav {
    position: absolute;
    inset: 100% 0 auto 0;
    background: #050404;
    border-bottom: 1px solid rgba(59, 47, 39, 0.9);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
  }

  .nav.open {
    max-height: 260px;
  }

  .nav ul {
    flex-direction: column;
    align-items: flex-start;
    padding: 0.75rem 1.5rem 1rem;
  }

  .hero-home {
    min-height: calc(100vh - 56px);
  }

  .menu-sheet-section {
    padding: 2rem 0.5rem;
  }
}
