/* ============================================
   SEZNAM FEST – Global Stylesheet v2
   ============================================ */

@import url("https://fonts.googleapis.com/css2?family=Anton&family=Inter:wght@400;600;700;900&display=swap");

/* ── CSS Variables ── */
:root {
  --color-black: #000000;
  --color-white: #ffffff;
  --color-purple: #9200ab;
  --color-purple-dark: #7a0090;
  --color-yellow: #b7f500;
  --color-yellow-dark: #9acc00;
  --color-red: #e8000f;
  --color-bg-dark: #0a0a0a;
  --color-border: #1e1e1e;

  --font-display: "Anton", sans-serif;
  --font-body: "Inter", sans-serif;

  --nav-height: 60px;
  --max-width: 1280px;
  --gutter: 64px;
  --section-pad: 80px;
}

.relative {
  position: relative;
}

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

.maxW760 {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.mb-5 {
  margin-bottom: 32px;
}

/* ── Reset ── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  padding-top: 8px;
  font-family: var(--font-body);
  background: var(--color-black);
  color: var(--color-white);
  font-size: 18px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
img,
video {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
  text-decoration: none;
}
ul {
  list-style: none;
}

/* ── Typography ── */
h1,
.h1 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  line-height: 1;
  text-transform: uppercase;
}
h2,
.h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  line-height: 1;
  text-transform: uppercase;
}
h3,
.h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  line-height: 1.05;
  text-transform: uppercase;
}
p {
  font-size: 1.1rem;
  line-height: 1.6;
}
strong {
  font-weight: 700;
}

/* ── Layout ── */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ══════════════════════════════════════
   NAVIGATION
══════════════════════════════════════ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--color-black);
  border-bottom: 1px solid #111;
  height: var(--nav-height);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.nav__logo {
  flex-shrink: 0;
  line-height: 0;
}
.nav__logo-img {
  height: 40px;
  width: auto;
  display: block;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav__links a {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--color-white);
  white-space: nowrap;
  transition: opacity 0.2s;
}
.nav__links a:hover {
  opacity: 0.75;
}
.nav__cta {
  background: var(--color-purple) !important;
  color: var(--color-white) !important;
  padding: 10px 22px !important;
  border-radius: 3px;
  border: 2px solid var(--color-purple) !important;
  opacity: 1 !important;
  transition:
    background 0.2s,
    color 0.2s !important;
}
.nav__cta:hover {
  background: var(--color-white) !important;
  color: var(--color-purple) !important;
}

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-white);
  transition: all 0.3s;
}
.nav__mobile {
  display: none;
  flex-direction: column;
  position: fixed;
  top: var(--nav-height);
  left: 0;
  right: 0;
  background: var(--color-black);
  padding: 24px var(--gutter);
  gap: 20px;
  z-index: 99;
  border-top: 1px solid #222;
}
.nav__mobile.open {
  display: flex;
}
.nav__mobile a {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
}
.nav__mobile .nav__cta {
  display: inline-block;
  width: fit-content;
  background: var(--color-purple) !important;
  padding: 12px 28px !important;
  border-radius: 3px;
}

/* ══════════════════════════════════════
   BUTTONS
══════════════════════════════════════ */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 700;
  padding: 13px 28px;
  border-radius: 3px;
  cursor: pointer;
  border: none;
  transition:
    background 0.2s,
    opacity 0.2s;
  text-align: center;
  line-height: 1;
}
.btn--purple {
  background: var(--color-purple);
  color: var(--color-white);
  border: 2px solid var(--color-purple);
  transition:
    background 0.2s,
    color 0.2s,
    border-color 0.2s;
}
.btn--purple:hover {
  background: var(--color-white);
  color: var(--color-purple);
  border-color: var(--color-purple);
}
.btn--outline {
  background: transparent;
  color: var(--color-white);
  border: 2px solid rgba(255, 255, 255, 0.6);
}
.btn--outline:hover {
  border-color: var(--color-white);
}

.btn-center {
  margin-left: auto;
  margin-right: auto;
  display: block;
}
.btn156 {
  width: 156px;
}

