/* ============================================================
   VIET BABYLON — styles.css
   All desktop styles. No media queries here → responsive.css
   ============================================================ */

/* ── Custom Properties ──────────────────────────────────────── */
:root {
  --green-dark:    #1a3d2b;
  --green-mid:     #2d6a4f;
  --green-fresh:   #52b788;
  --green-light:   #b7e4c7;
  --terracotta:    #c1440e;
  --terracotta-lt: #e05c27;
  --gold:          #e9b12a;
  --gold-lt:       #f5d06b;
  --cream:         #fdf8f0;
  --cream-dark:    #f0e8d5;
  --dark:          #1c1c1c;
  --dark-mid:      #2c2c2c;
  --muted:         #6b7280;
  --white:         #ffffff;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;

  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06), 0 4px 16px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.08), 0 12px 40px rgba(0,0,0,0.12);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.10), 0 24px 64px rgba(0,0,0,0.16);
  --shadow-green: 0 4px 20px rgba(26,61,43,0.25), 0 12px 40px rgba(26,61,43,0.15);

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;

  --nav-h: 72px;
  --transition: 300ms cubic-bezier(0.22, 1, 0.36, 1);
}

/* ── Reset & Base ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--dark);
  line-height: 1.7;
  overflow-x: hidden;
}

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

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

ul { list-style: none; }

button {
  font-family: var(--font-body);
  cursor: pointer;
  border: none;
  background: none;
}

/* ── Container ──────────────────────────────────────────────── */
.container {
  width: 100%;
  margin: 0 auto;
  padding: 0 40px;
  max-width: 1280px;
}

/* ── Section shared tokens ───────────────────────────────────── */
section { padding: 96px 0; }

.section-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--green-fresh);
  margin-bottom: 12px;
}
.section-tag.light { color: var(--green-light); }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--dark);
  margin-bottom: 16px;
}
.section-title.light { color: var(--white); }

.section-sub {
  font-size: 1rem;
  color: var(--muted);
  max-width: 520px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

/* ── Buttons ─────────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--terracotta);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  padding: 14px 30px;
  border-radius: var(--radius-sm);
  box-shadow: 0 2px 8px rgba(193,68,14,0.30), 0 6px 20px rgba(193,68,14,0.18);
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}
.btn-primary:hover {
  background: var(--terracotta-lt);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(193,68,14,0.35), 0 10px 30px rgba(193,68,14,0.22);
}
.btn-primary:active { transform: translateY(0); }
.btn-primary:focus-visible {
  outline: 3px solid var(--terracotta);
  outline-offset: 3px;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  padding: 13px 30px;
  border-radius: var(--radius-sm);
  border: 2px solid rgba(255,255,255,0.65);
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
  transform: translateY(-2px);
}
.btn-outline:active { transform: translateY(0); }
.btn-outline:focus-visible {
  outline: 3px solid var(--white);
  outline-offset: 3px;
}

/* ── Scroll animations ───────────────────────────────────────── */
.animate-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 500ms cubic-bezier(0.22, 1, 0.36, 1),
              transform 500ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--delay, 0s);
}
.animate-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ================================================================
   NAVBAR
   ================================================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: background var(--transition), box-shadow var(--transition), backdrop-filter var(--transition);
}
.navbar.scrolled {
  background: rgba(26, 61, 43, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 24px rgba(0,0,0,0.18);
}

.navbar-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  height: var(--nav-h);
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.nav-logo-img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 0 2px var(--gold);
}
.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.nav-logo-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
}
.nav-logo-sub {
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-fresh);
}

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 auto;
}
.nav-link {
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  padding: 8px 14px;
  border-radius: 6px;
  position: relative;
  transition: color var(--transition), background var(--transition);
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  border-radius: 2px;
  background: var(--green-fresh);
  transition: width var(--transition);
}
.nav-link:hover { color: var(--white); }
.nav-link:hover::after { width: 60%; }
.nav-link:focus-visible { outline: 2px solid var(--green-fresh); outline-offset: 2px; }

