:root {
  --bg-main: #050509;
  --bg-panel: #101018;
  --bg-panel-light: #1d1b24;
  --paper: #f2e7d4;
  --accent: #d1a45f;
  --accent-soft: #f0d4a0;
  --text-main: #f7f3ea;
  --text-muted: #b9b2a3;
  --text-dark: #241c13;
  --border-strong: #31231c;
  --danger: #b84545;

  --price-highlight: #4b2c6f; /* tmavo-fialová pre ceny */
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top, #26223b 0, #050509 55%, #020203 100%);
  color: var(--text-main);
}

/* LINKS */

a {
  color: inherit;
  text-decoration: none;
}

/* HEADER – 60px na výšku, sticky s vlnkou dole */
header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(3, 3, 8, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #332626;
  box-shadow: 0 18px 50px rgba(0,0,0,0.85);
  height: 60px;              /* pevná výška headeru */
}

/* vlnka na spodku headeru */
header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 32px;
  background-image:
    url("data:image/svg+xml,%3Csvg width='1600' height='160' viewBox='0 0 1600 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 40 C 200 80 400 0 600 40 C 800 80 1000 0 1200 40 C 1400 80 1600 20 1600 20 L1600 160 L0 160 Z' fill='%23050509'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: cover;
  pointer-events: none;
}

/* VNÚTRO HEADERA – centrovanie obsahu na výšku */
.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;          /* len horizontálne odsadenie */
  height: 100%;               /* vyplní celých 60px headeru */
  display: flex;
  align-items: center;        /* vertikálne centrovanie loga + menu */
  justify-content: space-between;
  gap: 1rem;
  position: relative;
  z-index: 2;
}

/* LOGO + TEXTY */

.logo-mark {
  display: flex;
  align-items: center;
  gap: 14px;
}

