/* ═══════════════════════════════════════════
   City Fun Šaľa — tokens
   Farby prevzaté z loga (hrad, obloha, tráva)
   ═══════════════════════════════════════════ */
:root {
  --c-red:     #E4645C;
  --c-sky:     #5BA9D8;
  --c-sky-dk:  #3B7FAC;
  --c-green:   #7DC470;
  --c-yellow:  #F3C63E;
  --c-purple:  #9B8EC4;
  --c-grass:   #86B84E;

  --bg:        #F2F8FC;
  --bg-sky:    #CDE8F8;
  --surface:   #FFFFFF;
  --ink:       #2C3A4A;
  --ink-soft:  #61748A;
  --line:      #E2ECF3;

  /* Baloo 2 pokrýva celú slovenskú diakritiku — Fredoka nie (chýbali jej mäkčene). */
  --font-display: "Baloo 2", "Trebuchet MS", system-ui, sans-serif;
  --font-body:    "Nunito", system-ui, -apple-system, sans-serif;

  --text-lede:  clamp(1.05rem, 0.98rem + 0.35vw, 1.25rem);
  --text-h2:    clamp(1.9rem, 1.4rem + 2.2vw, 3rem);
  --text-hero:  clamp(2.4rem, 1.4rem + 4.6vw, 4.5rem);

  --space-section: clamp(4rem, 3rem + 4vw, 7.5rem);
  --radius:     28px;
  --radius-sm:  16px;

  --shadow-sm:  0 2px 8px rgba(44, 58, 74, 0.06);
  --shadow-md:  0 10px 30px -8px rgba(44, 58, 74, 0.18);
  --shadow-lg:  0 26px 60px -18px rgba(44, 58, 74, 0.32);

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --dur:  320ms;
}

/* ─── reset ─── */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; }

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

img, iframe { display: block; max-width: 100%; }
/* line-height 1.14: Baloo 2 má vysoké mäkčene, pri 1.08 by sa riadky dotýkali. */
h1, h2, h3 { font-family: var(--font-display); line-height: 1.14; letter-spacing: -0.015em; }
a { color: inherit; }

.wrap { width: min(1180px, 100% - 2.5rem); margin-inline: auto; }

.sr-only, .skip-link {
  position: absolute; width: 1px; height: 1px;
  padding: 0; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap;
}
.skip-link:focus {
  position: fixed; inset-inline-start: 1rem; inset-block-start: 1rem;
  width: auto; height: auto; clip: auto;
  background: var(--surface); padding: 0.75rem 1.25rem;
  border-radius: var(--radius-sm); z-index: 999; box-shadow: var(--shadow-md);
}

:focus-visible {
  outline: 3px solid var(--c-purple);
  outline-offset: 3px;
  border-radius: 6px;
}

/* ═══ HEADER ═══ */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(242, 248, 252, 0.82);
  backdrop-filter: blur(14px) saturate(1.4);
  border-bottom: 1px solid rgba(226, 236, 243, 0.9);
}
.header-inner {
  display: flex; align-items: center; gap: 1.5rem;
  min-height: 76px;
}

.brand { display: flex; align-items: center; gap: 0.7rem; text-decoration: none; }
.brand img { border-radius: 50%; }
.brand-text {
  font-family: var(--font-display); font-weight: 700;
  font-size: 1.3rem; line-height: 1; color: var(--c-red);
}
.brand-text span { color: var(--c-green); }
.brand-text small {
  display: block; font-family: var(--font-body); font-weight: 700;
  font-size: 0.6rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--ink-soft); margin-top: 3px;
}

.nav { margin-inline-start: auto; display: flex; gap: 1.75rem; }
.nav a {
  font-weight: 700; font-size: 0.94rem; text-decoration: none;
  color: var(--ink-soft); position: relative; padding: 0.25rem 0;
  transition: color var(--dur) var(--ease);
}
.nav a::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 100%; height: 3px; border-radius: 3px; background: var(--c-yellow);
  transform: scaleX(0); transform-origin: right;
  transition: transform var(--dur) var(--ease);
}
.nav a:hover { color: var(--ink); }
.nav a:hover::after { transform: scaleX(1); transform-origin: left; }

