/* ==========================================================================
   Koridor Pub — main stylesheet
   Warm wooden pub aesthetic: dark brown, walnut, black, gold, amber, cream.
   ========================================================================== */

:root {
  --c-bg: #12100e;
  --c-bg-2: #1a1613;
  --c-wood: #3b2a1e;
  --c-wood-2: #24180f;
  --c-walnut: #5a3a24;
  --c-gold: #c9a25a;
  --c-gold-2: #e6c079;
  --c-amber: #f0a94a;
  --c-cream: #f5efe4;
  --c-muted: #b8ac97;
  --c-line: rgba(201, 162, 90, 0.22);

  --font-serif: "Playfair Display", "Cormorant Garamond", Georgia, serif;
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --shadow-soft: 0 10px 40px rgba(0, 0, 0, 0.5);
  --shadow-gold: 0 10px 30px rgba(201, 162, 90, 0.18);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  background: var(--c-bg);
  color: var(--c-cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1.15;
}

.container {
  width: min(1200px, 92vw);
  margin: 0 auto;
}

/* ------------------- Buttons ------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.95rem 1.8rem;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 1px solid transparent;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.35s ease;
}
.btn-primary {
  background: linear-gradient(135deg, var(--c-gold), var(--c-amber));
  color: #1a1108;
  box-shadow: var(--shadow-gold);
}
.btn-primary:hover { transform: translateY(-2px); filter: brightness(1.08); }
.btn-outline {
  background: transparent;
  color: var(--c-cream);
  border-color: var(--c-gold);
}
.btn-outline:hover { background: var(--c-gold); color: #1a1108; }

/* ------------------- Navbar ------------------- */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.2rem 0;
  background: rgba(18, 16, 14, 0.15);
  backdrop-filter: blur(6px);
  transition: all 0.35s ease;
}
.navbar.scrolled {
  background: rgba(18, 16, 14, 0.95);
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--c-line);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--c-gold-2);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.brand-logo {
  height: 2.5rem;
  width: auto;
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.35);
}
.navbar.scrolled .brand-logo { height: 2.2rem; }
.nav-links {
  display: flex;
  gap: 2.2rem;
  list-style: none;
}
.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-cream);
  position: relative;
  padding: 0.3rem 0;
  transition: color 0.3s;
}
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--c-gold);
  transition: width 0.35s ease;
}
.nav-links a:hover { color: var(--c-gold-2); }
.nav-links a:hover::after { width: 100%; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--c-cream);
  font-size: 1.5rem;
  cursor: pointer;
}

/* ------------------- Hero ------------------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--c-cream);
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(10,7,4,0.55) 0%, rgba(10,7,4,0.75) 60%, rgba(10,7,4,0.95) 100%),
    url("https://images.unsplash.com/photo-1546622891-02c72c1537b6?w=1920&q=80") center/cover no-repeat;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 40%, rgba(240,169,74,0.18), transparent 60%);
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 0 1.5rem;
}
.hero-tag {
  display: inline-block;
  font-size: 0.8rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--c-gold-2);
  margin-bottom: 1.5rem;
  padding: 0.4rem 1rem;
  border: 1px solid var(--c-line);
  border-radius: 2px;
}
.hero h1 {
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  color: var(--c-cream);
  margin-bottom: 1rem;
  text-shadow: 0 4px 30px rgba(0,0,0,0.6);
}
.hero .accent-line {
  width: 80px;
  height: 2px;
  background: var(--c-gold);
  margin: 1.5rem auto;
}
.hero-sub {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: var(--c-gold-2);
  margin-bottom: 1rem;
}
.hero-small {
  color: var(--c-muted);
  font-size: 0.95rem;
  margin-bottom: 2.5rem;
  letter-spacing: 0.05em;
}
.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: var(--c-gold-2);
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  animation: bounce 2.4s infinite;
  z-index: 2;
}
.scroll-indicator i { display: block; margin-top: 0.5rem; font-size: 1rem; }
@keyframes bounce {
  0%, 100% { transform: translate(-50%, 0); opacity: 0.9; }
  50% { transform: translate(-50%, 10px); opacity: 0.5; }
}

/* ------------------- Sections ------------------- */
section { padding: 6rem 0; position: relative; }

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 4rem;
}
.eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: 1rem;
}
.section-head h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--c-cream);
  margin-bottom: 1rem;
}
.section-head .accent-line {
  width: 60px;
  height: 2px;
  background: var(--c-gold);
  margin: 1.2rem auto;
}
.section-head p { color: var(--c-muted); font-size: 1.05rem; }