.logo-texts {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-img {
  height: 50px;
  width: auto;
  display: block;
}

/* textová časť loga */
.logo-main {
  font-family: "Cinzel", serif;
  font-size: 1.25rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.logo-sub {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* NAVIGATION */

nav ul {
  list-style: none;
  display: flex;
  row-gap: 10px;   
  column-gap:30px;
  padding: 0;
  margin: 0;
  flex-wrap: wrap;
  justify-content: flex-end;
}

nav ul li {
  list-style: none;
  padding-left: 12px;
  position: relative;
}

nav ul li::before {
  content: "";
  display: block;
  width: 4px;
  height: 4px;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 50%;
  background-color: #C9952A;
}

nav a {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  padding-bottom: 0.15rem;
  border-bottom: 2px solid transparent;
}

nav a:hover {
  border-color: var(--accent);
}

/* HAMBURGER PRE MOBILY */

.nav-toggle {
  display: none;
  border: 1px solid #3b313c;
  background: rgba(10, 8, 16, 0.9);
  border-radius: 6px;
  padding: 0.4rem 0.45rem;
  cursor: pointer;
  gap: 0.25rem;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: #f5eee3;
  transition: transform 0.18s ease, opacity 0.18s ease, background 0.18s ease;
}

/* Stav po rozbalení menu – hamburger -> fialový krížik */
header.nav-open .nav-toggle {
  border-color: var(--price-highlight);
  background: rgba(20, 10, 40, 0.95);
}

header.nav-open .nav-toggle span {
  background: var(--price-highlight);
}

header.nav-open .nav-toggle span:nth-child(1) {
  transform: translateY(4px) rotate(45deg);
}

header.nav-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

header.nav-open .nav-toggle span:nth-child(3) {
  transform: translateY(-4px) rotate(-45deg);
}

/* RESPONSIVE – MOBILNÉ MENU (NAV šírka 50%, zarovnanie doprava) */

@media (max-width: 760px) {
  .nav-inner {
       flex-wrap: wrap;
    align-items: center;
    position: relative;           /* kotva pre absolute menu */
  }

  .nav-toggle {
    display: inline-flex;
  }

  nav {
    position: absolute;
    top: 100%;                    /* hneď pod headerom */
    right: 0;
    width: 70%;
    display: none;
    margin: 0;
    background: rgba(5, 3, 12, 0.96);        /* tmavé pozadie menu */
    border-left: 1px solid #3b313c;
    border-bottom: 1px solid #3b313c;
    border-radius: 0 0 0 10px;
    box-shadow: 0 16px 40px rgba(0,0,0,0.8);
    backdrop-filter: blur(8px);
  }

  header.nav-open nav {
    display: block;
  }

  nav ul {
        flex-direction: column;
    align-items: flex-end;        /* položky zarovnané doprava */
    text-align: right;
    gap: 0.45rem;
    padding: 0.75rem 1rem 1rem;   /* vnútorné odsadenie menu */
  }

  /* logo ostáva 50px aj na mobile */
  .logo-img {
    height: 50px;
  }
}

/* GENERAL LAYOUT */

.section {
  max-width: 1280px;
  margin: 0 auto;
}

.section-panel {
  background: radial-gradient(circle at top, #201b2a 0, #111019 60%);
  border-radius: 14px;
  border: 1px solid #3c323f;
  box-shadow: 0 22px 60px rgba(0,0,0,0.65);
  margin-top: 2rem;
  overflow: hidden;
  position: relative;
  padding: 2.5rem 0; /* priestor od „bodiek“ */
}

/* filmové bodky hore/dole na všetkých wrapperoch */
.section-panel::before,
.section-panel::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 12px;
  background-image: radial-gradient(circle, #f5eee0 18%, transparent 19%);
  background-size: 26px 12px;
  opacity: 0.85;
}

.section-panel::before { top: 10px; }
.section-panel::after { bottom: 10px; }

.section-inner {
  padding: 0 2rem;
}

h1, h2, h3 {
  font-family: "Cinzel", serif;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

h1 {
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  margin: 0 0 0.5rem;
}

h2 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

h3 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

p {
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0 0 0.8rem;
}

.tagline {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--accent-soft);
}

.muted {
  color: var(--text-muted);
}

/* HERO BACKGROUND BANNER */

.hero-banner {
  width: 100%;
  min-height: clamp(260px, 60vw, 790px);
  background-image: url('./img/hero-banner2.jpg');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2.5rem 1.5rem 3.2rem;
  position:relative;
}
.hero-banner::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100px; /* výška overlay */
  pointer-events: none;
  
  /* ↑ Od transparent k farbe pozadia stránky */
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 0%,
    #292444 80%
  );
}

.hero-banner-container {
  width: 1120px;
  display:flex;
  justify-content: right;
  }
.hero-banner-inner {
  max-width: 720px;
  border-radius: 18px;
  border: 1px solid rgba(241, 220, 184, 0.9);
  background: radial-gradient(circle at top, rgba(10, 8, 14, 0.92), rgba(3, 2, 6, 0.94));
  box-shadow: 0 18px 60px rgba(0,0,0,0.85);
  padding: 1.8rem 2.2rem 2.1rem;
  text-align: center;
}

.hero-banner-kicker {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--accent-soft);
  margin-bottom: 0.5rem;
}

.hero-banner-inner h1 {
  margin-bottom: 0.4rem;
  font-size: clamp(1.6rem, 3.2vw, 2.2rem);
}

.hero-banner-text {
  font-size: 0.95rem;
  color: var(--text-muted);
}

/* HERO PANEL LAYOUT */

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr);
  gap: 2.3rem;
  align-items: center;
}

.hero-left {
  padding-right: 0.5rem;
}

.hero-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.3rem 0.8rem;
  border-radius: 999px;
  border: 1px solid var(--accent);
  background: rgba(3, 3, 8, 0.9);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 0.9rem;
  color: var(--accent-soft);
}

.hero-badge span:first-child {
  font-size: 0.9rem;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 1.3rem;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-top: 0.7rem;
  color: var(--text-muted);
}

.cta-row {
  margin-top: 1.7rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  align-items: center;
}