/* CTA */
.nav-cta {
  display: flex;
  align-items: center;
  gap: 7px;
  flex-shrink: 0;
  background: var(--terracotta);
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 9px 18px;
  border-radius: var(--radius-sm);
  box-shadow: 0 2px 8px rgba(193,68,14,0.30);
  transition: background var(--transition), transform var(--transition);
}
.nav-cta:hover { background: var(--terracotta-lt); transform: translateY(-1px); }
.nav-cta:focus-visible { outline: 3px solid var(--terracotta); outline-offset: 3px; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: 6px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.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); }
.hamburger:focus-visible { outline: 2px solid var(--white); }

/* Mobile drawer */
.mobile-drawer {
  display: none;
  background: var(--green-dark);
  overflow: hidden;
  max-height: 0;
  transition: max-height 400ms cubic-bezier(0.22, 1, 0.36, 1);
}
.mobile-drawer.open { max-height: 400px; }
.mobile-nav {
  display: flex;
  flex-direction: column;
  padding: 16px 24px 24px;
  gap: 4px;
}
.mobile-nav-link {
  font-size: 1rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: color var(--transition);
}
.mobile-nav-link:hover { color: var(--green-fresh); }
.mobile-nav-cta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  background: var(--terracotta);
  color: var(--white);
  font-weight: 600;
  padding: 12px 20px;
  border-radius: var(--radius-sm);
  justify-content: center;
}

/* ================================================================
   HERO
   ================================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(26,61,43,0.75) 0%, transparent 70%),
    linear-gradient(to right, rgba(12,30,20,0.88) 0%, rgba(12,30,20,0.55) 60%, rgba(12,30,20,0.30) 100%);
}
.hero-grain {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  background-size: 180px 180px;
  opacity: 0.5;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  padding-top: var(--nav-h);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 680px;
}

.hero-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green-fresh);
  border: 1px solid rgba(82,183,136,0.40);
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
  backdrop-filter: blur(4px);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: 0;
}

.hero-rule {
  width: 80px;
  height: 3px;
  background: linear-gradient(to right, var(--gold), transparent);
  border-radius: 2px;
  margin: 24px 0;
}

.hero-sub {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  font-weight: 300;
  color: rgba(255,255,255,0.85);
  line-height: 1.6;
  margin-bottom: 36px;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.5);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  animation: bounceDown 2s ease-in-out infinite;
}
@keyframes bounceDown {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ================================================================
   ABOUT / STORY
   ================================================================ */
.about {
  background: var(--cream);
  padding: 96px 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-text {
  display: flex;
  flex-direction: column;
}

.about-text .section-title { margin-bottom: 20px; }

.about-body {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 16px;
}
.about-body:last-of-type { margin-bottom: 40px; }

.about-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 28px 0;
  border-top: 1px solid rgba(0,0,0,0.07);
  border-bottom: 1px solid rgba(0,0,0,0.07);
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 4px;
  flex: 1;
}
.stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--green-dark);
  line-height: 1;
}
.stat-label {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  line-height: 1.4;
}

.stat-divider {
  width: 1px;
  height: 48px;
  background: rgba(0,0,0,0.10);
  flex-shrink: 0;
}

/* About images */
.about-images {
  position: relative;
  height: 500px;
}