/* ------------------- About ------------------- */
.about {
  background: linear-gradient(180deg, var(--c-bg) 0%, var(--c-bg-2) 100%);
}
.about-text {
  max-width: 780px;
  margin: 0 auto 4rem;
  text-align: center;
  color: var(--c-cream);
  font-size: 1.08rem;
  line-height: 1.9;
}
.about-text p + p { margin-top: 1.2rem; }
.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.feature-card {
  background: linear-gradient(160deg, rgba(90,58,36,0.28), rgba(36,24,15,0.55));
  border: 1px solid var(--c-line);
  padding: 2.5rem 1.8rem;
  text-align: center;
  border-radius: 4px;
  transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}
.feature-card:hover {
  transform: translateY(-6px);
  border-color: var(--c-gold);
  box-shadow: var(--shadow-gold);
}
.feature-icon {
  font-size: 2.4rem;
  color: var(--c-gold-2);
  margin-bottom: 1rem;
}
.feature-card h3 {
  font-size: 1.25rem;
  color: var(--c-cream);
  margin-bottom: 0.6rem;
}
.feature-card p { color: var(--c-muted); font-size: 0.95rem; }

/* ------------------- Menu (weekly image) ------------------- */
.menu-weekly {
  background:
    linear-gradient(180deg, rgba(18,16,14,0.9), rgba(18,16,14,0.95)),
    url("https://images.unsplash.com/photo-1600891964092-4316c288032e?w=1600&q=60") center/cover fixed;
}
.menu-image-wrap {
  max-width: 900px;
  margin: 0 auto;
  padding: 1rem;
  background: linear-gradient(145deg, var(--c-wood), var(--c-wood-2));
  border: 1px solid var(--c-line);
  box-shadow: var(--shadow-soft);
  border-radius: 4px;
}
.menu-image-wrap img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 2px;
  transition: transform 0.6s ease;
}
.menu-image-wrap img + img { margin-top: 1rem; }
.menu-image-wrap:hover img { transform: scale(1.015); }
.menu-actions {
  text-align: center;
  margin-top: 2.5rem;
}
.menu-actions .btn { margin: 0.35rem; }
.menu-note {
  text-align: center;
  color: var(--c-muted);
  font-size: 0.85rem;
  margin-top: 1.2rem;
  font-style: italic;
}

/* ------------------- Food & Drinks ------------------- */
.food-drinks { background: var(--c-bg-2); }
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.8rem;
}
.menu-card {
  background: linear-gradient(150deg, rgba(59,42,30,0.55), rgba(26,22,19,0.9));
  border: 1px solid var(--c-line);
  padding: 2.2rem 1.8rem;
  border-radius: 4px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  position: relative;
  overflow: hidden;
}
.menu-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--c-gold), transparent);
  opacity: 0.6;
}
.menu-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
}
.menu-card-head {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--c-line);
}
.menu-card-head i {
  color: var(--c-gold);
  font-size: 1.4rem;
}
.menu-card-head h3 {
  font-size: 1.35rem;
  color: var(--c-cream);
}
.menu-card ul { list-style: none; }
.menu-card li {
  padding: 0.55rem 0;
  color: var(--c-cream);
  font-size: 0.98rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.menu-card li::before {
  content: "";
  width: 4px; height: 4px;
  background: var(--c-gold);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ------------------- Bolt Food / Delivery ------------------- */
.bolt-food {
  background: linear-gradient(180deg, var(--c-bg-2) 0%, var(--c-bg) 100%);
  text-align: center;
}
.bolt-card {
  max-width: 700px;
  margin: 0 auto;
  padding: 3rem 2.5rem;
  background: linear-gradient(150deg, rgba(59,42,30,0.55), rgba(26,22,19,0.95));
  border: 1px solid var(--c-line);
  border-radius: 4px;
  box-shadow: var(--shadow-soft);
}
.bolt-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--c-gold);
  border-radius: 50%;
  color: var(--c-gold-2);
  font-size: 2rem;
}
.bolt-card h3 {
  font-size: 1.6rem;
  color: var(--c-cream);
  margin-bottom: 0.8rem;
}
.bolt-card > p {
  color: var(--c-muted);
  font-size: 1rem;
  max-width: 540px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}
