:root {
  --bg-dark: #050607;
  --bg-card: rgba(20, 20, 20, 0.92);
  --accent: #f4b25f;
  --accent-2: #f25d4b;
  --accent-soft: rgba(244, 178, 95, 0.16);
  --text: #f8f6f2;
  --text-muted: #b8b2a5;
  --border-soft: rgba(255, 255, 255, 0.08);
  --shadow-soft: 0 18px 45px rgba(0, 0, 0, 0.65);
  --radius-lg: 18px;
  --radius-md: 14px;
  --radius-pill: 999px;
}

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

html {
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  min-height: 100vh;
  width: 100%;
  overflow-x: hidden;
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  color: var(--text);
  background: #000;
}

img,
iframe,
video {
  max-width: 100%;
}

/* Shared header/nav (copied to keep menu page standalone) */
.top-bar {
  background: #111;
  color: var(--text-muted);
  font-size: 0.78rem;
  border-bottom: 1px solid var(--border-soft);
}

.top-bar-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0.5rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.top-bar-label {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 600;
  margin-right: 0.5rem;
}

.top-bar-phone {
  font-weight: 500;
}

.lang-label {
  margin-right: 0.35rem;
}

.lang-select {
  background: #181818;
  color: var(--text-muted);
  border-radius: 999px;
  border: 1px solid var(--border-soft);
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
}

.main-nav {
  position: sticky;
  top: 0;
  z-index: 10;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.96),
    rgba(0, 0, 0, 0.92)
  );
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border-soft);
}

.nav-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0.25rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: inherit;
}

.brand-logo {
  width: 64px;
  height: 64px;
  object-fit: contain;
  filter: drop-shadow(0 0 12px rgba(0, 0, 0, 0.7));
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.brand-name {
  font-family: "Shadows Into Light", cursive;
  font-size: 1rem;
  letter-spacing: 0.08em;
}

.brand-tagline {
  font-size: 0.55rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--text-muted);
}

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 1.7rem;
  margin: 0;
  padding: 0;
}

.nav-links a {
  position: relative;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.7rem;
  color: var(--text-muted);
  transition: color 0.2s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.35rem;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.2s ease;
}

.nav-links a:hover {
  color: var(--text);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-current {
  color: var(--text) !important;
}

.nav-current::after {
  width: 100% !important;
}

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

.nav-toggle span {
  width: 22px;
  height: 2px;
  border-radius: var(--radius-pill);
  background: var(--text);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

/* Menu hero */
.menu-hero {
  position: relative;
  padding: 5rem 1.25rem 2.25rem;
  background-image: linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.55),
      rgba(0, 0, 0, 0.92)
    ),
    url("../img/1pavimenu/szlngtapa.png");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.menu-hero-inner {
  max-width: 1120px;
  margin: 0 auto;
  width: 100%;
  text-align: center;
  padding-inline: 0.5rem;
}

.menu-hero-kicker {
  margin: 0 0 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-size: 0.9rem;
  color: #f5e0b3;
}

.menu-hero-title {
  margin: 0 0 0.8rem;
  font-size: clamp(2.7rem, 5vw, 4rem);
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #f2b46a;
  text-shadow: 0 4px 16px rgba(0, 0, 0, 0.7);
}

.menu-hero-subtitle {
  margin: 0 auto;
  max-width: 48rem;
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.8;
  text-shadow: 0 3px 12px rgba(0, 0, 0, 0.7);
}

.menu-content {
  background: radial-gradient(circle at top, #1a0e0b 0%, #050607 55%, #020202 100%);
  padding: 1.75rem 0 3.25rem;
}

.menu-inner {
  max-width: 1120px;
  margin: 0 auto;
  width: 100%;
  padding: 0 1.25rem;
}

/* Branch selector */
.branch-switch {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: -1.25rem;
  margin-bottom: 1.6rem;
}

.branch-pill {
  appearance: none;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(0, 0, 0, 0.65);
  color: var(--text);
  border-radius: var(--radius-pill);
  padding: 0.7rem 1.2rem;
  cursor: pointer;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.72rem;
  font-weight: 600;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.7);
  transition: transform 0.16s ease, background-color 0.16s ease,
    border-color 0.16s ease;
}

.branch-pill:hover {
  transform: translateY(-1px);
  border-color: rgba(244, 178, 95, 0.6);
}

.branch-pill[aria-pressed="true"] {
  background: linear-gradient(to right, rgba(244, 178, 95, 0.16), rgba(242, 93, 75, 0.12));
  border-color: rgba(244, 178, 95, 0.8);
}

.branch-note {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.95rem;
  margin: 0 0 2rem;
}

/* Category blocks */
.branch {
  display: block;
}

.branch.branch-hidden {
  display: none;
}

.menu-category {
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  padding: 2rem 1.75rem;
  margin-bottom: 1.5rem;
  overflow: hidden;
}

.menu-category-header {
  text-align: center;
  margin-bottom: 1.4rem;
}

.menu-category-eyebrow {
  margin: 0 0 0.4rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.65);
}

.menu-category-title {
  margin: 0;
  font-family: "Shadows Into Light", cursive;
  letter-spacing: 0.14em;
  font-size: clamp(1.8rem, 2.8vw, 2.35rem);
  color: var(--text);
}

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

