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

:root {
  --gold:      #c9a84c;
  --gold-dim:  rgba(201,168,76,.15);
  --dark:      #0d0d0d;
  --dark2:     #141414;
  --dark3:     #1c1c1c;
  --border:    rgba(255,255,255,.08);
  --text:      #ddd5c8;
  --muted:     #888;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Montserrat', sans-serif;
  background: var(--dark);
  color: var(--text);
  font-weight: 400;
}

/* ── LOGO TYPE ── */
.logo-kebab {
  font-family: 'Dancing Script', cursive;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.logo-deluxe {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: #fff;
}

/* ── HEADER ── */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2.5rem;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom: 1px solid var(--border);
  transition: background 0.3s;
}

a.logo {
  text-decoration: none;
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
}

a.logo .logo-kebab { font-size: 1.75rem; }
a.logo .logo-deluxe { font-size: 1.1rem; letter-spacing: 4px; }

nav a {
  color: var(--muted);
  text-decoration: none;
  margin-left: 2rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: color 0.2s;
}

nav a:hover { color: var(--gold); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 1px;
  transition: transform 0.3s, opacity 0.3s;
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: fixed;
  top: 68px;
  left: 0;
  right: 0;
  z-index: 199;
  background: var(--dark2);
  border-bottom: 1px solid var(--border);
  flex-direction: column;
  padding: 1rem 2.5rem;
  gap: 0;
}

.mobile-menu.open { display: flex; }

.mobile-menu a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}

.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu a:hover { color: var(--gold); }

/* ── HERO ── */
#hero-scroll-wrap {
  height: 250vh;
  position: relative;
}

.hero {
  height: 100svh;
  min-height: unset;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8rem 1.5rem 4rem;
  position: sticky;
  top: 0;
  overflow: hidden;
  background: var(--dark);
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  z-index: 0;
}


.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(13,13,13,.55) 0%, rgba(13,13,13,.82) 60%, var(--dark) 100%);
  z-index: 2;
}

.hero-content { position: relative; z-index: 3; }

/* Subtle top effects: light vignette and moving gold shimmer */
.hero::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 48%;
  pointer-events: none;
  /* combine a soft gold radial tint at the top and a moving subtle sheen */
  background-image:
    radial-gradient(ellipse at top center, rgba(201,168,76,0.06) 0%, rgba(201,168,76,0.02) 20%, transparent 50%),
    linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.04) 40%, rgba(201,168,76,0.08) 50%, rgba(255,255,255,0.02) 60%, rgba(255,255,255,0) 100%);
  background-repeat: no-repeat, repeat-x;
  background-size: cover, 240% 100%;
  opacity: 0.9;
  z-index: 2;
  mix-blend-mode: screen;
  animation: hero-shimmer 8s linear infinite;
}

@keyframes hero-shimmer {
  0% { background-position: center top, -120% 0; }
  50% { background-position: center top, 120% 0; }
  100% { background-position: center top, -120% 0; }
}

.hero-tagline {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}

.hero h1 {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.4rem;
  line-height: 1.05;
  margin-bottom: 1.8rem;
}

.hero h1 .logo-kebab { font-size: clamp(3.5rem, 12vw, 7rem); }
.hero-deluxe         { font-size: clamp(2rem,  7vw, 4.2rem); letter-spacing: 6px; }

.hero-sub {
  font-size: clamp(0.85rem, 2vw, 1rem);
  font-weight: 300;
  letter-spacing: 1px;
  color: var(--text);
  opacity: 0.75;
  margin-bottom: 2.8rem;
}

.btn {
  display: inline-block;
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 0.85rem 2.6rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.25s, color 0.25s;
}

.btn:hover {
  background: var(--gold);
  color: var(--dark);
}

.hero-scroll-hint {
  position: absolute;
  z-index: 2;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: var(--gold);
  font-size: 1.2rem;
  opacity: 0.5;
  animation: bob 2s ease-in-out infinite;
}

@keyframes bob {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

/* ── SHARED SECTION STYLES ── */
.section-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  text-align: center;
  margin-bottom: 0.6rem;
}

section h2 {
  text-align: center;
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 3.5rem;
  letter-spacing: 1px;
}

/* ── MENU SECTION ── */
.menu-section {
  position: relative;
  overflow: hidden;
  padding: 6rem 1.5rem 6.5rem;
  background:
    radial-gradient(circle at top left, rgba(201,168,76,.12), transparent 28%),
    radial-gradient(circle at bottom right, rgba(255,255,255,.04), transparent 22%),
    linear-gradient(180deg, #111111 0%, #0b0b0b 100%);
}

.menu-section::before,
.menu-section::after {
  content: '';
  position: absolute;
  inset: auto;
  pointer-events: none;
}

.menu-section::before {
  top: 2rem;
  left: -5rem;
  width: 18rem;
  height: 18rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,.12), transparent 70%);
  filter: blur(10px);
}

.menu-section::after {
  right: -4rem;
  bottom: 2rem;
  width: 16rem;
  height: 16rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,.06), transparent 68%);
}