@media (max-width: 760px) {
  .hero-banner {
    position: relative;
    min-height: 600px;                   /* hero výška */
    background-image: url('./img/hero-banner-mobile2.jpg');
    background-size: 600px 600px;        /* tvoj obrázok 600x600 */
    background-position: top center;
    background-repeat: no-repeat;
    padding: 1.5rem 1.2rem 8rem;         /* spodný padding posunie aj content pod tým */
  }

  .hero-banner-container {
    position: relative;
    max-width: 1120px;
    width: 100%;
    margin: 0 auto;
  }

  .hero-banner-inner {
    position: relative;
    max-width: 540px;
    margin: 0 auto;
    top: 50%;                            /* vrch kontajnera v polovici hero */
    transform: translateY(50%);          /* + polovica vlastnej výšky -> stred kontajnera na spodnej hrane hero */
  }
}


/* BUTTONS */

.btn-primary {
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  border: 0;
  cursor: pointer;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 500;
  color: #1c1309;
  background: radial-gradient(circle at top, var(--accent) 0, #b37b3a 100%);
  box-shadow: 0 10px 28px rgba(0,0,0,0.7);
}

.btn-primary:hover {
  filter: brightness(1.05);
}

.btn-ghost {
  padding: 0.7rem 1.4rem;
  border-radius: 999px;
  border: 1px solid var(--accent);
  background: transparent;
  cursor: pointer;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--accent-soft);
}

/* PHOTO BLOCKS */

.photo-square {
  width: 100%;
  max-width: 320px;
  aspect-ratio: 1 / 1;
  background: #151319;
  border-radius: 14px;
  border: 2px solid #514149;
  box-shadow: 0 18px 50px rgba(0,0,0,0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  text-align: center;
  padding: 1rem;
}
.photo-square img {
  width: 100%;
  height: 100%;
  object-fit: contain;    /* celý obrázok sa zmestí dovnútra */
  display: block;
}
.film-credits {
  font-size: 0.82rem;
  text-align: center;
  color: var(--text-muted);
  line-height: 1.5;
}

.film-credits strong {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.75rem;
  color: var(--accent-soft);
}

/* TWO COL LAYOUT */

.two-col {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr);
  gap: 2.3rem;
  align-items: flex-start;
}

.two-col-gallery {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

/* TAGS / BULLETS */

.tag-pill {
  display: inline-block;
  padding: 0.2rem 0.7rem;
  border-radius: 999px;
  border: 1px solid #40343f;
  background: rgba(27, 22, 35, 0.95);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.7rem;
  margin-bottom: 0.7rem;
  color: var(--accent-soft);
}

.biig {
   font-size: 2rem;
   font-weight:700;
   padding-left:20px;
   padding-right:20px;
   border-radius: 20px;
   text-align:center;
}

ul.clean {
  list-style: none;
  padding: 0;
  margin: 0 0 0.8rem;
}

ul.clean li {
  position: relative;
  padding-left: 1.2rem;
  font-size: 0.9rem;
  margin-bottom: 0.28rem;
  color: var(--text-muted);
}

ul.clean li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0.1rem;
  font-size: 0.8rem;
  color: var(--accent-soft);
}

/* TIMELINE */

.timeline {
  border-left: 2px solid #3c3342;
  padding-left: 1rem;
  margin-top: 0.6rem;
}

.timeline-item {
  margin-bottom: 0.6rem;
}

.timeline-item span.year {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--accent-soft);
  display: block;
}

.timeline-item p {
  margin: 0.1rem 0 0.4rem;
  font-size: 0.9rem;
}

/* HORSES SECTION */

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 0.8rem;
}

.small-pill {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  border: 1px solid #3c3240;
  color: var(--accent-soft);
  background: #18131e;
}

/* CSFD LINKS */

.csfd-link {
  border-bottom: 1px dotted transparent;
}

.csfd-link:hover {
  border-bottom-color: rgba(239, 220, 186, 0.65);
}

.external-icon {
  font-size: 0.7em;
  margin-left: 0.25em;
  opacity: 0.75;
}

/* VOUCHERS */

/* KARTY – VOUCHERY */