.status-chip {
  display: inline-flex; align-items: center; gap: 0.55rem;
  padding: 0.5rem 1rem 0.5rem 0.75rem;
  background: var(--surface); border-radius: 999px;
  font-weight: 700; font-size: 0.85rem; text-decoration: none;
  box-shadow: var(--shadow-sm);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.status-chip:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.chip-dot {
  width: 11px; height: 11px; border-radius: 50%;
  background: var(--ink-soft); flex: none;
  box-shadow: 0 0 0 0 currentColor;
}
[data-state="open"]  .chip-dot { background: var(--c-green);  color: var(--c-green);  animation: pulse 2.4s var(--ease) infinite; }
[data-state="soon"]  .chip-dot { background: var(--c-yellow); color: var(--c-yellow); }
[data-state="closed"] .chip-dot { background: var(--c-red);   color: var(--c-red); }

@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(125, 196, 112, 0.6); }
  70%  { box-shadow: 0 0 0 9px rgba(125, 196, 112, 0); }
  100% { box-shadow: 0 0 0 0 rgba(125, 196, 112, 0); }
}

/* ═══ HERO ═══ */
.hero { position: relative; padding-block: clamp(3rem, 2rem + 4vw, 5.5rem) 9rem; overflow: hidden; }
.sky {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, var(--bg-sky) 0%, #E7F4FB 55%, var(--bg) 100%);
  z-index: -2;
}
.cloud {
  position: absolute; border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  filter: blur(0.4px);
  animation: drift 46s linear infinite;
}
.cloud::before, .cloud::after {
  content: ""; position: absolute; border-radius: 50%; background: inherit;
}
/* Oblaky držíme v hornom pásme, aby nechodili za nadpisom. */
.cloud-1 { width: 190px; height: 52px; top: 11%; left: -12%; opacity: 0.7; }
.cloud-1::before { width: 78px; height: 78px; top: -34px; left: 32px; }
.cloud-1::after  { width: 54px; height: 54px; top: -22px; left: 104px; }
.cloud-2 { width: 130px; height: 38px; top: 17%; left: -20%; animation-duration: 64s; animation-delay: -18s; opacity: 0.5; }
.cloud-2::before { width: 56px; height: 56px; top: -26px; left: 24px; }
.cloud-3 { width: 220px; height: 60px; top: 5%;  left: -35%; animation-duration: 80s; animation-delay: -40s; opacity: 0.45; }
.cloud-3::before { width: 90px; height: 90px; top: -40px; left: 46px; }

@keyframes drift { to { transform: translateX(145vw); } }

.balloon {
  position: absolute; width: 26px; height: 32px; border-radius: 50% 50% 45% 45%;
  animation: float 9s ease-in-out infinite;
}
.balloon::after {
  content: ""; position: absolute; top: 100%; left: 50%;
  width: 1px; height: 34px; background: rgba(44, 58, 74, 0.2);
}
/* Balóny žijú v okrajoch mimo obsahu — pod 1200px už miesto nemajú (viď @media). */
.balloon-1 { background: var(--c-red);    top: 24%; right: 1.5%; }
.balloon-2 { background: var(--c-yellow); top: 46%; left: 1.5%; animation-delay: -3.5s; }
@keyframes float {
  0%, 100% { transform: translateY(0) rotate(-3deg); }
  50%      { transform: translateY(-18px) rotate(3deg); }
}

.grass {
  position: absolute; left: 0; right: 0; bottom: 0; height: 130px;
  background:
    radial-gradient(120% 100% at 50% 100%, var(--c-grass) 0%, var(--c-grass) 60%, transparent 61%),
    linear-gradient(180deg, transparent 0%, rgba(134, 184, 78, 0.15) 100%);
  z-index: -1;
}
.grass::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 20% 40%, rgba(255,255,255,0.18) 0 3px, transparent 4px),
              radial-gradient(circle at 70% 60%, rgba(255,255,255,0.14) 0 4px, transparent 5px);
  background-size: 90px 90px, 140px 140px;
}

