:root {
  --bg: #0b0b0b;
  --fg: #f5f5f5;
  --muted: #c9c9c9;
  --card: #161616;
  --radius: 14px;

  /* Global gold palette for gradient accents */
  --gold-300: #f3d26a;
  --gold-500: #d4af37;
  --gold-600: #b08a1c;
}

/* global page setup */
body {
  margin: 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: #fff;
  color: #111;
  line-height: 1.5;
}

/* capped container for all main content */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

a {
  text-decoration: none;
}

/* header */
.site-header {
  --header-bg: #0d0d12;
  --accent: #c9302c;
  --ink: #ffffff;
  --gold-300: #f3d26a;
  --gold-500: #d4af37;
  --gold-600: #b08a1c;

  /* Layered gradient header with subtle casino-style lighting */
  background-color: var(--header-bg); /* fallback */
  background-image: radial-gradient(
      1200px 280px at 15% 0%,
      rgba(201, 48, 44, 0.12),
      transparent 60%
    ),
    radial-gradient(
      1200px 280px at 85% 0%,
      rgba(243, 210, 106, 0.14),
      transparent 60%
    ),
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.06),
      rgba(0, 0, 0, 0) 30%,
      rgba(0, 0, 0, 0.3)
    );
  background-repeat: no-repeat;
  color: var(--ink);
  padding: 14px 0;
  border-top: 3px solid transparent;
  border-image: linear-gradient(
      90deg,
      rgba(243, 210, 106, 0),
      rgba(243, 210, 106, 0.85) 20%,
      rgba(243, 210, 106, 0.85) 80%,
      rgba(243, 210, 106, 0)
    )
    1;
  box-shadow: 0 2px 0 rgba(0, 0, 0, 0.15);
}
.site-header .container {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Right-rail wrapper for nav + order button */
.header-rail {
  order: 2;
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 0;
}

/* brand */
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: inherit;
  min-width: 0;
  /* Mobile-first: keep the brand at the start of the header row */
  order: 1;
}
.brand__logo {
  /* Mobile-first: small logo by default */
  height: 56px;
  width: auto;
  flex: 0 0 auto;
  display: block;
}

/* primary nav and actions */
.site-header nav {
  /* Mobile-first: hide menu by default; toggle with .open in JS.
     Desktop overrides below. */
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  background: linear-gradient(
    180deg,
    rgba(10, 10, 14, 0.94),
    rgba(10, 10, 14, 0.98)
  );
  backdrop-filter: saturate(110%) blur(0.5px);
  -webkit-backdrop-filter: saturate(110%) blur(0.5px);
  display: none;
  padding: 8px 0 12px;
  border-top: 1px solid rgba(243, 210, 106, 0.2);
  box-shadow: 0 14px 24px rgba(0, 0, 0, 0.35);
  z-index: 10;
}
/* When the button toggles the nav on small screens, we add 'open' */
.site-header nav.open {
  display: block;
}
/* Mobile-first: header nav links stack vertically in the dropdown */
/* Header navigation list */
.site-header nav .nav-list {
  list-style: none;
  display: flex;
  flex-direction: column; /* stack on small screens */
  gap: 4px;
  margin: 0;
  padding: 6px 0 8px;
}
.site-header nav .nav-list a {
  color: var(--ink);
  text-decoration: none;
  font-weight: 600;
  display: block;
  padding: 10px 20px; /* larger tap target on mobile */
  border-radius: 6px;
}
.site-header nav .nav-list a:hover,
.site-header nav .nav-list a:focus-visible {
  color: #fff;
  background: none;
  text-decoration: none;
}