.menu-items-dessert .menu-item {
  grid-template-columns: minmax(0, 1fr) auto;
}

.menu-item.menu-item--text-only {
  grid-template-columns: minmax(0, 1fr) auto;
}

.menu-item {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr) auto;
  align-items: start;
  gap: 0.85rem;
  padding: 0.95rem 1rem;
  border-radius: var(--radius-md);
  background: rgba(20, 20, 20, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.55);
}

.menu-item-photo {
  width: 64px;
  height: 64px;
  border-radius: 14px;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.menu-item-name {
  margin: 0;
  font-size: 0.98rem;
  letter-spacing: 0.02em;
  color: var(--text);
}

.menu-item-desc {
  margin: 0.25rem 0 0;
  color: var(--text-muted);
  font-size: 0.82rem;
  line-height: 1.55;
}

.menu-item-price {
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--accent);
  font-size: 0.9rem;
  padding-left: 0.2rem;
  white-space: nowrap;
}

.menu-item-tag {
  display: inline-flex;
  margin-top: 0.55rem;
  padding: 0.22rem 0.55rem;
  border-radius: 999px;
  border: 1px solid rgba(242, 93, 75, 0.45);
  color: rgba(255, 255, 255, 0.82);
  background: rgba(242, 93, 75, 0.1);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* Footer (same vibe as homepage) */
.site-footer {
  position: relative;
  background: linear-gradient(180deg, #0d0a08 0%, #0a0806 50%, #050607 100%);
  color: var(--text);
  padding: 0;
}

.footer-accent {
  height: 4px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    var(--accent) 20%,
    #e09a4a 50%,
    var(--accent) 80%,
    transparent 100%
  );
  width: 100%;
}

.footer-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 3rem 1.5rem 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem 2.5rem;
}

.footer-heading {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent);
  margin: 0 0 0.75rem;
}

.footer-address {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text);
  margin: 0 0 0.35rem;
}

.footer-text {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--text-muted);
  margin: 0;
}

.footer-hours {
  margin: 0;
  font-size: 0.9rem;
}

.footer-hours dt {
  color: var(--text-muted);
  font-weight: 500;
  margin-top: 0.5rem;
}

.footer-hours dt:first-child {
  margin-top: 0;
}

.footer-hours dd {
  color: var(--text);
  margin: 0.15rem 0 0;
  font-weight: 500;
}

.footer-muted {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-style: italic;
  margin: 0.5rem 0 0;
}

.footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-list li {
  margin-bottom: 0.4rem;
}

.footer-list a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s ease;
}

.footer-list a:hover {
  color: var(--accent);
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.footer-social-link {
  display: inline-block;
  color: var(--text-muted);
  font-size: 0.85rem;
  text-decoration: none;
  padding: 0.4rem 0.9rem;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.footer-social-link:hover {
  color: var(--accent);
  border-color: rgba(244, 178, 95, 0.4);
  background: var(--accent-soft);
}

.footer-bottom {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-soft);
  text-align: center;
}

.footer-copy {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin: 0;
  letter-spacing: 0.02em;
}

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

@media (max-width: 900px) {
  .menu-hero {
    background-attachment: scroll;
  }
}

@media (max-width: 720px) {
  .top-bar-inner {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0.55rem 1rem;
    gap: 0.35rem;
  }

  .top-bar-left,
  .top-bar-right {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    width: 100%;
  }

  .top-bar-phone {
    font-size: 0.72rem;
  }

  .nav-inner {
    gap: 0.75rem;
    padding-inline: 1rem;
  }

  .brand {
    flex: 1;
    min-width: 0;
  }

  .brand-logo {
    width: 54px;
    height: 54px;
  }

  .brand-tagline {
    display: none;
  }

  .nav-links {
    position: fixed;
    inset: 59px 0 auto 0;
    background: rgba(0, 0, 0, 0.97);
    backdrop-filter: blur(18px);
    flex-direction: column;
    align-items: flex-start;
    gap: 0.9rem;
    padding: 0.9rem 1.25rem 1.3rem;
    border-bottom: 1px solid var(--border-soft);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.2s ease, opacity 0.2s ease;
  }

  .nav-links.nav-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-toggle.nav-open span:nth-child(1) {
    transform: translateY(4px) rotate(45deg);
  }

  .nav-toggle.nav-open span:nth-child(2) {
    transform: translateY(-4px) rotate(-45deg);
  }

  .menu-hero {
    padding: 3.5rem 1rem 2rem;
    background-attachment: scroll;
  }

  .menu-inner {
    padding-inline: 1rem;
  }

  .branch-switch {
    justify-content: center;
  }

  .branch-note {
    text-align: center;
  }

  .menu-category {
    padding: 1.6rem 1.1rem;
  }

  .menu-item {
    grid-template-columns: 58px minmax(0, 1fr) auto;
    padding: 0.9rem 0.9rem;
  }

  .menu-item-photo {
    width: 58px;
    height: 58px;
  }

  .footer-inner {
    padding-inline: 1.25rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 1.75rem;
  }

  .footer-social {
    justify-content: center;
  }

  .footer-list {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}