/* ══════════════════════════════════════
   HERO
══════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--color-black);
}
/* Gradient dole — video se ztrácí do fialové barvy tickeru */
.hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 260px;
  background: linear-gradient(to bottom, transparent, var(--color-purple));
  z-index: 1;
  pointer-events: none;
}
.hero__video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__video-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.45;
}
.hero__video-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.2) 0%,
    rgba(0, 0, 0, 0.65) 100%
  );
}
.hero__content {
  position: relative;
  z-index: 2; /* nad hero::after gradientem */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex: 1;
  text-align: center;
  padding: 100px var(--gutter) 80px;
}
.hero__countdown {
  display: flex;
  gap: 32px;
  margin-bottom: 36px;
  align-items: baseline;
  max-width: 420px;
  width: 100%;
  justify-content: center;
}
.hero__countdown-item {
  display: flex;
  align-items: baseline;
  gap: 6px;
  font-family: var(--font-body);
}
.hero__countdown-item span {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1;
  color: var(--color-white);
}
.hero__countdown-item em {
  font-style: normal;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: lowercase;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.04em;
}
.hero__title {
  font-size: clamp(4rem, 10vw, 9rem);
  color: var(--color-white);
  margin-bottom: 20px;
}
.hero__subtitle {
  display: flex;
  gap: 12px;
  margin-bottom: 44px;
  flex-wrap: wrap;
  justify-content: center;
}
.hero__subtitle-tag {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  text-transform: uppercase;
  background: var(--color-yellow);
  color: var(--color-black);
  padding: 4px 20px;
  border-radius: 2px;
  line-height: 1.2;
}
.hero__cta-btn {
  padding: 16px 52px;
  font-size: 1rem;
}

/* ══════════════════════════════════════
   TICKER
══════════════════════════════════════ */
.ticker {
  background: var(--color-purple);
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  padding: 0;
  margin-bottom: 0px;
  z-index: auto;
  padding-bottom: 44px;
}
.ticker__track {
  display: inline-flex;
  gap: 16px;
  padding: 16px 8px;
  animation: ticker-scroll 30s linear infinite;
}

.ticker__item {
  font-family: var(--font-display);
  font-size: 2.2rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding: 12px 24px;
  color: var(--color-white);
  background: var(--color-red);
  display: inline-block;
  flex-shrink: 0;
  line-height: 1;
}
@keyframes ticker-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* ══════════════════════════════════════
   SECTIONS
══════════════════════════════════════ */
.section {
  padding: var(--section-pad) 0;
}
.section--purple {
  background: var(--color-purple);
}
.section--black {
  background: var(--color-black);
}
.section--white {
  background: var(--color-white);
  color: var(--color-black);
}

.section-bcg {
  background-image: url(../img/section-img.jpg);
  background-position: top center;
  background-repeat: no-repeat;
}

/* ceny */
/*
.section--gradient {
  background: linear-gradient(
    135deg,
    #007fff 0%,
    #007fff 25%,
    #9200ab 75%,
    #9200ab 100%
  );
}
*/
.section--gradient {
  background: linear-gradient(
    180deg,
    rgba(146, 0, 171, 0.75) 0%,
    rgba(0, 127, 255, 0.25) 100%
  );
}

.section--gradient2 {
  background: linear-gradient(
    to bottom,
    rgba(0, 127, 255, 0.25) 0%,
    rgba(146, 0, 171, 0.75) 100%
  );
}

/*
.section--gradient {
  background: linear-gradient(
    135deg,
    #007fff 0%,
    #007fff 25%,
    #9200ab 75%,
    #9200ab 100%
  );
}
*/
/* ══════════════════════════════════════
   PROGRAM
══════════════════════════════════════ */
.program-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.program-card {
  background: var(--color-black);
  border-radius: 2px;
  overflow: hidden;
  padding: 32px;
}
.program-card__header {
  padding: 20px 24px 14px;
}
.program-card__title {
  color: var(--color-yellow);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
}
.program-card__time {
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 4px;
}
.program-item {
  display: grid;
  grid-template-columns: 52px 1fr;
  padding: 13px 44px 12px 24px;
  border-top: 1px solid var(--color-white);
}

.program-item_ico {
  background-image: url(../img/icon-podcast.svg);
  background-position: center right;
  background-repeat: no-repeat;
}

.program-item__time {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-white);
}
.program-item__name {
  font-size: 0.875rem;
  font-weight: 900;
  display: flex;
  justify-content: space-between;
  gap: 8px;
  font-family: var(--font-body);
}
.program-item__icon {
  opacity: 0.55;
  font-size: 0.75rem;
  flex-shrink: 0;
}