.about-img-main {
  position: absolute;
  top: 0;
  left: 0;
  width: 72%;
  height: 80%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-img-accent {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 55%;
  height: 62%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 4px solid var(--cream);
}
.about-img-accent img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-img-badge {
  position: absolute;
  top: 50%;
  left: 58%;
  transform: translate(-50%, -50%);
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 4px solid var(--white);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  z-index: 2;
}
.about-img-badge img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ================================================================
   MENU SECTION
   ================================================================ */
.menu-section {
  background: var(--cream-dark);
  padding: 96px 0;
}

.menu-layout {
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* Tabs */
.menu-tabs-wrap {
  margin-bottom: 40px;
}
.menu-tabs {
  display: flex;
  gap: 6px;
  background: rgba(255,255,255,0.60);
  padding: 6px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  overflow-x: auto;
  scrollbar-width: none;
}
.menu-tabs::-webkit-scrollbar { display: none; }
.menu-tab {
  flex: 1;
  text-align: center;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--muted);
  padding: 10px 10px;
  border-radius: 9px;
  white-space: nowrap;
  transition: background var(--transition), color var(--transition), box-shadow var(--transition);
}
.menu-tab:hover { color: var(--green-dark); background: rgba(255,255,255,0.80); }
.menu-tab.active {
  background: var(--green-dark);
  color: var(--white);
  box-shadow: var(--shadow-green);
}
.menu-tab:focus-visible { outline: 2px solid var(--green-fresh); outline-offset: 2px; }

/* Panels container */
.menu-panels { min-width: 0; }

/* Body layout — single column, no sidebar */
.menu-body {
  display: flex;
  flex-direction: column;
}

/* Dish list */
.menu-dishes { min-width: 0; }

.menu-panel { display: none; }
.menu-panel.active { display: block; }

.menu-category { margin-bottom: 32px; }
.menu-category:last-child { margin-bottom: 0; }

.menu-cat-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.cat-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.cat-dot.terracotta { background: var(--terracotta); }
.cat-dot.green { background: var(--green-fresh); }
.cat-dot.gold { background: var(--gold); }

.dish-list { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; }
.dish-list--3col { grid-template-columns: 1fr 1fr 1fr; }
.dish-list--1col { grid-template-columns: 1fr; }

.menu-3col { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 0 24px; }
.menu-col { min-width: 0; }
.menu-col-heading {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 0 14px 10px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 4px;
}
.menu-col-heading--ghost { visibility: hidden; }

.dish-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  padding: 11px 14px;
  border-radius: var(--radius-sm);
  transition: background var(--transition);
}
.dish-item:hover { background: rgba(255,255,255,0.80); }

/* Main content area (left side) */
.dish-main {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
  flex: 1;
}

/* Name row: number + name + fire + allergens */
.dish-header {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 5px;
  line-height: 1.3;
}

/* Dish number badge */
.dish-num {
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--terracotta);
  background: rgba(193,68,14,0.10);
  border-radius: 4px;
  padding: 1px 5px;
  flex-shrink: 0;
  line-height: 1.6;
  letter-spacing: 0.03em;
}

/* Dish name */
.dish-name {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--dark);
}

/* Allergen badge */
.alg {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(0,0,0,0.07);
  color: var(--dark-mid);
  font-size: 0.6rem;
  font-weight: 700;
  flex-shrink: 0;
  line-height: 1;
  cursor: default;
}

/* ── Allergen hover tooltip ───────────────────────────────────── */
.alg-tooltip {
  position: fixed;
  z-index: 9999;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 160ms ease, transform 160ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

.alg-tooltip.alg-tooltip--in {
  opacity: 1;
  transform: translateY(0);
}

.alg-tooltip-card {
  display: flex;
  flex-direction: column;
  gap: 0;
  background: linear-gradient(145deg, #252525 0%, #1b1b1b 100%);
  border: 1px solid rgba(233, 177, 42, 0.22);
  border-radius: 10px;
  padding: 6px 13px 6px 10px;
  box-shadow:
    0 2px 6px rgba(0,0,0,0.28),
    0 10px 32px rgba(0,0,0,0.22),
    inset 0 1px 0 rgba(255,255,255,0.05);
  white-space: nowrap;
  min-width: 0;
}

.alg-tooltip-row {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 5px 0;
}

.alg-tooltip-row + .alg-tooltip-row {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.alg-tooltip-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  color: var(--gold);
}

.alg-tooltip-sep {
  width: 1px;
  height: 18px;
  background: rgba(255,255,255,0.09);
  flex-shrink: 0;
}

.alg-tooltip-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(233, 177, 42, 0.12);
  border: 1px solid rgba(233, 177, 42, 0.32);
  color: var(--gold);
  font-size: 0.59rem;
  font-weight: 700;
  font-family: var(--font-body);
  flex-shrink: 0;
  line-height: 1;
}

.alg-tooltip-name {
  font-family: var(--font-body);
  font-size: 0.79rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.86);
  letter-spacing: 0.01em;
}

/* Arrow pointing down */
.alg-tooltip-arrow {
  display: block;
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid #1b1b1b;
  position: relative;
}

.alg-tooltip-arrow::before {
  content: '';
  position: absolute;
  top: -8px;
  left: -7px;
  width: 0;
  height: 0;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-top: 7px solid rgba(233, 177, 42, 0.22);
  z-index: -1;
}