.card {
  background: var(--paper);
  color: var(--text-dark);
  border-radius: 12px;
  border: 1px solid #5b4334;
  box-shadow: 0 14px 36px rgba(0,0,0,0.6);
  padding: 56px 1.4rem 1.7rem;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-align: left;
}

/* Zarovnanie nadpisu a ceny na stred */
.card h3 {
  margin-top: 0;
  margin-bottom: 0.3rem;
  min-height: 2.3em;
  font-family: "Cinzel", serif;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 1rem;
  text-align: center;
}

.price {
  font-family: "Cinzel", serif;
  font-size: 1.25rem;
  margin-bottom: 0.1rem;
  color: var(--price-highlight);
  font-weight: 700;
  text-align: center;
}

.duration {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #6f5036;
  margin-bottom: 0.9rem;
  text-align: center;
}

/* Popisy a zoznam zostávajú zarovnané doľava */
.card ul {
  padding-left: 1.1rem;
  margin: 0 0 0.7rem;
  font-size: 0.9rem;
  text-align: left;
}

.card ul li {
  margin-bottom: 0.25rem;
}

.card-note {
  font-size: 0.8rem;
  color: #5a4b39;
  margin-top: auto;
  text-align: left;
}

/* Filmový prúžok – 10px od krajov (hore + z bokov) */
.card-film-strip {
  position: absolute;
  left: 10px;
  right: 10px;
  height: 16px;
  top: 10px;
  background-image: radial-gradient(circle, #2b2117 18%, transparent 19%);
  background-size: 26px 12px;
  opacity: 0.35;
  pointer-events: none;
}

/* Štítok balíka – presne na film stripe, vycentrovaný */
.card-tag {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translate(-50%, 0);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  line-height: 16px;
  padding: 0 1.1rem;
  border-radius: 999px;
  border: 1px solid #5b4334;
  background: #f7ebd9;
  color: #3a2817;
  z-index: 1;
  width: 60%;
  text-align: center;
}

.card-tag.red {
  border-color: var(--danger);
  color: var(--danger);
}

/* Ribbon TOP ZÁŽITOK */
.card-top::before {
  content: "TOP ZÁŽITOK";
  position: absolute;
  top: 1.1rem;
  right: -3.2rem;
  transform: rotate(45deg);
  background: linear-gradient(135deg, #f7e4b6, #d8a851);
  color: #1f1408;
  font-size: 0.64rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  padding: 0.25rem 2.8rem;
  box-shadow: 0 8px 18px rgba(0,0,0,0.35);
  z-index: 3;
}

/* Grid na karty */
.cards-row {
  margin-top: 1.6rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.6rem;
  align-items: stretch;
}

@media (max-width: 840px) {
  .cards-row {
    grid-template-columns: minmax(0, 1fr);
  }
  .biig {
   font-size: 1.5rem;
}
}

.vouchers-cta a {
  color: var(--accent-soft);
  border-bottom: 1px dotted transparent;
}

.vouchers-cta a:hover {
  border-bottom-color: rgba(239, 220, 186, 0.6);
}
/* GALLERY */

#galeria h2 {
  margin-bottom: 0.4rem;
}

.film-strip-gallery {
  margin-top: 1.2rem;
}

.filmstrip-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
}

.filmstrip-frame {
  aspect-ratio: 1 / 1;
  background: #151119;
  border-radius: 6px;
  border: 2px solid #f4ebdd;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f4ebddaa;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  text-align: center;
  padding: 0.6rem;
  cursor: pointer;
}

.filmstrip-frame::before,
.filmstrip-frame::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 8px;
  background-image: radial-gradient(circle, #151119 18%, transparent 19%);
  background-size: 18px 8px;
  opacity: 0.45;
}
.filmstrip-frame::before { top: -2px; }
.filmstrip-frame::after { bottom: -2px; }

.filmstrip-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* FAQ / INFO */

#faq .section-inner {
  padding-top: 2rem;
}

.faq-controls {
  display: flex;
  gap: 0.75rem;
  margin: 0.4rem 0 1rem;
  flex-wrap: wrap;
}