/* ══════════════════════════════════════
   PRICING
══════════════════════════════════════ */
.pricing-intro {
  margin-bottom: 40px;
}
.pricing-intro h2 {
  color: var(--color-yellow);
  margin-bottom: 14px;
}
.pricing-intro p {
  color: rgba(255, 255, 255, 0.9);
  max-width: 680px;
  font-weight: 600;
  font-size: 0.9375rem;
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.pricing-card {
  background: var(--color-black);
  padding: 28px 28px 24px;
  border-radius: 2px;
  display: flex;
  flex-direction: column;
}
.pricing-card--full {
  grid-column: 1 / -1;
}
/* Pricing card title = YELLOW on black */
.pricing-card__label {
  color: var(--color-yellow);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 4px;
}
.pricing-card__meta {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-white);
  margin-bottom: 18px;
}
.pricing-card__price {
  font-family: var(--font-display);
  font-size: 2.8rem;
  color: var(--color-black);
  background: var(--color-white);
  padding: 16px 20px 12px;
  margin-bottom: 0;
  border-radius: 2px 2px 0 0;
}

.pricing-card__inner {
  background: var(--color-white);
  padding: 0 20px 20px;
  border-radius: 0 0 2px 2px;
  margin-bottom: 0;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.pricing-card .btn {
  margin: 0 0 16px;
  align-self: flex-start;
}
.pricing-card__features {
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  border-top: 1px solid #e0e0e0;
  padding-top: 12px;
}
.pricing-card__features li {
  font-size: 0.8125rem;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.75);
  padding-left: 14px;
  position: relative;
}
.pricing-card__features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--color-purple);
}

.how-it-works {
  background: var(--color-white);
  color: var(--color-black);
  padding: 28px 32px;
  border-radius: 2px;
}
.how-it-works h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  text-transform: uppercase;
  margin-bottom: 12px;
  color: var(--color-black);
}
.how-it-works ul {
  list-style: disc;
  padding-left: 18px;
  margin-bottom: 10px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.how-it-works ul li,
.how-it-works p {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-black);
}

/* ══════════════════════════════════════
   KIDS BANNER
══════════════════════════════════════ */
.kids-banner {
  background: var(--color-purple);
  padding: 48px 64px;
  border-radius: 2px;
}
.kids-banner h2 {
  color: var(--color-white);
  margin-bottom: 12px;
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
}
.kids-banner p {
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.9375rem;
  font-weight: 600;
  max-width: 560px;
}

/* ══════════════════════════════════════
   LOCATION / LIVE MAP
══════════════════════════════════════ */
.location-block {
  background: var(--color-black);
  border-radius: 2px;
  overflow: hidden;
}
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.location-content {
  padding: 40px 48px;
}
.location-content h2 {
  color: var(--color-yellow);
  margin-bottom: 22px;
}
.location-address p {
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 10px;
}
.location-address p:last-child {
  margin-bottom: 0;
}

/* Map link block */
.location-map-wrap {
  position: relative;
  min-height: 340px;
  display: flex;
  flex-direction: column;
}
.location-map-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}
.map-open-link {
  position: absolute;
  inset: 0;
  z-index: 2;
  cursor: pointer;
}

/* Fallback / placeholder map button */
.map-placeholder {
  flex: 1;
  min-height: 340px;
  background: #0e0e0e;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  text-decoration: none;
  color: var(--color-white);
  transition: background 0.2s;
  border-left: 1px solid var(--color-border);
  padding: 40px;
  text-align: center;
}
.map-placeholder:hover {
  background: #161616;
}
.map-placeholder__icon {
  font-size: 3rem;
  line-height: 1;
}
.map-placeholder__title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-yellow);
}
.map-placeholder__address {
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}
.map-placeholder__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--color-white);
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  padding: 8px 18px;
  border-radius: 2px;
  transition: border-color 0.2s;
}
.map-placeholder:hover .map-placeholder__cta {
  border-color: rgba(255, 255, 255, 0.7);
}

/* ══════════════════════════════════════
   30 YEARS
══════════════════════════════════════ */
.years-section {
  background: var(--color-white);
  color: var(--color-black);
  padding: var(--section-pad) 0;
  overflow: visible;
}
.years-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 64px;
  align-items: center;
}
.years-content h2 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  color: var(--color-red);
  margin-bottom: 20px;
}
.years-content p {
  font-size: 0.9375rem;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.8);
  max-width: 480px;
  line-height: 1.65;
}