/* Spicy chilli emoji */
.dish-fire {
  flex-shrink: 0;
  font-style: normal;
  font-size: 14px;
  line-height: 1;
  position: relative;
  top: 1px;
}

.dish-desc {
  font-size: 0.79rem;
  color: var(--muted);
  line-height: 1.4;
}

/* Multi-option dish (curries, wok noodles, etc.) */
.dish-item--multi .dish-price { display: none; }

/* Options block on the right side — sibling of .dish-main */
.dish-item > .dish-options {
  display: flex;
  flex-direction: column;
  gap: 3px;
  flex-shrink: 0;
  padding-top: 3px;
}

.dish-option {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.81rem;
  white-space: nowrap;
  justify-content: flex-end;
}

.opt-label {
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 4px;
}

.opt-price {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--gold);
  min-width: 50px;
  text-align: right;
}

/* Price */
.dish-price {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--gold);
  white-space: nowrap;
  flex-shrink: 0;
  padding-top: 2px;
}

/* Footer note below menu */
.menu-footer-note {
  text-align: center;
  font-size: 0.82rem;
  color: var(--muted);
  margin-top: 32px;
  padding: 16px;
  background: rgba(255,255,255,0.55);
  border-radius: var(--radius-sm);
}

/* ================================================================
   NÁPOJE SECTION
   ================================================================ */
.napoje-section {
  background: var(--green-dark);
  padding: 96px 0;
  position: relative;
}

.napoje-section .section-tag  { color: var(--green-fresh); }
.napoje-section .section-title { color: var(--white); }
.napoje-section .section-sub  { color: rgba(255,255,255,0.55); }

/* Tabs */
.napoje-tabs-wrap { margin-bottom: 48px; }
.napoje-tabs {
  display: inline-flex;
  gap: 6px;
  background: rgba(255,255,255,0.08);
  padding: 5px;
  border-radius: 100px;
}
.napoje-tab {
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(255,255,255,0.55);
  padding: 10px 24px;
  border-radius: 100px;
  white-space: nowrap;
  transition: background var(--transition), color var(--transition);
}
.napoje-tab:hover { color: var(--white); }
.napoje-tab.active {
  background: var(--green-mid);
  color: var(--white);
  box-shadow: 0 2px 12px rgba(0,0,0,0.25);
}
.napoje-tab:focus-visible { outline: 2px solid var(--green-fresh); outline-offset: 2px; }

/* Panels */
.napoje-panel { display: none; }
.napoje-panel.active { display: block; }

/* Column grid */
.napoje-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  align-items: start;
}

/* Group */
.napoje-group { display: flex; flex-direction: column; }

.napoje-group-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.10);
}

/* List */
.napoje-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.napoje-item {
  display: flex;
  align-items: baseline;
  gap: 6px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.napoje-item:last-child { border-bottom: none; }

.napoje-item-name {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.85);
  flex: 1;
}
.napoje-item-vol {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
  white-space: nowrap;
}
.napoje-item-price {
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--gold);
  white-space: nowrap;
  flex-shrink: 0;
}

/* Destiláty — all names in one item, allow wrapping */
.napoje-item--destilaty { align-items: flex-start; }
.napoje-item--destilaty .napoje-item-name {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
  white-space: normal;
}
.napoje-item--destilaty .napoje-item-vol,
.napoje-item--destilaty .napoje-item-price {
  align-self: baseline;
}

/* Multi-price row (e.g. Coca-Cola 0.33l / 0.5l) */
.napoje-item--multi {
  flex-direction: column;
  gap: 0;
  padding: 0;
  align-items: stretch;
}
.napoje-item-row {
  display: flex;
  align-items: baseline;
  gap: 6px;
  padding: 7px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.napoje-item-row:last-child { border-bottom: none; }
.napoje-item-row .napoje-item-name {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.85);
  flex: 1;
}
.napoje-item-row .napoje-item-vol {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
  white-space: nowrap;
}
.napoje-item-row .napoje-item-price {
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--gold);
  white-space: nowrap;
}

/* ================================================================
   ALERGENY SECTION
   ================================================================ */