.menu-shell {
  position: relative;
  z-index: 1;
  max-width: 1180px;
}

.menu-intro {
  max-width: 760px;
  margin: 0 auto 2.25rem;
  text-align: center;
  font-size: 0.88rem;
  line-height: 1.8;
  color: rgba(221,213,200,.78);
  font-weight: 300;
}

.menu-board {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.menu-column {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.menu-column-left {
  flex-basis: 0;
}

.menu-column-right {
  flex-basis: 0;
}

.menu-category {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(22,22,22,.98), rgba(14,14,14,.98));
  border: 1px solid rgba(201,168,76,.18);
  border-radius: 22px;
  padding: 1.35rem 1.35rem 1.15rem;
  box-shadow: 0 20px 60px rgba(0,0,0,.28);
  transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.menu-category:hover {
  transform: translateY(-2px);
  border-color: rgba(201,168,76,.38);
  box-shadow: 0 24px 72px rgba(0,0,0,.36);
}

.menu-category h3 {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.menu-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.menu-item {
  border-bottom: none;
}

.item-header {
  width: 100%;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.85rem;
  background: rgba(255,255,255,.015);
  border: 1px solid transparent;
  border-radius: 16px;
  cursor: pointer;
  padding: 0.78rem 0.86rem;
  text-align: left;
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.item-header:hover,
.menu-item.open .item-header {
  background: rgba(201,168,76,.08);
  border-color: rgba(201,168,76,.22);
  transform: translateY(-1px);
}

.item-number {
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(201,168,76,.12);
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  flex-shrink: 0;
}

.dish-name {
  font-size: 0.94rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.2;
}

.dish-name small {
  display: block;
  font-size: 0.72rem;
  color: var(--muted);
  margin-top: 0.18rem;
  font-weight: 300;
  letter-spacing: 0.02em;
}

.item-header-right {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  flex-shrink: 0;
}

.dish-price {
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
}

.item-arrow {
  width: 1.65rem;
  height: 1.65rem;
  border: 1px solid rgba(201,168,76,.35);
  border-radius: 999px;
  color: var(--gold);
  display: grid;
  place-items: center;
  font-size: 0.9rem;
  font-weight: 300;
  flex-shrink: 0;
  transition: transform 0.3s, border-color 0.3s, background 0.3s;
  line-height: 1;
}

.menu-item.open .item-arrow {
  transform: rotate(45deg);
  border-color: var(--gold);
  background: rgba(201,168,76,.12);
}

.item-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.menu-item.open .item-body {
  max-height: 1200px;
}

.item-desc {
  font-size: 0.93rem;
  line-height: 1.85;
  color: var(--text);
  padding: 0.7rem 0.86rem 0.95rem 0.86rem;
  font-weight: 400;
}

.dish-img {
  display: block;
  width: calc(100% - 1.72rem);
  height: auto;
  border-radius: 12px;
  margin: 0.8rem 0.86rem 0;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.dish-img.loaded {
  opacity: 1;
}

.dish-special .dish-name {
  color: var(--gold);
}

.dish-special .dish-price {
  color: var(--gold);
}

.dish-special .item-arrow {
  border-color: rgba(201,168,76,.5);
}

.menu-note {
  text-align: center;
  margin: 2.25rem auto 0;
  padding: 4rem 2rem;
  font-size: 0.78rem;
  font-weight: 300;
  letter-spacing: 1.4px;
  color: rgba(221,213,200,.76);
  text-transform: uppercase;
  border: 1px solid rgba(255,255,255,.08);
  max-width: 860px;
  border-radius: 16px;
  background:
    linear-gradient(rgba(13,13,13,.78), rgba(13,13,13,.78)),
    url('dish-images/omackynove.webp') center top / cover;
}

/* ── ABOUT ── */
.about-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
}

.about-img {
  background-size: cover;
  background-position: center;
  background-color: var(--dark3);
  padding-top: 2rem;
}

.about-text {
  background: var(--dark3);
  display: flex;
  align-items: center;
  padding: 5rem 4rem;
}

.about-text .section-label { text-align: left; }
.about-text h2 { text-align: left; margin-bottom: 1.5rem; }

.about-text p {
  font-size: 0.92rem;
  line-height: 1.9;
  color: var(--text);
  margin-bottom: 1rem;
  font-weight: 300;
}

.about-text p:last-child { margin-bottom: 0; }

.about-text strong { color: var(--gold); font-weight: 600; }

/* ── INFO ── */
.info-section {
  padding: 6rem 1.5rem;
  background: var(--dark);
}

.info-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 1080px;
  margin: 0 auto;
  align-items: stretch;
}

.info-map {
  border: 1px solid var(--border);
  overflow: hidden;
  transition: border-color 0.3s;
}

.info-map:hover { border-color: rgba(201,168,76,.4); }

.map-link {
  display: block;
  height: 100%;
  text-decoration: none;
}

.map-link iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 380px;
  border: none;
  pointer-events: none;
}

.info-boxes {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.info-box {
  padding: 1.75rem 2rem;
  border: 1px solid var(--border);
  background: var(--dark2);
  transition: border-color 0.3s;
}

.info-box:hover { border-color: rgba(201,168,76,.4); }

.info-icon-line {
  width: 28px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 1.2rem;
}

.info-box h3 {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.9rem;
}

.info-box p {
  font-size: 0.85rem;
  line-height: 1.9;
  color: var(--text);
  font-weight: 300;
  margin-bottom: 0.4rem;
}

.info-box p:last-child { margin-bottom: 0; }

.info-note {
  font-size: 0.75rem !important;
  color: var(--muted) !important;
  margin-top: 0.3rem;
}

.info-box a {
  color: var(--text);
  text-decoration: none;
  font-weight: 300;
  transition: color 0.2s;
}

.info-box a:hover { color: var(--gold); }

/* Hours table */
.hours-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.45rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.84rem;
}

.hours-row:last-child { border-bottom: none; }

.hours-day {
  color: var(--text);
  font-weight: 300;
}

.hours-time {
  color: #fff;
  font-weight: 600;
}

.hours-time.closed {
  color: var(--muted);
  font-weight: 300;
}
.footer-logo {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.3rem;
  margin-bottom: 1rem;
}

.footer-logo .logo-kebab { font-size: 1.8rem; }
.footer-deluxe { font-size: 1rem; letter-spacing: 4px; }

.footer-sub {
  font-size: 0.72rem;
  font-weight: 300;
  letter-spacing: 1.5px;
  color: var(--muted);
  text-transform: uppercase;
}

/* ── FADE-IN ANIMATION ── */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: none;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .menu-board {
    flex-direction: column;
    /* allow the board to extend very close to the viewport edges on small screens */
    padding-left: 0.25rem;
    padding-right: 0.25rem;
  }

  .section-inner {
    padding-left: 0.25rem;
    padding-right: 0.25rem;
    max-width: 100%;
  }

  .menu-column {
    width: 100%;
  }

  /* let the category cards expand to the full width of the column
     while keeping a small internal gutter so the rounded corners remain visible */
  .menu-category {
    width: 100%;
    /* almost full-bleed: tiny outer gap of ~4px (0.25rem) */
    margin-left: -0.25rem;
    margin-right: -0.25rem;
    /* keep internal padding for content */
    padding-left: 0.75rem;
    padding-right: 0.75rem;
    border-radius: 12px;
  }

  .about-section {
    grid-template-columns: 1fr;
  }

  .about-img {
    min-height: 300px;
    order: 2;
  }

  .about-text {
    padding: 3.5rem 2rem;
    order: 1;
  }
}

@media (max-width: 600px) {
  /* Header */
  header { 
    padding: 0 1.25rem;
    background: rgba(13,13,13,.58);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }
  nav { display: none; }
  .hamburger { display: flex; }
  .mobile-menu { padding: 0.5rem 1.25rem; }

  /* Hero */
  .hero { padding: 6rem 1.25rem 4rem; justify-content: flex-end; }
  .hero-bg {
    inset: auto;
    top: 12%;
    left: 0;
    width: 100%;
    height: 55%;
    object-fit: cover;
    object-position: center center;
  }
  .hero h1 { gap: 0.25rem; margin-bottom: 1.2rem; }
  .hero-sub { margin-bottom: 2rem; }
  #hero-scroll-wrap { height: 180vh; }

  /* Sections */
  /* Sections */
  /* reduce outer padding on very small screens so menu cards can reach the edges */
  .menu-section { padding: 4rem 0.25rem; }
  .info-section  { padding: 4rem 1.25rem; }

  section h2 { margin-bottom: 2rem; font-size: 1.5rem; }
  .menu-note { margin-top: 2rem; }

  /* Dish images */
  .dish-img { height: 160px; object-fit: cover; object-position: center center; }

  /* About */
  .about-img  { min-height: 220px; order: 2; }
  .about-text { padding: 2.5rem 1.25rem; order: 1; }

  /* Info */
  .info-layout  { grid-template-columns: 1fr; }
  .info-map iframe { min-height: 260px; }
  .info-box     { padding: 1.5rem 1.25rem; }
  .info-boxes   { gap: 1rem; }

  /* Force the menu board and its cards to use almost full width on small phones */
  .section-inner { padding-left: 0.25rem; padding-right: 0.25rem; }
  .menu-board { padding-left: 0; padding-right: 0; }
  .menu-category { margin-left: -0.25rem; margin-right: -0.25rem; padding-left: 0.5rem; padding-right: 0.5rem; border-radius: 10px; }

  /* Footer */
  footer { padding: 2rem 1.25rem; }
}

@media (max-width: 400px) {
  .hero h1 .logo-kebab { font-size: 3rem; }
  .hero-deluxe          { font-size: 1.8rem; letter-spacing: 3px; }
  .btn                  { padding: 0.75rem 1.8rem; font-size: 0.7rem; }
  .about-text           { padding: 2rem 1rem; }
}