.years-section {
  position: relative; /* nutné pro absolute child */
}

.years-image {
  flex-shrink: 0;
}

.years-image__img {
  height: clamp(200px, 28vw, 380px);
  width: auto;
  display: block;
  object-fit: contain;
}
.years-image__img--mobile {
  display: none;
}

@media (min-width: 991px) {
  .years-image {
    position: absolute;
    bottom: 0;
    left: 60%;
    z-index: 9;
  }
  .years-image__img {
    width: 440px;
    height: auto; /* ne 100px — nech proportional */
    z-index: 9;
  }
}

.footer__logo-img {
  height: 48px;
  width: auto;
  display: block;
}
/* keep old text styles as fallback */
.footer__logo-text {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-style: italic;
  line-height: 1;
}
.footer__logo-sub {
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 3px;
}
/* ══════════════════════════════════════
   FAQ
══════════════════════════════════════ */
.faq-content {
  padding: 40px 48px;
  background: var(--color-black);
}

.faq-list {
  border-top: 1px solid var(--color-white);
}
.faq-item {
  border-bottom: 1px solid var(--color-white);
}

/* FAQ on gradient background — items in their own dark rounded box */
.faq-list--gradient {
  border-top: none;
  background: var(--color-black);
  border-radius: 4px;
  overflow: hidden;
}
.faq-list--gradient .faq-item {
  border-bottom: 1px solid #1a1a1a;
}
.faq-list--gradient .faq-item:last-child {
  border-bottom: none;
}
.faq-item__q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 20px 0;
  cursor: pointer;
  background: none;
  border: none;
  color: var(--color-white);
  width: 100%;
  text-align: left;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.4;
  transition: opacity 0.2s;
}
.faq-list--gradient .faq-item__q {
  padding: 20px 0;
}
.faq-list--gradient .faq-item__a {
  padding: 0 0 20px;
}
.faq-item__q:hover {
  opacity: 0.8;
}
.faq-item__icon {
  flex-shrink: 0;
  min-width: 20px;
  min-height: 20px;
  width: 20px;
  height: 20px;
  display: block;
  overflow: visible;
  transition: transform 0.3s ease;
}
.faq-item__a {
  display: none;
  padding: 0 32px 20px 0;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.7;
}

.faq-item__a p {
  font-size: 0.875rem !important;
}

.faq-item.open .faq-item__a {
  display: block;
}
.faq-item.open .faq-item__icon {
  transform: rotate(180deg);
}

/* ══════════════════════════════════════
   CTA BAND
══════════════════════════════════════ */
.cta-band {
  position: relative;
  padding: var(--section-pad) 0;
  text-align: center;
  overflow: hidden;
  background: var(--color-black);
}
.cta-band__bg {
  position: absolute;
  inset: 0;
  background-image: url("../assets/barvy-gradient.jpg");
  background-size: cover;
  background-position: center;
  opacity: 0.25;
}
.cta-band__content {
  position: relative;
  z-index: 1;
}
.cta-band p {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 24px;
}

/* ══════════════════════════════════════
   CONTACT / LEGAL
══════════════════════════════════════ */
.contact-legal {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  padding: 48px 0;
}
.contact-legal__title {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 16px;
}
.contact-legal a {
  display: block;
  margin-bottom: 8px;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.88);
  transition: color 0.2s;
}
.contact-legal a:hover {
  color: var(--color-white);
}
.contact-legal p {
  font-size: 0.875rem;
  color: White;
  line-height: 1.65;
}

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
.footer {
  background: var(--color-black);
  padding: 56px 0 0;
  border-top: 1px solid var(--color-border);
}
.footer__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}
.footer__brand {
  font-family: var(--font-display);
  font-size: 1.2rem;
  text-transform: uppercase;
}
.footer__col-title {
  font-size: 0.8125rem;
  font-weight: 700;
  margin-bottom: 16px;
}
.footer__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__links a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.75);
  transition: color 0.2s;
}
.footer__links a:hover {
  color: var(--color-white);
}
.footer__bottom {
  border-top: 1px solid var(--color-border);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer__logo-text {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-style: italic;
  line-height: 1;
}
.footer__logo-sub {
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 3px;
}
.footer__copyright {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.4);
}

/* ══════════════════════════════════════
   PAGE HEADER
══════════════════════════════════════ */
.page-header {
  padding: 56px 0 48px;
  text-align: center;
}
.page-header h1 {
  color: var(--color-white);
}