.alergeny-section {
  background: var(--cream);
  padding: 80px 0;
}
.alergeny-section .section-header { margin-bottom: 40px; }
.alergeny-section .section-sub    { color: var(--muted); }

/* 14-allergen card grid */
.alergen-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 14px;
}

.alergen-card {
  background: #fff;
  border-radius: 12px;
  padding: 18px 10px 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0,0,0,0.07), 0 1px 3px rgba(0,0,0,0.04);
  border: 1px solid rgba(0,0,0,0.05);
  transition: transform 220ms cubic-bezier(0.22,1,0.36,1), box-shadow 220ms cubic-bezier(0.22,1,0.36,1);
}

.alergen-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.10), 0 2px 6px rgba(0,0,0,0.06);
}

.alergen-num {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--green-dark);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  letter-spacing: 0.01em;
}

.alergen-icon {
  color: var(--green-mid, #2d6a4f);
  width: 36px;
  height: 36px;
}

.alergen-name {
  font-size: 0.62rem;
  color: var(--dark-mid);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  line-height: 1.3;
}

/* ================================================================
   TERASA / GARDEN
   ================================================================ */
.terasa { padding: 0; }

.terasa-hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
}

.terasa-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.terasa-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(10,28,18,0.88) 0%, rgba(10,28,18,0.60) 55%, rgba(10,28,18,0.25) 100%);
}

.terasa-hero-content {
  position: relative;
  z-index: 1;
  padding: 80px 40px;
}

.terasa-text {
  max-width: 560px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.terasa-text .section-title { margin-bottom: 0; }
.terasa-body {
  font-size: 1rem;
  color: rgba(255,255,255,0.82);
  line-height: 1.8;
}

/* Mosaic */
.terasa-mosaic {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding: 40px 40px;
}

.mosaic-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 280px;
  box-shadow: var(--shadow-md);
}
.mosaic-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* transform handled by Ken Burns animation */
}
.mosaic-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.3), transparent 60%);
}

/* ================================================================
   GALLERY
   ================================================================ */
.gallery {
  background: var(--green-dark);
  padding: 96px 0;
}
.gallery .section-tag { color: var(--green-fresh); }
.gallery .section-title { color: var(--white); }
.gallery .section-sub { color: rgba(255,255,255,0.55); }

.gallery-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: 260px 260px;
  gap: 16px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 100%;
  box-shadow: var(--shadow-md);
}
.gallery-item.large {
  grid-row: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms cubic-bezier(0.22, 1, 0.36, 1);
}
.gallery-item:hover img { transform: scale(1.06); }

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,30,18,0.75) 0%, transparent 55%);
  display: flex;
  align-items: flex-end;
  padding: 18px;
  opacity: 0;
  transition: opacity var(--transition);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ================================================================
   CONTACT
   ================================================================ */
.contact {
  background: var(--cream);
  padding: 96px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-info { display: flex; flex-direction: column; }
.contact-info .section-title { margin-bottom: 32px; }

.contact-block {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 36px;
}

.contact-icon-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.contact-icon-row svg {
  flex-shrink: 0;
  margin-top: 3px;
  color: var(--green-fresh);
}
.contact-icon-row strong {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
}
.contact-icon-row p {
  font-size: 0.95rem;
  color: var(--dark);
  line-height: 1.5;
}
.contact-icon-row a {
  color: var(--terracotta);
  font-weight: 600;
  transition: color var(--transition);
}
.contact-icon-row a:hover { color: var(--terracotta-lt); }

/* Hours */
.hours-block { padding-top: 24px; border-top: 1px solid rgba(0,0,0,0.08); }
.hours-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 16px;
}
.hours-table { width: 100%; border-collapse: collapse; }
.hours-table td {
  padding: 8px 0;
  font-size: 0.9rem;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}
.hours-table .day { color: var(--dark); font-weight: 500; width: 50%; }
.hours-table .time { color: var(--muted); text-align: right; }
.hours-table tr.sunday .day,
.hours-table tr.sunday .time {
  color: var(--terracotta);
  font-weight: 600;
}

/* Map */
.contact-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  height: 480px;
  position: sticky;
  top: calc(var(--nav-h) + 20px);
}
.contact-map iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ================================================================
   FOOTER
   ================================================================ */