.hero-inner {
  display: grid; grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(2rem, 1rem + 4vw, 4.5rem); align-items: center;
}

.eyebrow {
  font-weight: 700; font-size: 0.78rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--c-sky-dk); margin-bottom: 0.9rem;
}

h1 { font-size: var(--text-hero); font-weight: 700; color: var(--ink); }
h1 em {
  font-style: normal; color: var(--c-red);
  position: relative; display: inline-block;
}
/* bottom je ladené na metriky Baloo 2 — zvýrazňovač musí prekryť pätu písmen. */
h1 em::after {
  content: ""; position: absolute; left: -2%; right: -2%; bottom: 0.2em; height: 0.2em;
  background: var(--c-yellow); border-radius: 999px; z-index: -1;
  transform: rotate(-1.2deg);
}

.lede { font-size: var(--text-lede); color: var(--ink-soft); max-width: 46ch; margin-top: 1.4rem; }
.lede strong { color: var(--ink); }

.hero-actions { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-top: 2.2rem; }

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 600; font-size: 1.02rem;
  padding: 0.95rem 1.7rem; border-radius: 999px; text-decoration: none;
  border: 3px solid transparent; cursor: pointer;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease),
              background-color var(--dur) var(--ease);
}
.btn-primary {
  background: var(--c-red); color: #fff;
  box-shadow: 0 8px 0 -1px #C24E47, var(--shadow-md);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 11px 0 -1px #C24E47, var(--shadow-lg); }
.btn-primary:active { transform: translateY(3px); box-shadow: 0 3px 0 -1px #C24E47; }

.btn-ghost { background: var(--surface); color: var(--ink); border-color: var(--line); box-shadow: var(--shadow-sm); }
.btn-ghost:hover { transform: translateY(-3px); border-color: var(--c-sky); box-shadow: var(--shadow-md); }

.btn-small { font-size: 0.9rem; padding: 0.6rem 1.2rem; background: var(--c-sky); color: #fff; margin-top: 1.2rem; }
.btn-small:hover { background: var(--c-sky-dk); transform: translateY(-2px); }

.hero-facts {
  display: flex; flex-wrap: wrap; gap: 2rem;
  list-style: none; padding: 0; margin-top: 2.6rem;
}
.hero-facts li { display: flex; flex-direction: column; }
.hero-facts strong { font-family: var(--font-display); font-size: 1.35rem; color: var(--ink); }
.hero-facts span { font-size: 0.85rem; color: var(--ink-soft); }

/* ═══ SEMAFÓR ═══ */
.signal-card {
  background: var(--surface); border-radius: var(--radius);
  padding: 2rem 1.75rem 1.5rem; text-align: center;
  box-shadow: var(--shadow-lg);
  border: 4px solid #fff;
  position: relative;
}
.signal-card::before {
  content: ""; position: absolute; inset: -14px; border-radius: 40px;
  background: linear-gradient(140deg, var(--c-purple), var(--c-sky) 55%, var(--c-green));
  opacity: 0.16; z-index: -1;
}

.signal-title {
  font-family: var(--font-display); font-weight: 600;
  font-size: 1.15rem; color: var(--ink-soft); margin-bottom: 1.25rem;
}

.traffic-light {
  --lamp-size: 62px;
  display: inline-flex; flex-direction: column; gap: 0.75rem;
  padding: 1.1rem 0.9rem; border-radius: 26px;
  background: linear-gradient(165deg, #4E6076, #33414F);
  box-shadow: inset 0 2px 0 rgba(255,255,255,0.18), var(--shadow-md);
  position: relative;
}
.light-pole {
  position: absolute; top: 100%; left: 50%; transform: translateX(-50%);
  width: 16px; height: 34px;
  background: linear-gradient(90deg, #33414F, #4E6076);
  border-radius: 0 0 6px 6px;
}

.lamp {
  width: var(--lamp-size); height: var(--lamp-size); border-radius: 50%;
  background: rgba(0, 0, 0, 0.28);
  display: grid; place-items: center;
  box-shadow: inset 0 3px 6px rgba(0, 0, 0, 0.5);
}
.lamp i {
  display: block; width: 78%; height: 78%; border-radius: 50%;
  background: currentColor; opacity: 0.16;
  transition: opacity var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.lamp-red   { color: var(--c-red); }
.lamp-amber { color: var(--c-yellow); }
.lamp-green { color: var(--c-green); }
.mini-light .lamp[data-lamp="red"]   { color: var(--c-red); }
.mini-light .lamp[data-lamp="amber"] { color: var(--c-yellow); }
.mini-light .lamp[data-lamp="green"] { color: var(--c-green); }

.lamp.is-on i {
  opacity: 1;
  box-shadow: 0 0 18px 3px currentColor, inset 0 -4px 10px rgba(0, 0, 0, 0.25);
}
.lamp.is-on.is-blinking i { animation: blink 1.4s steps(1, end) infinite; }
@keyframes blink { 50% { opacity: 0.22; box-shadow: none; } }

.signal-text { margin-top: 1.6rem; min-height: 4.5rem; }
.signal-headline {
  font-family: var(--font-display); font-weight: 700;
  font-size: 1.6rem; line-height: 1.15;
}
[data-state="open"]   .signal-headline { color: var(--c-green); }
[data-state="soon"]   .signal-headline { color: #C99A00; }
[data-state="closed"] .signal-headline { color: var(--c-red); }
.signal-sub { color: var(--ink-soft); font-size: 0.95rem; margin-top: 0.35rem; }
.signal-foot { font-size: 0.75rem; color: var(--ink-soft); margin-top: 1.2rem; opacity: 0.8; }

/* ═══ SEKCIE ═══ */
/* scroll-margin drží nadpis pod lepkavou hlavičkou pri skoku z menu. */
.section { padding-block: var(--space-section); scroll-margin-top: 90px; }
.section-head { max-width: 62ch; margin-bottom: clamp(2.5rem, 2rem + 2vw, 4rem); }
h2 { font-size: var(--text-h2); font-weight: 700; }
.section-lede { font-size: var(--text-lede); color: var(--ink-soft); margin-top: 1.1rem; }

/* ─── atrakcie ─── */
.section-fun { background: var(--surface); }
.fun-grid {
  list-style: none; padding: 0;
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.fun-card {
  position: relative; overflow: hidden;
  padding: 2rem 1.75rem; border-radius: var(--radius);
  background: color-mix(in oklab, var(--accent) 9%, #fff);
  border: 2px solid color-mix(in oklab, var(--accent) 22%, #fff);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.fun-card::after {
  content: ""; position: absolute; right: -40px; bottom: -50px;
  width: 150px; height: 150px; border-radius: 50%;
  background: var(--accent); opacity: 0.1;
  transition: transform 500ms var(--ease);
}
.fun-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.fun-card:hover::after { transform: scale(1.3); }

.fun-card--big { grid-column: span 3; display: grid; grid-template-columns: auto 1fr; gap: 0 1.75rem; align-items: start; }
.fun-card--big p { max-width: 52ch; }
.fun-card--big .fun-icon { grid-row: span 3; font-size: 4.5rem; }

.fun-icon { font-size: 2.6rem; display: block; line-height: 1; margin-bottom: 0.9rem; }
.fun-card h3 { font-size: 1.5rem; margin-bottom: 0.5rem; color: var(--ink); }
.fun-card p { color: var(--ink-soft); position: relative; z-index: 1; }
.fun-tag {
  display: inline-block; justify-self: start; margin-top: 1rem;
  font-weight: 700; font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 0.35rem 0.85rem; border-radius: 999px;
  background: var(--accent); color: #fff;
}

/* ─── cenník ─── */
.price-grid {
  list-style: none; padding: 0;
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem;
  max-width: 820px;
}
.price-card {
  position: relative;
  background: var(--surface); border: 2px solid var(--line);
  border-radius: var(--radius); padding: 2.25rem 2rem;
  box-shadow: var(--shadow-sm);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.price-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.price-card--best {
  border-color: var(--c-green);
  box-shadow: 0 0 0 5px rgba(125, 196, 112, 0.14), var(--shadow-md);
}
.price-badge, .party-badge {
  position: absolute; top: -14px; left: 2rem;
  font-weight: 700; font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 0.4rem 0.95rem; border-radius: 999px;
  background: var(--c-green); color: #fff; box-shadow: var(--shadow-sm);
}
.price-name {
  font-family: var(--font-display); font-weight: 600;
  font-size: 1.15rem; color: var(--ink-soft);
}
.price-value {
  font-family: var(--font-display); font-weight: 700;
  color: var(--ink); line-height: 1; margin-block: 0.5rem 0.3rem;
  font-size: 1.6rem;
}
.price-num { font-size: clamp(3rem, 2.2rem + 2.4vw, 4rem); }
.price-unit { font-size: 0.9rem; color: var(--ink-soft); font-weight: 700; }
.price-note { font-size: 0.95rem; color: var(--ink-soft); margin-top: 1.1rem; }
.price-note strong { color: var(--c-green); }

/* ─── rodičia ─── */
.parents-inner {
  display: grid; grid-template-columns: 1fr 0.9fr;
  gap: clamp(2rem, 1rem + 3vw, 3.5rem); align-items: center;
}
.check-list { list-style: none; padding: 0; margin-top: 2rem; display: grid; gap: 0.85rem; }
.check-list li { position: relative; padding-left: 2.4rem; color: var(--ink); }
.check-list li::before {
  content: "✓"; position: absolute; left: 0; top: 0.1rem;
  width: 1.6rem; height: 1.6rem; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--c-green); color: #fff; font-size: 0.85rem; font-weight: 700;
}

.parent-perks { display: grid; gap: 1.25rem; }
.perk-card {
  border-radius: var(--radius); padding: 2rem 1.75rem;
  box-shadow: var(--shadow-lg);
  transition: transform var(--dur) var(--ease);
}
.perk-card h3 { font-size: 1.45rem; margin-bottom: 0.6rem; }
.perk-card p { font-size: 0.96rem; }
.perk-icon { font-size: 2.4rem; display: block; line-height: 1; margin-bottom: 0.75rem; }

/* Kaviareň je hlavný argument pre rodiča, tak dostáva teplú farbu. */
.perk-card--cafe {
  background: linear-gradient(160deg, #F0857C, var(--c-red));
  color: #fff;
}
.perk-card--cafe p { color: rgba(255, 255, 255, 0.92); }

.perk-card--climate {
  background: linear-gradient(160deg, var(--c-sky), var(--c-sky-dk));
  color: #fff;
}
.perk-card--climate p { color: rgba(255, 255, 255, 0.9); }
.perk-card:hover { transform: translateY(-5px); }

/* ─── oslavy ─── */
.section-party { background: var(--surface); position: relative; overflow: hidden; }
.party-head { margin-bottom: 2.5rem; }

.party-grid {
  list-style: none; padding: 0;
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.75rem;
  align-items: start; position: relative; z-index: 1;
}
.party-card {
  position: relative;
  background: linear-gradient(150deg, #FFF6DC, #FDEAE8);
  border-radius: var(--radius); padding: 2.5rem 2rem;
  box-shadow: var(--shadow-sm);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.party-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.party-card .check-list { margin-block: 1.5rem 2rem; }
.party-card .btn { width: 100%; }
.party-alt {
  text-align: center; font-size: 0.85rem; color: var(--ink-soft);
  margin-top: 0.85rem;
}
.party-alt a {
  font-weight: 700; color: var(--c-red);
  text-decoration: underline; text-underline-offset: 2px;
  transition: color var(--dur) var(--ease);
}
.party-alt a:hover { color: var(--c-sky-dk); }
.party-alt--light { color: rgba(255, 255, 255, 0.72); }
.party-alt--light a { color: var(--c-yellow); }
.party-alt--light a:hover { color: #fff; }

/* tri balíčky */
.party-grid--three { grid-template-columns: repeat(3, 1fr); }

.party-tier {
  font-size: 0.9rem; font-weight: 700; color: var(--ink-soft);
  margin-top: 0.15rem;
}
.party-card--vip .party-tier { color: rgba(255, 255, 255, 0.72); }

.party-card--best {
  border: 2px solid var(--c-yellow);
  box-shadow: 0 0 0 5px rgba(243, 198, 62, 0.18), var(--shadow-md);
}
.party-badge--best { background: var(--c-green); color: #fff; }

.party-plus {
  font-weight: 700; font-size: 0.9rem; color: var(--c-sky-dk);
  margin-top: 1.4rem;
}
.party-plus--light { color: var(--c-yellow); }
.party-plus + .check-list { margin-top: 0.6rem; }

/* extra ponuka */
.extras { position: relative; z-index: 1; margin-top: clamp(2.5rem, 2rem + 2vw, 4rem); }
.extras-head h3 { font-size: 1.5rem; color: var(--ink); }
.extras-head p { color: var(--ink-soft); margin-top: 0.4rem; }
.extras-grid {
  list-style: none; padding: 0; margin-top: 1.5rem;
  display: flex; flex-wrap: wrap; gap: 0.75rem;
}
.extra-chip {
  display: inline-flex; align-items: center; gap: 0.55rem;
  background: var(--bg); border: 2px solid var(--line);
  border-radius: 999px; padding: 0.6rem 1.15rem;
  font-weight: 700; font-size: 0.92rem; color: var(--ink);
  box-shadow: var(--shadow-sm);
  transition: transform var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.extra-chip:hover { transform: translateY(-2px); border-color: var(--c-yellow); }
.extra-emoji { font-size: 1.15rem; }
.extra-chip small { font-weight: 600; font-size: 0.78rem; color: var(--ink-soft); }
.party-note { margin-top: 2rem; max-width: 62ch; font-size: 1rem; color: var(--ink-soft); }
.party-icon { font-size: 2.4rem; display: block; line-height: 1; margin-bottom: 1rem; }

.party-card--vip {
  background: linear-gradient(155deg, #3E4E63, #2C3A4A);
  color: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-lg);
}
.party-card--vip .price-name { color: rgba(255, 255, 255, 0.75); }
.party-card--vip .price-value { color: #fff; }
.party-card--vip .price-unit { color: var(--c-yellow); }
.party-badge { background: var(--c-yellow); color: var(--ink); }
.check-list--light li { color: rgba(255, 255, 255, 0.9); }
.check-list--light li::before { background: var(--c-yellow); color: var(--ink); }

.btn-vip {
  background: var(--c-yellow); color: var(--ink);
  box-shadow: 0 8px 0 -1px #C99A00, var(--shadow-md);
}
.btn-vip:hover { transform: translateY(-3px); box-shadow: 0 11px 0 -1px #C99A00, var(--shadow-lg); }
.btn-vip:active { transform: translateY(3px); box-shadow: 0 3px 0 -1px #C99A00; }

/* Konfety sú dekorácia rozsypaná po celej sekcii, mimo kariet. */
.party-visual { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.confetti { position: absolute; width: 12px; height: 12px; border-radius: 3px; opacity: 0.6; }
.c1 { background: var(--c-red);    top: 8%;  left: 4%;  transform: rotate(24deg); }
.c2 { background: var(--c-sky);    top: 14%; right: 6%; transform: rotate(-14deg); }
.c3 { background: var(--c-green);  bottom: 12%; left: 2%; transform: rotate(38deg); }
.c4 { background: var(--c-yellow); bottom: 8%;  right: 5%; transform: rotate(-30deg); }
.c5 { background: var(--c-purple); top: 44%; left: 1.5%; transform: rotate(12deg); }
.c6 { background: var(--c-red);    bottom: 34%; right: 2%; transform: rotate(-40deg); }

/* ─── kontakt ─── */
.contact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-bottom: 2.5rem; }
.info-card {
  background: var(--surface); border-radius: var(--radius);
  padding: 2rem 1.75rem; border: 2px solid var(--line);
  box-shadow: var(--shadow-sm);
}
.info-card h3 { font-size: 1.3rem; margin-bottom: 1.1rem; color: var(--c-sky-dk); }
.hours { width: 100%; border-collapse: collapse; font-size: 0.95rem; }
.hours th, .hours td { padding: 0.6rem 0; border-bottom: 1px dashed var(--line); text-align: left; }
.hours th { font-weight: 600; color: var(--ink-soft); }
.hours td { text-align: right; font-weight: 700; font-variant-numeric: tabular-nums; }
.info-note { font-size: 0.85rem; color: var(--ink-soft); margin-top: 1rem; }
.contact-links { list-style: none; padding: 0; margin-top: 1.2rem; display: grid; gap: 0.5rem; }
.contact-links a {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--font-display); font-weight: 600; font-size: 1.1rem;
  text-decoration: none; color: var(--ink);
  transition: color var(--dur) var(--ease);
}
.contact-links a:hover { color: var(--c-red); }
address { font-style: normal; line-height: 1.8; color: var(--ink-soft); }
address strong { color: var(--ink); font-family: var(--font-display); font-size: 1.1rem; }

.info-card--live { display: flex; flex-direction: column; align-items: flex-start; }
.mini-light {
  display: flex; gap: 0.4rem; padding: 0.5rem 0.6rem; border-radius: 999px;
  background: linear-gradient(165deg, #4E6076, #33414F); margin-bottom: 1rem;
}
.mini-light .lamp { --lamp-size: 22px; width: 22px; height: 22px; }
.live-text { font-family: var(--font-display); font-weight: 700; font-size: 1.25rem; }
[data-state="open"]   .live-text { color: var(--c-green); }
[data-state="soon"]   .live-text { color: #C99A00; }
[data-state="closed"] .live-text { color: var(--c-red); }

.map-frame {
  border-radius: var(--radius); overflow: hidden;
  border: 4px solid var(--surface); box-shadow: var(--shadow-md);
  line-height: 0;
}
.map-frame iframe { width: 100%; height: clamp(280px, 40vw, 420px); border: 0; }

/* ─── galéria ─── */
/* Bento mriežka: dlaždice rôznych veľkostí, žiadny uniformný raster. */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  grid-auto-flow: dense;
  gap: 1.25rem;
}
.gallery-item {
  position: relative; overflow: hidden;
  margin: 0; border-radius: var(--radius);
  border: 4px solid var(--surface);
  box-shadow: var(--shadow-sm);
  /* Jemné pozadie, kým sa lazy fotka načíta. */
  background: linear-gradient(150deg, var(--bg-sky), var(--line));
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.gallery-item--big  { grid-column: span 2; grid-row: span 2; }
.gallery-item--wide { grid-column: span 2; }
.gallery-item--tall { grid-row: span 2; }

.gallery-item img {
  position: absolute; inset: 0; z-index: 1;
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 600ms var(--ease);
}
.gallery-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.gallery-item:hover img { transform: scale(1.05); }

.gallery-caption {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2;
  padding: 2rem 1.35rem 1.05rem;
  font-family: var(--font-display); font-weight: 700; font-size: 1.05rem;
  color: #fff;
  background: linear-gradient(0deg, rgba(44, 58, 74, 0.6), transparent);
}

/* ─── FAQ ─── */
.section-faq { background: var(--surface); }
.faq-list { max-width: 800px; display: grid; gap: 1rem; }
.faq-item {
  border: 2px solid var(--line); border-radius: var(--radius-sm);
  background: var(--bg); overflow: hidden;
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease),
              background-color var(--dur) var(--ease);
}
.faq-item[open] {
  background: var(--surface);
  border-color: color-mix(in oklab, var(--c-sky) 45%, #fff);
  box-shadow: var(--shadow-sm);
}
.faq-item summary {
  list-style: none; cursor: pointer;
  display: flex; align-items: center; gap: 1rem;
  padding: 1.2rem 1.4rem;
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(1.02rem, 0.98rem + 0.3vw, 1.15rem); color: var(--ink);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--c-sky-dk); }
.faq-q { flex: 1; }
.faq-icon {
  flex: none; width: 1.9rem; height: 1.9rem; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--c-sky); color: #fff; font-size: 1.35rem; line-height: 1;
  transition: transform var(--dur) var(--ease), background-color var(--dur) var(--ease);
}
.faq-item[open] .faq-icon { transform: rotate(45deg); background: var(--c-red); }
.faq-a { padding: 0 1.4rem 1.35rem; color: var(--ink-soft); }
.faq-a a { color: var(--c-sky-dk); font-weight: 700; }
.faq-item[open] .faq-a { animation: faqReveal var(--dur) var(--ease); }
@keyframes faqReveal {
  from { opacity: 0; transform: translateY(-4px); }
  to   { opacity: 1; transform: none; }
}

/* ═══ FOOTER ═══ */
.site-footer { background: var(--ink); color: rgba(255, 255, 255, 0.72); padding-block: 3.5rem; }
.footer-inner { display: flex; flex-wrap: wrap; align-items: center; gap: 2rem; justify-content: space-between; }
.footer-brand { display: flex; align-items: center; gap: 1rem; }
.footer-brand img { border-radius: 50%; }
.footer-brand p { color: #fff; font-weight: 600; line-height: 1.5; }
.footer-contact { display: grid; gap: 0.4rem; }
.footer-hours { font-size: 1rem; }
.footer-hours strong { color: var(--c-yellow); font-family: var(--font-display); }
.footer-contact a { color: #fff; font-weight: 700; text-decoration: none; }
.footer-contact a:hover { color: var(--c-yellow); }
.footer-copy { font-size: 0.85rem; opacity: 0.6; }

/* ═══ RESPONSIVE ═══ */
@media (max-width: 1200px) {
  .balloon { display: none; }
}

@media (max-width: 980px) {
  .nav { display: none; }
  .status-chip { margin-inline-start: auto; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-signal { justify-self: center; max-width: 380px; width: 100%; }
  .parents-inner { grid-template-columns: 1fr; }
  .parent-perks { grid-template-columns: 1fr 1fr; }
  .perk-card, .perk-card:hover { transform: none; }
  .fun-grid { grid-template-columns: repeat(2, 1fr); }
  .fun-card--big { grid-column: span 2; }
  .contact-grid { grid-template-columns: 1fr 1fr; }
  .info-card--live { grid-column: span 2; }
  .party-grid--three { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 165px; }
  .gallery-item--big  { grid-column: span 2; grid-row: span 2; }
  .gallery-item--wide { grid-column: span 2; grid-row: span 1; }
  .gallery-item--tall { grid-column: span 1; grid-row: span 1; }
}

@media (max-width: 620px) {
  .fun-grid, .contact-grid, .price-grid, .party-grid, .parent-perks { grid-template-columns: 1fr; }
  .confetti { display: none; }
  .fun-card--big { grid-column: span 1; grid-template-columns: 1fr; }
  .fun-card--big .fun-icon { grid-row: auto; }
  .info-card--live { grid-column: span 1; }
  .hero-facts { gap: 1.25rem 2rem; }
  .btn { width: 100%; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 190px; }
  .gallery-item--big,
  .gallery-item--wide,
  .gallery-item--tall { grid-column: span 1; grid-row: span 1; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