.faq-toggle-all {
  padding: 0.3rem 0.8rem;
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  border-radius: 999px;
  border: 1px solid #44374a;
  background: rgba(19, 15, 27, 0.9);
  color: var(--accent-soft);
  cursor: pointer;
}

.faq-list {
  margin-top: 0.4rem;
}

.faq-item {
  border-bottom: 1px solid #2f2633;
  padding: 0.35rem 0;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: inherit;
  padding: 0.55rem 0 0.45rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}

.faq-question-text {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--accent-soft);
  text-align: left;
}

.faq-indicator {
  font-size: 0.9rem;
  margin-left: 1rem;
  transition: transform 0.2s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.22s ease-out;
}

.faq-answer p {
  margin: 0 0 0.7rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.faq-item.open .faq-answer {
  max-height: 400px;
}

.faq-item.open .faq-indicator {
  transform: rotate(180deg);
}

/* CONTACT */

#kontakt .contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr);
  gap: 2.2rem;
}

#kontakt label {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  margin-bottom: 0.18rem;
  color: var(--accent-soft);
}

#kontakt input,
#kontakt textarea {
  width: 100%;
  padding: 0.55rem 0.7rem;
  border-radius: 4px;
  border: 1px solid #514456;
  background: #130f18;
  font-family: inherit;
  font-size: 0.9rem;
  color: var(--text-main);
}

#kontakt textarea {
  min-height: 120px;
  resize: vertical;
}

#kontakt .btn-primary {
  margin-top: 0.8rem;
}

.contact-details {
  font-size: 0.9rem;
  line-height: 1.8;
  color: var(--text-muted);
}

.contact-details span.label {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
  color: var(--accent-soft);
  display: block;
}

footer {
  padding: 1.5rem;
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* LIGHTBOX */

.lightbox {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 80;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.18s ease-out;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.85);
}

.lightbox-inner {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  padding: 0.75rem;
  z-index: 2;
}

.lightbox-inner img {
  max-width: 100%;
  max-height: 100%;
  display: block;
  border-radius: 10px;
  box-shadow: 0 18px 60px rgba(0,0,0,0.9);
}

.lightbox-close {
  position: absolute;
  top: -0.1rem;
  right: -0.1rem;
  transform: translate(50%, -50%);
  border-radius: 999px;
  border: 1px solid #fdf5e4;
  width: 32px;
  height: 32px;
  font-size: 1.1rem;
  background: rgba(8, 6, 11, 0.95);
  color: #fdf5e4;
  cursor: pointer;
}

.lightbox[aria-hidden="false"] {
  opacity: 1;
  pointer-events: all;
}

body.lightbox-open {
  overflow: hidden;
}

/* RESPONSIVE – ostatné layouty */

@media (max-width: 900px) {
  .hero-grid,
  .two-col,
  #kontakt .contact-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-grid {
    gap: 1.8rem;
  }

  .hero-left {
    order: 2;
  }

  .hero-right {
    order: 1;
  }
}

@media (max-width: 760px) {
  .section-inner {
    padding: 0 1.5rem;
  }

  .hero-banner-inner {
    padding: 1.5rem 1.5rem 1.7rem;
  }

  .filmstrip-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 520px) {
  .filmstrip-row {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-banner {
    padding: 2rem 1.2rem 2.4rem;
  }
}
.form-notification {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
}

.form-notification.visible {
  opacity: 1;
  pointer-events: all;
}

.form-notification-box {
  background: #fff;
  padding: 28px 34px;
  max-width: 480px;
  width: 90%;
  border-radius: 10px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.4);
  font-size: 1.1rem;
  text-align: center;
  position: relative;
}

.form-notification-box p {
  margin: 0;
  color: #333;
}

.form-notification-box .close-btn {
  position: absolute;
  top: 8px;
  right: 10px;
  background: none;
  border: none;
  font-size: 26px;
  cursor: pointer;
  color: #333;
}