/* ══════════════════════════════════════
   REGISTRATION FORM
══════════════════════════════════════ */
.registration-wrap {
  background: linear-gradient(
    180deg,
    rgba(146, 0, 171, 0.75) 0%,
    rgba(0, 127, 255, 0.25) 100%
  );
}

.registration-form {
  padding: 32px 0 80px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.form-section {
  background: var(--color-black);
  border-radius: 2px;
  padding: 32px;
  margin-bottom: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}
.form-group label {
  font-size: 0.8125rem;
  font-size: 1rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.75);
  color: White;
}
.form-group input {
  background: var(--color-white);
  border: 1px solid #ddd;
  color: var(--color-black);
  padding: 13px 14px;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  border-radius: 2px;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}
.form-group input:focus {
  border-color: var(--color-purple);
}

.ticket-section {
  background: var(--color-black);
  border-radius: 2px;
  margin-bottom: 16px;
  overflow: hidden;
}
.ticket-section__header {
  padding: 32px 32px 0;
}
/* Yellow heading inside ticket card */
.ticket-section__header h2 {
  color: var(--color-yellow);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
}
.ticket-section__desc {
  font-size: 0.8rem;
  font-weight: 600;
  color: White;
  margin: 4px 0 2px;
}
.ticket-section__time {
  font-size: 0.8rem;
  color: White;
  padding-bottom: 0;
  margin-bottom: 16px;
}

.ticket-section .ticket-row:first-of-type {
  margin-top: 0;
}

.ticket-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 32px;
  background: var(--color-white);
  margin: 0 32px;
}
.ticket-row + .ticket-row {
  border-top: 1px solid #e0e0e0;
  padding-top: 12px;
}
.ticket-row:first-of-type {
  padding-top: 16px;
}
.ticket-row__price {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--color-black);
  line-height: 1;
  display: flex;
  align-items: flex-end;
  gap: 6px;
}
.ticket-row__sublabel {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 3px;
}

.ticket-counter {
  display: flex;
  align-items: center;
  gap: 16px;
}
.ticket-counter__btn {
  width: 26px;
  height: 26px;
  background: none;
  border: none;
  color: var(--color-black);
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 2px;
  transition: all 0.2s;
  line-height: 1;
}
.ticket-counter__btn:hover {
  background: rgba(0, 0, 0, 0.05);
}
.ticket-counter__num {
  font-family: var(--font-display);
  font-size: 1.6rem;
  min-width: 20px;
  text-align: center;
  color: var(--color-black);
}

.ticket-features {
  padding: 12px 32px 20px;
  margin: 0 32px 32px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: var(--color-white);
}
.ticket-features li {
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.65);
  padding-left: 14px;
  position: relative;
}
.ticket-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--color-yellow);
}

.terms-section {
  background: var(--color-black);
  border: 1px solid var(--color-border);
  padding: 22px 28px;
  border-radius: 2px;
  margin-bottom: 16px;
}
.terms-note {
  font-size: 0.8rem;
  color: White;
  margin-bottom: 18px;
  line-height: 1.65;
}
.checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.5;
}
.checkbox-label input {
  width: 18px;
  height: 18px;
  min-width: 18px;
  flex-shrink: 0;
  accent-color: var(--color-purple);
  cursor: pointer;
  margin-top: 2px;
}
.checkbox-label span,
.checkbox-label > *:not(input) {
  display: inline;
}
.checkbox-label a {
  text-decoration: underline;
  display: inline;
}

.payment-section {
  background: var(--color-black);
  border: 1px solid var(--color-border);
  padding: 22px 28px;
  border-radius: 2px;
  margin-bottom: 28px;
}
.payment-section h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.payment-section .btn {
  margin-top: 20px;
}

/* ══════════════════════════════════════
   THANK YOU PAGE
══════════════════════════════════════ */
.thankyou-hero {
  background: var(--color-purple);
  padding: 80px 0 60px;
  text-align: center;
}
.thankyou-hero h1 {
  color: var(--color-white);
  margin-bottom: 28px;
}
.thankyou-hero p {
  font-size: 1rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.7;
  margin-bottom: 6px;
}