/* online ordering button (smaller by default) */
.btn-order {
  /* Mobile-first: place near the right, before the menu button */
  order: 2;
  margin-left: auto;
  padding: 6px 12px; /* slightly wider for balance on gold */
  border-radius: 8px;
  background-image: linear-gradient(180deg, #f7e9a8, #d4af37 55%, #b08a1c);
  color: #1a1205;
  text-decoration: none;
  font-weight: 800;
  font-size: 0.92rem;
  border: 1px solid rgba(176, 138, 28, 0.85);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.35) inset,
    0 6px 14px rgba(0, 0, 0, 0.25);
  transition: transform 120ms ease, filter 120ms ease, box-shadow 160ms ease;
  white-space: nowrap;
  background-size: 100% 100%;
  position: relative; /* enable sheen overlay */
  overflow: hidden; /* clip sheen overflow */
}
.btn-order::after {
  /* animated sheen sweep on hover */
  content: "";
  position: absolute;
  top: -60%;
  left: -130%;
  width: 60%;
  height: 220%;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.55) 45%,
    rgba(255, 255, 255, 0) 90%
  );
  transform: skewX(-20deg);
  transition: left 520ms ease;
}
.btn-order:hover {
  filter: brightness(1.12) saturate(1.08);
  transform: translateY(-1px) scale(1.08);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.6) inset,
    /* brighter inner highlight */ 0 12px 26px rgba(0, 0, 0, 0.38),
    /* depth */ 0 0 0 2px rgba(212, 175, 55, 0.45),
    /* gold ring */ 0 0 28px rgba(212, 175, 55, 0.55); /* outer glow */
}
.btn-order:hover::after {
  left: 140%;
}
.btn-order:focus-visible {
  outline: 2px solid rgba(243, 210, 106, 0.75);
  outline-offset: 2px;
}
.btn-order:active {
  transform: translateY(1px) scale(1);
}

.yelp-button {
  margin: 0;
  margin-top: 25px;
  padding: 6px 12px;
  border-radius: 8px;
  background-image: linear-gradient(180deg, #f7a8a8, #d43737 55%, #b01c1c);
  color: #1a1205;
  text-decoration: none;
  font-weight: 800;
  font-size: 0.92rem;
  border: 1px solid rgba(176, 28, 28, 0.85);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.35) inset,
    0 6px 14px rgba(0, 0, 0, 0.25);
  transition: transform 120ms ease, filter 120ms ease, box-shadow 160ms ease;
  white-space: nowrap;
  background-size: 100% 100%;
  position: relative;
  overflow: hidden;
  display: block;
  text-align: center;
}
.yelp-button::after {
  margin: 0 !important;
  content: "";
  position: absolute;
  top: -60%;
  left: -130%;
  width: 60%;
  height: 220%;
  transform: skewX(-20deg);
  transition: left 520ms ease;
}
.yelp-button::before{
  margin: 0 !important;
}
.yelp-button:hover {
  filter: brightness(1.12) saturate(1.08);
  transform: translateY(-1px) scale(1.08);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.6) inset,
    /* brighter inner highlight */ 0 12px 26px rgba(0, 0, 0, 0.38),
    0 0 2px rgba(212, 55, 55, 0.45),
    0 0 28px rgba(79, 22, 22, 0.59); /* outer glow */
}
.yelp-button:hover::after {
  left: 140%;
}
.yelp-button:focus-visible {
  outline: 2px solid rgba(243, 39, 39, 0.75);
  outline-offset: 2px;
}
.yelp-button:active {
  transform: translateY(1px) scale(1);
}

/* hamburger toggle (3 stacked horizontal lines) */
.nav-toggle {
  /* Mobile-first: shown on small screens; hidden on desktop via media query */
  display: inline-flex;
  order: 3;
  margin-left: 8px;
  width: 40px;
  height: 40px;
  background: transparent;
  color: inherit;
  border-radius: 8px;
  border: none;
  padding: 0;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}
/* draw the three lines with a single gradient for consistency */
.nav-toggle::before {
  content: "";
  display: block;
  width: 24px;
  height: 14px;
  background: linear-gradient(
    currentColor 0 2px,
    transparent 2px 6px,
    currentColor 6px 8px,
    transparent 8px 12px,
    currentColor 12px 14px
  );
  border-radius: 2px;
  opacity: 0.9;
}
.nav-toggle:hover::before,
.nav-toggle:focus-visible::before {
  opacity: 1;
}
.nav-toggle:focus-visible {
  outline: 2px solid rgba(243, 210, 106, 0.65);
  outline-offset: 2px;
}