.btn-bolt {
  background: linear-gradient(135deg, #34d186, #24b97a);
  color: #081c14;
  box-shadow: 0 10px 30px rgba(52, 209, 134, 0.22);
  font-weight: 700;
}
.btn-bolt:hover {
  transform: translateY(-2px);
  filter: brightness(1.08);
}

/* ------------------- Gallery ------------------- */
.gallery { background: var(--c-bg); }
.gallery-grid {
  columns: 3;
  column-gap: 1rem;
}
.gallery-item {
  break-inside: avoid;
  margin-bottom: 1rem;
  overflow: hidden;
  border-radius: 4px;
  position: relative;
  cursor: pointer;
  border: 1px solid var(--c-line);
}
.gallery-item img {
  width: 100%;
  height: auto;
  transition: transform 0.8s ease;
  display: block;
}
.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(0,0,0,0.7));
  opacity: 0;
  transition: opacity 0.4s ease;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item:hover::after { opacity: 1; }

.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
  margin-bottom: 2rem;
}
.gallery-filter {
  background: transparent;
  color: var(--c-text-2, #cbbba4);
  border: 1px solid var(--c-line);
  padding: 0.55rem 1.3rem;
  border-radius: 999px;
  font: inherit;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
}
.gallery-filter:hover { border-color: var(--c-gold, #c8a24a); color: var(--c-gold, #c8a24a); }
.gallery-filter.active {
  background: var(--c-gold, #c8a24a);
  border-color: var(--c-gold, #c8a24a);
  color: #1a1512;
}
.gallery-item.hidden { display: none; }
.gallery-empty {
  text-align: center;
  color: var(--c-text-2, #cbbba4);
  opacity: 0.8;
  padding: 2rem 0 1rem;
}

/* ------------------- Contact ------------------- */
.contact { background: var(--c-bg-2); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: stretch;
}
.contact-info {
  background: linear-gradient(160deg, rgba(59,42,30,0.4), rgba(26,22,19,0.9));
  border: 1px solid var(--c-line);
  padding: 2.5rem;
  border-radius: 4px;
}
.contact-block { margin-bottom: 2rem; }
.contact-block h3 {
  font-size: 1.15rem;
  color: var(--c-gold-2);
  margin-bottom: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.contact-block h3 i { color: var(--c-gold); }
.contact-block p, .contact-block a {
  color: var(--c-cream);
  font-size: 0.98rem;
  line-height: 1.7;
}
.contact-block a:hover { color: var(--c-gold-2); }
.hours-list {
  list-style: none;
  border-top: 1px solid var(--c-line);
}
.hours-list li {
  display: flex;
  justify-content: space-between;
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--c-line);
  font-size: 0.95rem;
  color: var(--c-cream);
}
.hours-list li.closed { color: var(--c-muted); }
.hours-list .day { font-weight: 500; }
.hours-list .time { color: var(--c-gold-2); font-family: var(--font-serif); }

.map-wrap {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--c-line);
  min-height: 480px;
}
.map-wrap iframe {
  width: 100%;
  height: 100%;
  min-height: 480px;
  border: 0;
  filter: grayscale(0.4) contrast(1.05) brightness(0.85);
}

/* ------------------- Footer ------------------- */
.footer {
  background: #0b0908;
  padding: 4rem 0 1.5rem;
  border-top: 1px solid var(--c-line);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer h4 {
  color: var(--c-gold-2);
  font-size: 1rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
  font-family: var(--font-sans);
  font-weight: 600;
}
.footer-brand h3 {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: var(--c-gold-2);
  margin-bottom: 0.5rem;
}
.footer-brand p {
  color: var(--c-muted);
  font-style: italic;
  margin-bottom: 1.2rem;
}
.footer ul { list-style: none; }
.footer ul li { padding: 0.35rem 0; }
.footer ul a { color: var(--c-cream); font-size: 0.95rem; transition: color 0.3s; }
.footer ul a:hover { color: var(--c-gold-2); }

.socials { display: flex; gap: 0.8rem; margin-top: 0.5rem; }
.socials a {
  width: 40px; height: 40px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid var(--c-line);
  border-radius: 50%;
  color: var(--c-gold-2);
  transition: all 0.3s;
}
.socials a:hover { background: var(--c-gold); color: #1a1108; border-color: var(--c-gold); }

.footer-bottom {
  border-top: 1px solid var(--c-line);
  padding-top: 1.5rem;
  text-align: center;
  color: var(--c-muted);
  font-size: 0.85rem;
}

/* ------------------- Back to top ------------------- */
.to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 46px; height: 46px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--c-gold), var(--c-amber));
  color: #1a1108;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: all 0.35s ease;
  z-index: 90;
  box-shadow: var(--shadow-gold);
}
.to-top.visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
.to-top:hover { filter: brightness(1.1); transform: translateY(-4px); }

/* ------------------- Fade-in on scroll ------------------- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ------------------- Responsive ------------------- */
@media (max-width: 900px) {
  .features { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .gallery-grid { columns: 2; }
  section { padding: 4.5rem 0; }
  .nav-toggle { display: block; }
  .nav-links {
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: rgba(18,16,14,0.98);
    flex-direction: column;
    gap: 0;
    padding: 1rem 0;
    border-top: 1px solid var(--c-line);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
  }
  .nav-links.open { max-height: 400px; }
  .nav-links li { text-align: center; padding: 0.8rem 0; }
  .menu-weekly { background-attachment: scroll; }
}
@media (max-width: 560px) {
  .gallery-grid { columns: 1; }
  .hero-buttons { flex-direction: column; align-items: center; }
  .hero-buttons .btn { width: 100%; max-width: 280px; justify-content: center; }
}
/* ================= MENU ACCORDION ================= */
.menu-accordion {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.menu-acc {
  background: var(--c-bg-1, #17130f);
  border: 1px solid rgba(212, 160, 74, 0.22);
  border-radius: 10px;
  overflow: hidden;
}
.menu-acc > summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 1.1rem 1.3rem;
  font-family: "Playfair Display", serif;
  font-size: 1.15rem;
  letter-spacing: 0.04em;
  color: #f3e9db;
  transition: background 0.25s ease, color 0.25s ease;
}
.menu-acc > summary::-webkit-details-marker { display: none; }
.menu-acc > summary:hover { background: rgba(212, 160, 74, 0.08); }
.acc-num {
  color: var(--c-gold, #d4a04a);
  font-weight: 700;
  min-width: 1.6rem;
}
.acc-title { flex: 1; }
.acc-chevron {
  color: var(--c-gold, #d4a04a);
  font-size: 0.85rem;
  transition: transform 0.25s ease;
}
.menu-acc[open] > summary { background: rgba(212, 160, 74, 0.1); }
.menu-acc[open] .acc-chevron { transform: rotate(180deg); }
.acc-body {
  padding: 0.4rem 1.3rem 1.6rem;
  border-top: 1px solid rgba(212, 160, 74, 0.15);
}
.acc-subtitle {
  margin: 1rem 0 0;
  color: var(--c-gold, #d4a04a);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
}
.acc-footer {
  margin-top: 1.4rem;
  font-style: italic;
  opacity: 0.75;
  font-size: 0.9rem;
}
.mi-group + .mi-group { margin-top: 1.8rem; }
.mi-group-title {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--c-gold, #d4a04a);
  margin: 1.4rem 0 0.6rem;
}
.mi-list { list-style: none; margin: 0; padding: 0; }
.mi {
  padding: 0.7rem 0;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.08);
}
.mi:last-child { border-bottom: none; }
.mi-line {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}
.mi-name { font-weight: 600; color: #f3e9db; }
.mi-dots {
  flex: 1;
  border-bottom: 1px dotted rgba(255, 255, 255, 0.22);
  transform: translateY(-3px);
}
.mi-price {
  color: var(--c-gold, #d4a04a);
  font-weight: 700;
  white-space: nowrap;
}
.mi-meta {
  display: block;
  font-size: 0.82rem;
  opacity: 0.7;
  margin-top: 0.15rem;
}
.mi-desc {
  display: block;
  font-size: 0.85rem;
  opacity: 0.6;
  margin-top: 0.1rem;
}
.allergens {
  max-width: 900px;
  margin: 2.5rem auto 0;
  padding: 1.2rem 1.4rem;
  border: 1px solid rgba(212, 160, 74, 0.2);
  border-radius: 10px;
}
.allergens h4 {
  color: var(--c-gold, #d4a04a);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.8rem;
  margin-bottom: 0.6rem;
}
.allergens ul { list-style: none; margin: 0; padding: 0; font-size: 0.88rem; opacity: 0.8; }
.allergens li { padding: 0.15rem 0; }
@media (max-width: 600px) {
  .menu-acc > summary { font-size: 1rem; padding: 0.95rem 1rem; }
  .acc-body { padding: 0.4rem 1rem 1.3rem; }
}

/* ================= MENU CARDS (odkazy na podstránky) ================= */
.menu-cards {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.menu-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.4rem;
  background: var(--c-bg-1, #17130f);
  border: 1px solid rgba(212, 160, 74, 0.22);
  border-radius: 10px;
  text-decoration: none;
  color: #f3e9db;
  transition: background 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
}
.menu-card:hover {
  background: rgba(212, 160, 74, 0.1);
  border-color: rgba(212, 160, 74, 0.5);
  transform: translateY(-2px);
}
.mc-num {
  font-family: "Playfair Display", serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--c-gold, #d4a04a);
  min-width: 2rem;
}
.mc-text { flex: 1; display: flex; flex-direction: column; gap: 0.2rem; }
.mc-title {
  font-family: "Playfair Display", serif;
  font-size: 1.15rem;
  letter-spacing: 0.04em;
}
.mc-sub { font-size: 0.8rem; opacity: 0.65; }
.mc-arrow { color: var(--c-gold, #d4a04a); font-size: 0.95rem; transition: transform 0.25s ease; }
.menu-card:hover .mc-arrow { transform: translateX(4px); }

/* ================= PODSTRÁNKA SEKCIE ================= */
.section-page { padding: 8rem 0 4rem; }
.section-page h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.9rem, 5vw, 2.8rem);
  color: #f3e9db;
}
.section-page .section-body { max-width: 900px; margin: 2rem auto 0; }
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--c-gold, #d4a04a);
  text-decoration: none;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}
.back-link:hover { text-decoration: underline; }
.section-page .menu-actions { margin-top: 2.5rem; }
@media (max-width: 600px) {
  .menu-card { padding: 1rem; }
  .mc-title { font-size: 1rem; }
  .section-page { padding: 6.5rem 0 3rem; }
}

/* Anchor targets clear the sticky navbar */
section[id] { scroll-margin-top: 90px; }
