
:root {
  --bg: #f5f1ea;
  --fg: #111111;
  --muted: #d9d0c3;
  --muted-text: #666057;
  --border: #d8d1c6;
  --primary: #b2904d;
  --primary-contrast: #ffffff;
  --action:#70333b; 	
  --container: 1280px;
  --shadow: 0 10px 30px rgba(0,0,0,.08);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: var(--bg);
  color: var(--fg);
  line-height: 1.4;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(var(--container), calc(100% - 2rem)); margin: 0 auto; }
.label-text { font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; font-weight: 700; }
.link-hover:hover { color: var(--fg); }
.hidden-mobile { display: none; }
@media (min-width: 640px) { .hidden-mobile { display: flex; } }
.year-bar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 60;
  background: var(--fg); color: var(--bg); height: 2.25rem;
}
.year-bar .container, .site-nav .container { display: flex; align-items: center; }
.year-bar .container { gap: 1.5rem; height: 100%; }
.year-current { color: var(--primary); }
.year-disabled { opacity: .45; }
.site-nav {
  position: fixed; top: 2.25rem; left: 0; right: 0; z-index: 50;
  background: rgba(245,241,234,.92); backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border); height: 3.5rem;
}
.site-nav .container { justify-content: space-between; height: 100%; gap: 1rem; }
.nav-links { gap: 1.5rem; align-items: center; }
.btn, button.btn {
  display: inline-block; border: 0; cursor: pointer;
  background: var(--primary); color: var(--primary-contrast);
  padding: .95rem 1.25rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  transition: transform .2s ease, opacity .2s ease, background .2s ease;
}
.btn:hover, button.btn:hover { transform: scale(1.03); }
.btn:active, button.btn:active { transform: scale(.98); }
.btn-outline {
  background: transparent; color: var(--fg); border: 2px solid var(--fg);
}

.hero-media {
  position: relative; width: 100%; min-height: 60vh; height: 60vh; margin-top: 5.75rem; overflow: hidden;
}
.hero-media.tall { min-height: 50vh; height: 40vh; }
.hero-media img, .hero-media .placeholder {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
}
.hero-media .placeholder {
  display: grid; place-items: center; background: var(--muted); color: var(--muted-text);
}
.hero-gradient { position: absolute; inset: 0; background: linear-gradient(to top, rgba(245,241,234,.84), rgba(245,241,234,0)); }
.hero-copy {
  position: relative; z-index: 2; margin-top: -8rem; padding-bottom: 6rem;
}
.hero-copy h1, .section-title, .gallery-hero h1 {
  margin: 0; font-weight: 900; letter-spacing: -.04em; line-height: .95;
}
.hero-copy h1 { font-size: clamp(3.25rem, 10vw, 8rem); }
.hero-copy .subtitle { font-size: clamp(1.5rem, 4vw, 3rem); font-weight: 900; text-transform: uppercase; margin-top: .8rem; }
.hero-copy .meta { display: flex; flex-wrap: wrap; align-items: center; gap: 1rem; margin-top: 2rem; }
.badge { background-color:var(--action); color: var(--primary-contrast); padding: .65rem 1rem; }
.lead { margin-top: 2rem; max-width: 65ch; color: var(--muted-text); font-size: clamp(1.05rem, 2vw, 1.3rem); }
.cta-row { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2rem; }
.stats { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.stats-grid { display: grid; grid-template-columns: repeat(2, 1fr); }
.stat { text-align: center; padding: 2rem 1rem; border-right: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.stat:nth-child(2n) { border-right: 0; }
.stat strong { display: block; font-size: clamp(2.3rem, 4vw, 3.5rem); font-weight: 900; }
.section { padding: 6rem 0; }
.section-title { font-size: clamp(2.5rem, 6vw, 5rem); margin-bottom: 3rem; }
.divider-list > * { border-bottom: 1px solid var(--border); }
.walk-item, .program-item, .gallery-prog-item { padding: 1.6rem 0; }
.walk-top, .program-row { display: flex; flex-direction: column; gap: .5rem; }
.item-title { font-size: clamp(1.35rem, 2vw, 2.05rem); font-weight: 900; letter-spacing: -.03em; text-transform: uppercase; margin: 0; }
.time { color: var(--primary); }
.muted { color: var(--muted-text); }
.tag-row { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1rem; }
.tag { border: 1px solid var(--border); padding: .45rem .7rem; color: var(--muted-text); }
.gallery-grid { display: grid; gap: 0; }
.gallery-card { padding: 1.5rem 0; border-bottom: 1px solid var(--border); }
.gallery-card .item-title { font-size: clamp(1.2rem, 2vw, 1.7rem); }
.gallery-link { display: inline-flex; align-items: center; gap: .5rem; margin-top: .7rem; color: var(--primary); }
.tickets {
  background: var(--fg); color: var(--bg);
}
.tickets-grid, .gallery-exhibit-grid { display: grid; gap: 2rem; }
.tickets .muted, .tickets .small { color: rgba(245,241,234,.65); }
.ticket-price { font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 900; color: var(--primary); }
.check-list { list-style: none; padding: 0; margin: 2rem 0 0; }
.check-list li { display: flex; gap: .8rem; margin-bottom: 1rem; }
.video-box, .logo-box, .image-box {
  background: var(--muted); display: grid; place-items: center; color: var(--muted-text);
}
.video-box { aspect-ratio: 16 / 9; overflow: hidden; }
.logo-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 1rem; }
.logo-box { aspect-ratio: 3 / 2; }
.footer { border-top: 1px solid var(--border); padding: 2.6rem 0; }
.footer-inner { display: flex; flex-direction: column; gap: 1rem; }
.footer-links { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.reveal { opacity: 0; transform: translateY(14px); transition: opacity .5s ease, transform .5s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.gallery-hero { position: relative; z-index: 2; margin-top: -8rem; padding-bottom: 6rem; }
.gallery-hero h1 { font-size: clamp(3rem, 9vw, 7rem); }
.two-col { display: grid; gap: 2rem; }
.aspect-43 { aspect-ratio: 4 / 3; }
.small { font-size: .92rem; }
.back-link { display: inline-flex; align-items: center; gap: .5rem; }
@media (min-width: 768px) {
  .stats-grid { grid-template-columns: repeat(4,1fr); }
  .stat { border-bottom: 0; }
  .stat:nth-child(2) { border-right: 1px solid var(--border); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-card:nth-child(even) { border-left: 1px solid var(--border); padding-left: 2rem; }
  .gallery-card:nth-child(odd) { padding-right: 2rem; }
}
@media (min-width: 900px) {
  .walk-top, .program-row { flex-direction: row; justify-content: space-between; align-items: flex-start; }
  .tickets-grid, .gallery-exhibit-grid, .two-col { grid-template-columns: 1fr 1fr; gap: 4rem; }
  .footer-inner { flex-direction: row; justify-content: space-between; align-items: center; }
  .logo-grid { grid-template-columns: repeat(6,1fr); }
}
@media (max-width: 639px) {
  .site-nav .btn { padding: .8rem 1rem; font-size: .72rem; }
}
.video-wrapper {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 arány */
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