/* mobile navigation behavior */
/* Mobile-first note:
   - Small-screen styles are the defaults defined above.
   - Desktop enhancements are applied in the min-width: 820px media query below. */

/* desktop refinements */
@media (min-width: 820px) {
  /* Desktop/tablet enhancements (>= 820px)
     - We keep CSS mobile-first: only override what's necessary.
     - Show the navigation inline and hide the toggle button.
     - Set the desktop logo height to 100px. */
  .brand__logo {
    height: 100px;
  }

  /* Flex header layout:
     - Left: brand
     - Right: header-rail stacks nav on top, order button below */
  .site-header .container {
    display: flex;
    align-items: center;
    gap: 12px 24px;
  }

  .brand {
    order: 1;
    align-self: center;
  }

  .nav-toggle {
    display: none; /* hidden on desktop */
  }

  .header-rail {
    order: 2;
    margin-left: auto;
    display: flex;
    flex-direction: column;
    align-items: flex-end; /* right-align items */
    gap: 10px;
  }

  .site-header nav {
    position: static;
    margin-left: 0;
    background: transparent; /* let header gradient show through */
    background-image: none;
    display: block; /* keep menu visible on desktop */
    padding: 0;
    border: 0;
    box-shadow: none; /* remove mobile drop shadow on desktop */
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .site-header nav .nav-list {
    flex-direction: row;
    gap: 18px;
    padding: 0;
  }

  .site-header nav .nav-list a {
    padding: 6px 2px;
    border-radius: 0;
    /* Desktop: underline animates on hover; no background fill */
    background-color: transparent !important;
    background-image: linear-gradient(
      90deg,
      var(--gold-600),
      var(--gold-300),
      var(--gold-600)
    );
    background-size: 0% 2px;
    background-position: 50% 100%;
    background-repeat: no-repeat;
    transition: background-size 260ms cubic-bezier(0.2, 0.8, 0.2, 1);
  }

  .site-header nav .nav-list a:hover,
.site-header nav .nav-list a:focus-visible {
  background-color: transparent;
  background-image: linear-gradient(
      90deg,
      var(--gold-600),
      var(--gold-300),
      var(--gold-600)
  );
  background-size: 100% 2px;
  background-position: 50% 100%;
  background-repeat: no-repeat;
  text-decoration: none;
  box-shadow: none;
}

.site-header nav .nav-list a:active,
.site-header nav .nav-list a:visited {
  background: none !important;
  background-color: transparent !important;
  box-shadow: none !important;
}
.site-header nav .nav-list a:hover,
.site-header nav .nav-list a:focus-visible {
  background-color: transparent;
  background-image: linear-gradient(
      90deg,
      var(--gold-600),
      var(--gold-300),
      var(--gold-600)
  );
  background-size: 100% 2px;
  background-position: 50% 100%;
  background-repeat: no-repeat;
  text-decoration: none;
  box-shadow: none;
}

.site-header nav .nav-list a:active,
.site-header nav .nav-list a:visited {
  background: none !important;
  background-color: transparent !important;
  box-shadow: none !important;
}


  .btn-order {
    margin-left: 0;
    padding: 8px 12px;
    font-size: 0.95rem;
    border-radius: 8px;
    align-self: flex-end; /* bottom of the right rail */
  }
}

/* Gold gradient text treatment for short highlights */
.gold-text {
  background-image: linear-gradient(
    90deg,
    var(--gold-600),
    var(--gold-300),
    var(--gold-600)
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 700;
}

/* Red gradient text for small headers */
.red-text {
  background-image: linear-gradient(
      90deg,
      rgb(100, 0, 0),
      rgb(255, 0, 0),
      rgb(100, 0, 0)
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 700;
}

/* Subtle gold underline highlight for phrases/slogans */
.gold-underline {
  background-image: linear-gradient(
    90deg,
    var(--gold-600),
    var(--gold-300),
    var(--gold-600)
  );
  background-repeat: no-repeat;
  background-size: 100% 0.18em;
  background-position: 0 100%;
  padding-bottom: 0.05em;
  font-weight: 700;
  color: var(--fg);
}

/* footer */
.site-footer {
  background: #ddd;
  padding: 20px 0;
  text-align: center;
}
.site-footer p {
  margin: 0;
}

/* Mobile drawer navigation + hamburger animation overrides */
@media (max-width: 819.98px) {
  /* Right-aligned drawer panel with slide animation */
  .site-header nav {
    position: absolute;
    right: 0;
    left: auto;
    top: 100%;
    width: clamp(140px, 24vw, 180px);
    /* Crimson gradient panel to stand out against page background */
    background: linear-gradient(
      180deg,
      rgba(83, 9, 9, 0.98),
      rgba(59, 6, 6, 0.98) 50%,
      rgba(34, 4, 4, 0.98)
    );
    backdrop-filter: saturate(110%) blur(0.5px);
    -webkit-backdrop-filter: saturate(110%) blur(0.5px);
    padding: 8px 0 12px;
    /* Metallic gold gradient border around drawer */
    border: 2px solid transparent;
    border-image: linear-gradient(180deg, var(--gold-300), var(--gold-600)) 1;
    box-shadow: 0 14px 24px rgba(0, 0, 0, 0.35);
    z-index: 10;
    transform: translateX(16px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: transform 220ms cubic-bezier(0.22, 1, 0.36, 1),
      opacity 200ms ease, visibility 0s linear 220ms;
    display: block;
  }
  .site-header nav.open {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition: transform 320ms cubic-bezier(0.2, 0.8, 0.2, 1),
      opacity 220ms ease;
  }

  /* Center text in the drawer */
  .site-header nav .nav-list a {
    text-align: center;
  }

  /* Tighter link padding for narrow drawer */
  .site-header nav .nav-list a {
    padding: 10px 14px;
  }

  /* Mobile-only hover fill for drawer links */
  .site-header nav .nav-list a:hover,
  .site-header nav .nav-list a:focus-visible {
    background: rgba(243, 210, 106, 0.1);
  }

  /* Hamburger animation: middle bar via background; top/bottom via pseudo-elements */
  .nav-toggle {
    position: relative;
    background: linear-gradient(currentColor 0 2px, transparent 0) center/24px
      2px no-repeat;
  }
  .nav-toggle::before,
  .nav-toggle::after {
    content: "";
    position: absolute;
    width: 24px;
    height: 2px;
    background: currentColor;
    border-radius: 2px;
    left: 50%;
    top: 50%;
    opacity: 0.9;
    transform-origin: 50% 50%;
    transition: transform 200ms ease, opacity 150ms ease;
  }
  .nav-toggle::before {
    transform: translate(-50%, calc(-50% - 6px)) rotate(0deg);
  }
  .nav-toggle::after {
    transform: translate(-50%, calc(-50% + 6px)) rotate(0deg);
  }
  .nav-toggle:hover::before,
  .nav-toggle:hover::after,
  .nav-toggle:focus-visible::before,
  .nav-toggle:focus-visible::after {
    opacity: 1;
  }
  .nav-toggle.is-active {
    background-size: 0 0; /* hide middle bar */
  }
  .nav-toggle.is-active::before {
    transform: translate(-50%, -50%) rotate(45deg);
  }
  .nav-toggle.is-active::after {
    transform: translate(-50%, -50%) rotate(-45deg);
  }
}

/* Desktop safety: reset possible mobile transitions/properties explicitly */
@media (min-width: 820px) {
  .site-header nav {
    transform: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    width: auto;
    transition: none;
  }
  .yelp-button {
    margin-right: auto;
  display: inline-block;
  max-width: fit-content;
  }
}

.div-form {
  border: 3px solid gold;
  background-color: gray;
}