/* ══════════════════════════════════════
   ERROR PAGE
══════════════════════════════════════ */
.error-hero {
  background: var(--color-purple);
  padding: 80px 0 60px;
  text-align: center;
}
.error-hero h1 {
  color: var(--color-white);
}
.error-body {
  background: var(--color-bg-dark);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.error-body__bg {
  position: absolute;
  inset: 0;
  background-image: url("../assets/barvy-gradient.jpg");
  background-size: cover;
  background-position: center;
  opacity: 0.18;
}
.error-body__content {
  position: relative;
  z-index: 1;
}
.error-body p {
  font-size: 1rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 32px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.65;
}
.error-contact {
  background: var(--color-purple);
  padding: 64px 0;
  text-align: center;
}
.error-contact p {
  font-size: 1rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 12px;
  line-height: 1.65;
}
.error-contact a {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-white);
  text-decoration: underline;
}

/* ══════════════════════════════════════
   TEXT PAGE
══════════════════════════════════════ */
.text-page {
  padding: 60px 0 80px;
}
.text-page__body {
  max-width: 820px;
  margin: 0 auto;
}
.text-page__body p {
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 24px;
}

/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */
@media (max-width: 960px) {
  :root {
    --gutter: 24px;
    --section-pad: 56px;
  }
  .nav__links {
    display: none;
  }
  .nav__hamburger {
    display: flex;
  }
  .program-grid {
    grid-template-columns: 1fr;
  }
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  .pricing-card--full {
    grid-column: auto;
  }
  .location-grid {
    grid-template-columns: 1fr;
  }
  .location-map-wrap {
    min-height: 280px;
  }
  .map-placeholder {
    min-height: 280px;
    border-left: none;
    border-top: 1px solid var(--color-border);
  }
  .years-grid {
    grid-template-columns: 1fr;
    gap: 0;
    position: relative;
    padding-top: 200px;
  }
  .years-section {
    padding-top: 0;
    overflow: visible;
  }
  .years-image {
    position: absolute;
    top: -60px;
    right: 0;
    z-index: 2;
    text-align: right;
    margin-top: 0;
  }
  .years-image__img--desktop {
    display: none;
  }
  .years-image__img--mobile {
    display: block;
    height: 280px;
    width: auto;
  }
  .years-content {
    position: relative;
    z-index: 1;
    padding-right: 0;
  }
  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .kids-banner {
    padding: 36px 24px;
  }
  .contact-legal {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}
@media (max-width: 600px) {
  h1,
  .h1 {
    font-size: clamp(2rem, 9vw, 2.8rem);
  }
  .hero {
    min-height: unset;
    max-height: unset;
  }
  .hero__content {
    flex: none;
    padding-top: 40px;
    padding-bottom: 40px;
    justify-content: flex-start;
  }
  .hero__countdown {
    gap: 20px;
  }
  .hero__countdown-item span {
    font-size: 2rem;
  }
  .hero__subtitle {
    flex-direction: column;
    gap: 8px;
    align-items: center;
  }
  .footer__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 16px 0;
  }
  .footer__brand {
    grid-column: 1 / -1;
  }
  .footer__col--social {
    grid-column: 1;
  }
  .footer__col--links {
    grid-column: 2;
  }
  .footer__bottom {
    flex-direction: column;
    gap: 14px;
    text-align: center;
  }
  .ticket-row {
    flex-wrap: nowrap;
    gap: 8px;
    padding: 12px 16px;
    margin: 0 16px;
  }
  .ticket-row__price {
    font-size: 1.6rem;
  }
  .ticket-row__price--child {
    font-size: 0.85rem;
  }
  .ticket-counter__num {
    font-size: 1.2rem;
    min-width: 24px;
  }
  .ticket-features {
    margin: 0 16px 20px;
    padding: 12px 16px 16px;
  }
  .location-content {
    padding: 28px 24px;
  }
  .faq-content {
    padding: 24px 16px;
  }
  .faq-item__q {
    gap: 16px;
  }
}

/* ══════════════════════════════════════
   DOPLŇKY v9
══════════════════════════════════════ */

/* Cena vč. DPH — pricing cards */
.pricing-card__vat {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.5);
  text-transform: none;
  letter-spacing: 0;
  vertical-align: middle;
}

/* Cena vč. DPH — ticket rows ve formuláři */
.ticket-row__vat {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.45);
  text-transform: none;
  line-height: 1.8;
}

/* Dítě řádek v ticketu */
.ticket-row__price--child {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0;
  color: var(--color-black);
  line-height: 1;
}

/* FAQ nadpis */
.faq-heading {
  margin-bottom: 40px;
  color: var(--color-yellow);
}