.hidden {
  display: none;
}
.hp-field {
  position: absolute;
  left: -9999px;
  top: 0;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* COOKIE BANNER – DreamMakers style */

.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999;
  padding: 1rem 1.2rem;
  background: radial-gradient(circle at top, #1b1523 0%, #050509 75%);
  border-top: 1px solid #3c323f;
  box-shadow: 0 -16px 40px rgba(0, 0, 0, 0.85);
  transition: transform 0.25s ease-out, opacity 0.25s ease-out;
}

.cookie-hidden {
  transform: translateY(100%);
  opacity: 0;
}

.cookie-banner-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1.3rem;
}

.cookie-banner-text {
  flex: 1 1 auto;
  font-size: 0.84rem;
  color: var(--text-muted);
}

.cookie-banner-text strong {
  display: block;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--accent-soft);
  margin-bottom: 0.2rem;
}

.cookie-banner-text p {
  margin: 0;
  line-height: 1.55;
}

.cookie-banner-actions {
  flex: 0 0 auto;
  display: flex;
  gap: 0.6rem;
}

/* Buttons (v štýle DreamMakers) */

.cookie-btn-primary,
.cookie-btn-secondary {
  font-family: inherit;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  cursor: pointer;
  white-space: nowrap;
}

/* Súhlasím */
.cookie-btn-primary {
  border: 0;
  color: #1c1309;
  background: radial-gradient(circle at top, var(--accent) 0, #b37b3a 100%);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.7);
}

.cookie-btn-primary:hover {
  filter: brightness(1.05);
}

/* Len potrebné */
.cookie-btn-secondary {
  border: 1px solid #4a3a54;
  background: rgba(12, 8, 18, 0.95);
  color: var(--accent-soft);
}

.cookie-btn-secondary:hover {
  border-color: var(--accent);
}

/* Mobilné rozloženie */
@media (max-width: 640px) {
  .cookie-banner {
    padding: 0.8rem 1rem 1rem;
  }

  .cookie-banner-inner {
    flex-direction: column;
    align-items: stretch;
    gap: 0.8rem;
  }

  .cookie-banner-actions {
    justify-content: flex-end;
  }
}

/* SOCIAL BAR POD HERO */
.social-bar {
  max-width: 1120px;
  margin: auto;
  padding-top: 30px;
  display: flex;
  justify-content: center;
  gap: 1.2rem;

}

.social-link {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 1.1rem;
  border-radius: 999px;
  font-size: 0.85rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-soft);
  border: 1px solid rgba(200, 180, 150, 0.3);
  transition: 0.2s ease;
}

/* Hover efekty podľa platformy */
.social-link.fb:hover {
  border-color: #4867b4;
  color: #86a7ff;
}

.social-link.ig:hover {
  border-color: #d45da4;
  color: #ff9fd5;
}

/* Ikony */
.social-link .icon {
  display: flex;
  align-items: center;
}

@media (max-width: 680px) {
   .social-bar {
    flex-direction: row !important;   /* drž spolu vedľa seba */
    justify-content: center;
    gap: 0.8rem;
    flex-wrap: wrap;                  /* prípadne sa zalomia, ale nie na full width */
  }
  .social-link {
    flex: 0 0 auto;                   /* zakáže roztiahnutie na plnú šírku */
    padding: 0.45rem 0.9rem;          /* trochu menšie tlačidlá */
    font-size: 0.78rem;               /* nech sa zmestia vedľa */
  }
}

.filmstrip-frame--video .video-placeholder {
  width: 100%;
  height: 100%;
  background: #111;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  color: #C9952A;
}

.video-play-icon {
  font-size: 2rem;
  line-height: 1;
}

.video-label {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.7;
}

.filmstrip-frame--embed {
  padding: 0;
  overflow: hidden;
}

.filmstrip-frame--embed iframe {
  width: 100%;
  height: 100%;
  display: block;
}

/* VIDEO PLAYER FRAME */
.filmstrip-frame--player {
  cursor: default;
  padding: 0;
}

.filmstrip-frame--player::before,
.filmstrip-frame--player::after {
  display: none;
}

.filmstrip-frame--player .video-js {
  width: 100% !important;
  height: 100% !important;
  position: absolute;
  top: 0;
  left: 0;
}