.footer {
  background: var(--green-dark);
  padding-top: 20px;
  padding-bottom: 20px;
}

.footer-main {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-top: 64px;
  padding-bottom: 48px;
}

.footer-logo-link {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.footer-logo-img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 0 2px var(--gold);
}
.footer-logo-text { display: flex; flex-direction: column; line-height: 1.15; }
.footer-logo-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
}
.footer-logo-sub {
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-fresh);
}

.footer-tagline {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  max-width: 300px;
}

.footer-col-title {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-fresh);
  margin-bottom: 20px;
}

.footer-nav ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-nav a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.65);
  transition: color var(--transition);
}
.footer-nav a:hover { color: var(--white); }

.footer-contact-col p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
  margin-bottom: 10px;
}
.footer-contact-col a {
  color: var(--gold);
  font-weight: 600;
  transition: color var(--transition);
}
.footer-contact-col a:hover { color: var(--gold-lt); }
.footer-hours-note { font-size: 0.82rem !important; }

.footer-bottom {
  /* border removed – no thin line between footer-main and copyright bar */
}
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  padding-bottom: 20px;
}
.footer-bottom-inner p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.40);
}
.footer-bottom-inner a {
  color: rgba(255,255,255,0.40);
  transition: color var(--transition);
}
.footer-bottom-inner a:hover { color: rgba(255,255,255,0.70); }

/* ── Focus visible reset ─────────────────────────────────────── */
:focus-visible { outline: 3px solid var(--green-fresh); outline-offset: 3px; }
:focus:not(:focus-visible) { outline: none; }

/* ── Nápoje: new 3-column structure ─────────────────────────── */
.napoje-col-stack {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.napoje-destilaty-note {
  font-size: 0.78em;
  font-weight: 400;
  color: rgba(255,255,255,0.4);
}

/* ── Menu footer note: icon alignment & link ────────────────── */
.menu-footer-icon {
  display: inline-block;
  vertical-align: middle;
  margin-right: 2px;
  color: var(--terracotta);
}
.menu-footer-link {
  color: var(--green-fresh);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color var(--transition);
}
.menu-footer-link:hover { color: var(--green-mid); }

/* ── Gallery mosaic: Ken Burns + shimmer + tilt ─────────────── */
@keyframes kenBurns1 {
  0%, 100% { transform: scale(1) translate(0, 0); }
  50%       { transform: scale(1.08) translate(-2%, 1%); }
}
@keyframes kenBurns2 {
  0%, 100% { transform: scale(1.05) translate(1%, 0); }
  50%       { transform: scale(1) translate(-1%, -1%); }
}
@keyframes kenBurns3 {
  0%, 100% { transform: scale(1) translate(2%, -1%); }
  50%       { transform: scale(1.07) translate(0, 1%); }
}

.mosaic-item {
  perspective: 800px;
  transition: box-shadow var(--transition), transform 500ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.mosaic-item:nth-child(1) img { animation: kenBurns1 8s ease-in-out infinite; }
.mosaic-item:nth-child(2) img { animation: kenBurns2 10s ease-in-out infinite 2s; }
.mosaic-item:nth-child(3) img { animation: kenBurns3 9s ease-in-out infinite 4s; }

/* Pause Ken Burns on hover — JS handles tilt */
.mosaic-item:hover img { animation-play-state: paused; }

/* Shimmer glint on hover */
.mosaic-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(125deg, transparent 35%, rgba(255,255,255,0.18) 50%, transparent 65%);
  transform: translateX(-120%);
  transition: transform 650ms cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
  z-index: 3;
  border-radius: var(--radius-md);
}
.mosaic-item:hover::after { transform: translateX(120%); }

/* Enhanced overlay on hover */
.mosaic-overlay {
  transition: background var(--transition);
}
.mosaic-item:hover .mosaic-overlay {
  background: linear-gradient(to top, rgba(26,61,43,0.75), rgba(26,61,43,0.15) 60%, transparent);
}

/* ── Contact section: compact hours ────────────────────────── */
.contact-info .section-title { margin-bottom: 24px; }
.contact-block { margin-bottom: 28px; }
.hours-block { padding-top: 16px; }
.hours-table td { padding: 10px 0; }