/* FAQ outro text + CTA */
.faq-outro {
  margin-top: 44px;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.6);
  max-width: 620px;
  line-height: 1.7;
}
.faq-cta {
  margin-top: 24px;
}

/* Contact legal text */
.contact-legal__text {
  margin-bottom: 16px;
  font-size: 1rem;
  color: White;
  line-height: 1.65;
}

/* Footer brand (text fallback) */
.footer__brand {
  font-family: var(--font-display);
  font-size: 1.2rem;
  text-transform: uppercase;
}

/* ══════════════════════════════════════
   THANK YOU PAGE – wrap s gradientem
══════════════════════════════════════ */
.thankyou-wrap {
  background: var(--color-purple);
  padding-bottom: 64px;
}

.thankyou-hero {
  padding: 80px 0 48px;
  text-align: center;
}
.thankyou-hero h1 {
  color: var(--color-white);
  margin-bottom: 28px;
}
.thankyou-hero p {
  font-size: 1rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.7;
  margin-bottom: 6px;
}

/* ══════════════════════════════════════
   CHILD LIMIT HINT (registrace)
══════════════════════════════════════ */
.ticket-row__child-limit {
  font-size: 0.75rem;
  font-weight: 600;
  margin-top: 4px;
  line-height: 1.4;
  color: var(--color-black);
}
.ticket-row__child-limit--info {
  color: var(--color-black);
}
.ticket-row__child-limit--warn {
  color: var(--color-red);
}

/* ══════════════════════════════════════
   PRICE SUMMARY (registrace)
══════════════════════════════════════ */
.price-summary {
  background: var(--color-black);
  border: 1px solid var(--color-border);
  border-radius: 2px;
  padding: 22px 28px;
  margin-bottom: 16px;
}
.price-summary__label {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--color-white);
  margin-bottom: 12px;
}
.price-summary__box {
  background: var(--color-white);
  border-radius: 2px;
  padding: 16px 20px;
  display: flex;
  align-items: baseline;
  gap: 10px;
}
.price-summary__amount {
  font-family: var(--font-display);
  font-size: 2.8rem;
  color: var(--color-black);
  line-height: 1;
}
.price-summary__vat {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.5);
}

/* ══════════════════════════════════════
   FORM NOTICE (chybové hlášky)
══════════════════════════════════════ */
.form-notice {
  display: none;
  margin-bottom: 16px;
  border-radius: 2px;
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.5;
}
.form-notice.error.show {
  display: block;
  background: var(--color-red);
  color: var(--color-white);
  padding: 16px 22px;
}
.form-notice__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.form-notice__list li {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-white);
  padding-left: 16px;
  position: relative;
  line-height: 1.5;
}
.form-notice__list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--color-white);
}

/* ── Červené orámování chybového pole ── */
.input--error {
  outline: 2px solid var(--color-red) !important;
  outline-offset: 0;
  border-color: var(--color-red) !important;
}

/* ══════════════════════════════════════
   GLOBAL FONT SIZE BOOST
   Přepis component-level p overridů
══════════════════════════════════════ */
.years-content p,
.pricing-intro p,
.how-it-works ul li,
.how-it-works p,
.location-address p,
.contact-legal p,
.faq-item__a p,
.section p,
.footer__copyright,
.text-page__body p {
  font-size: 1.05rem;
}

.program-item__time,
.program-item__name {
  font-size: 1rem;
}

.pricing-card__features li,
.pricing-card__meta {
  font-size: 0.95rem;
}

/* ══════════════════════════════════════
   TEXT PAGE – PURPLE VARIANT
══════════════════════════════════════ */
.text-page-wrap {
  background: var(--color-purple);
}
.page-header--purple {
  background: var(--color-purple);
}
.text-page--purple {
  background: var(--color-purple);
  padding-bottom: 80px;
}
.text-page--purple .text-page__body p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 20px;
}
.text-page--purple .text-page__body h2 {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  color: var(--color-white);
  text-transform: uppercase;
  margin-top: 40px;
  margin-bottom: 16px;
}
.text-page--purple .text-page__body h3 {
  font-family: var(--font-display);
  font-size: clamp(1rem, 2vw, 1.3rem);
  color: var(--color-yellow);
  text-transform: uppercase;
  margin-top: 28px;
  margin-bottom: 12px;
}
.text-page--purple .text-page__body a {
  color: var(--color-yellow);
  text-decoration: underline;
}
