@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;500;600;700;800&family=Sora:wght@400;500;600;700&display=swap');

:root {
  --bg: #060606;
  --bg-soft: #0e0e0e;
  --surface: #121212;
  --surface-2: #1a1a1a;
  --ink: #f7f2df;
  --muted: #c8bea0;
  --gold: #d4af37;
  --gold-2: #b98a1f;
  --line: rgba(212, 175, 55, 0.3);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  background: radial-gradient(circle at 20% 10%, #1a1508 0%, var(--bg) 45%), linear-gradient(160deg, #060606 0%, #090909 100%);
  color: var(--ink);
  font-family: 'Manrope', sans-serif;
  scroll-behavior: smooth;
}

img,
video {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
}

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

.nav {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(8px);
  background: rgba(8, 8, 8, 0.9);
  border-bottom: 1px solid var(--line);
}

.nav-wrap {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.logo {
  font-family: 'Sora', sans-serif;
  letter-spacing: 0.08em;
  font-size: clamp(1.2rem, 2.2vw, 1.8rem);
  text-decoration: none;
  color: #f3e6b4;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.nav-links a {
  text-decoration: none;
  padding: 8px 12px;
  border: 1px solid transparent;
  border-radius: 999px;
  color: var(--muted);
  transition: 180ms ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: #fff6d9;
  border-color: var(--line);
  background: rgba(212, 175, 55, 0.1);
}

.hero {
  position: relative;
  min-height: 72vh;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(2px) brightness(0.38);
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0.65) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 24px;
}

.hero h1 {
  margin: 0;
  line-height: 0.95;
  font-family: 'Sora', sans-serif;
  font-size: clamp(2.4rem, 9vw, 5rem);
  letter-spacing: 0.09em;
  color: #ffe8a3;
}

.hero p {
  margin: 8px 0 0;
  font-family: 'Sora', sans-serif;
  letter-spacing: 0.16em;
  font-size: clamp(1.1rem, 3.2vw, 2rem);
  color: #e5c76c;
}

.scroll-cue {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--muted);
  font-size: 0.92rem;
  z-index: 2;
}

section {
  padding: 52px 0;
}

.intro-cta-section {
  padding-top: 0;
}

.countries-section {
  padding-bottom: 10px;
}

.section-title {
  margin: 0 0 14px;
  font-family: 'Sora', sans-serif;
  letter-spacing: 0.06em;
  font-size: clamp(1.45rem, 3.6vw, 2.4rem);
  color: #f3dda0;
}

.lead {
  color: var(--muted);
  line-height: 1.7;
  margin: 0 0 22px;
  font-size: 1.05rem;
}

.bus-show-cta-wrap {
  display: flex;
  justify-content: center;
  margin: 0 0 30px;
}

.bus-show-cta {
  width: min(100%, 820px);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-family: 'Sora', sans-serif;
  font-size: clamp(1rem, 2.1vw, 1.45rem);
  line-height: 1.35;
  font-weight: 700;
  color: #1f1305;
  padding: 18px 20px;
  border-radius: 18px;
  border: 1px solid rgba(255, 228, 151, 0.78);
  background: linear-gradient(135deg, #f5d67c 0%, #f0bc45 45%, #ba7d14 100%);
  box-shadow: 0 0 0 1px rgba(255, 223, 125, 0.35), 0 12px 30px rgba(212, 145, 13, 0.45);
  animation: busCtaPulse 1.8s ease-in-out infinite;
}

.bus-show-cta:hover {
  transform: translateY(-2px) scale(1.01);
  filter: brightness(1.08) saturate(1.08);
  box-shadow: 0 0 0 1px rgba(255, 223, 125, 0.6), 0 16px 34px rgba(212, 145, 13, 0.62);
}

.button,
button {
  border: 1px solid rgba(255, 226, 141, 0.4);
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  font-weight: 600;
  text-decoration: none;
  color: #201607;
  background: linear-gradient(135deg, #e6c161 0%, #bd8f2b 100%);
  box-shadow: 0 8px 24px rgba(189, 143, 43, 0.24);
  padding: 11px 17px;
  cursor: pointer;
  transition: transform 120ms ease;
}

.button:hover,
button:hover {
  transform: translateY(-1px);
}

.marquee-wrap {
  border: 1px solid var(--line);
  border-radius: 20px;
  background: linear-gradient(180deg, #15110a, #100e0a);
  overflow: hidden;
  padding: 16px 0;
}

.marquee {
  display: flex;
  width: max-content;
  gap: 30px;
  padding-left: 24px;
  animation: slide 25s linear infinite;
}

@keyframes slide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.flag-item {
  min-width: 150px;
  text-align: center;
}

.flag {
  font-size: 2.2rem;
  margin-bottom: 8px;
}

.flag-name {
  color: var(--muted);
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.card {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 20px;
  background: linear-gradient(160deg, rgba(212, 175, 55, 0.06), rgba(212, 175, 55, 0.02));
}

.card h3 {
  margin-top: 0;
  margin-bottom: 8px;
  font-size: 1.2rem;
}

.meta {
  color: var(--muted);
  font-size: 0.95rem;
}

.placeholder {
  border: 1px dashed rgba(212, 175, 55, 0.45);
  border-radius: 14px;
  min-height: 240px;
  display: grid;
  place-items: center;
  color: var(--muted);
  background: rgba(212, 175, 55, 0.04);
  text-align: center;
  padding: 18px;
}

.media-block {
  margin-top: 20px;
}

.social-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.social {
  border-radius: 14px;
  border: 1px solid var(--line);
  text-decoration: none;
  padding: 14px;
  text-align: center;
  background: rgba(212, 175, 55, 0.06);
}

.form-wrap {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 20px;
  background: linear-gradient(180deg, #12100c, #0d0c0a);
}

form {
  display: grid;
  gap: 12px;
}

input,
textarea {
  width: 100%;
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 10px;
  background: rgba(212, 175, 55, 0.04);
  color: var(--ink);
  padding: 12px;
  font-family: inherit;
}

textarea {
  min-height: 130px;
  resize: vertical;
}

.foot {
  border-top: 1px solid var(--line);
  color: var(--muted);
  text-align: center;
  padding: 20px 0 28px;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.gallery .placeholder,
.gallery img {
  min-height: 180px;
  height: 100%;
  object-fit: cover;
}

.notice {
  display: inline-block;
  margin-top: 10px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(212, 175, 55, 0.14);
  color: #f4dfa0;
  border: 1px solid rgba(212, 175, 55, 0.35);
  font-size: 0.88rem;
}

.shows-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.show-card {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 12px;
  background: linear-gradient(180deg, var(--surface-2), var(--surface));
}

.show-image {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid rgba(212, 175, 55, 0.26);
}

.show-title {
  margin: 12px 4px 8px;
  font-family: 'Sora', sans-serif;
  font-size: clamp(1.15rem, 2.8vw, 1.45rem);
  line-height: 1.2;
  font-weight: 600;
  color: #f4dfa0;
}

.show-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 4px 10px;
}

.tag {
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.26);
  border-radius: 999px;
  padding: 5px 10px;
  font-size: 0.82rem;
  color: #f7ebc6;
}

.show-divider {
  height: 1px;
  margin: 0 4px 10px;
  background: rgba(212, 175, 55, 0.3);
}

.show-subtitle {
  margin: 0 4px 8px;
  font-family: 'Sora', sans-serif;
  font-size: 1.02rem;
  font-weight: 600;
  color: #ead08a;
}

.show-card p {
  margin: 0 4px 12px;
  color: #ddd1b0;
  line-height: 1.55;
  font-size: 0.95rem;
}

.order-button {
  display: block;
  text-align: center;
  text-decoration: none;
  font-size: 0.97rem;
  line-height: 1.2;
  color: #241606;
  border-radius: 10px;
  padding: 9px 12px;
  border: 1px solid rgba(255, 230, 164, 0.5);
  background: linear-gradient(180deg, #e5bf5e 0%, #bc8f2b 100%);
  font-weight: 700;
}

.show-card .notice {
  margin-left: 4px;
}

@media (max-width: 1000px) {
  .shows-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 880px) {
  .grid-2,
  .social-row,
  .gallery,
  .shows-list {
    grid-template-columns: 1fr;
  }

  .nav-wrap {
    padding: 10px 0;
  }

  .hero {
    min-height: 66vh;
  }
}

/* Motion */
@keyframes goldPulse {
  0%,
  100% { box-shadow: 0 0 0 rgba(212, 175, 55, 0); }
  50% { box-shadow: 0 0 22px rgba(212, 175, 55, 0.24); }
}

@keyframes busCtaPulse {
  0%,
  100% {
    box-shadow: 0 0 0 1px rgba(255, 223, 125, 0.35), 0 12px 30px rgba(212, 145, 13, 0.45);
  }
  50% {
    box-shadow: 0 0 0 1px rgba(255, 235, 166, 0.72), 0 0 22px rgba(245, 197, 86, 0.55), 0 16px 36px rgba(212, 145, 13, 0.62);
  }
}

@keyframes softFloat {
  0%,
  100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

@keyframes fadeRise {
  from {
    opacity: 0;
    transform: translateY(24px) scale(0.985);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
}

.reveal.in-view {
  animation: fadeRise 680ms cubic-bezier(0.2, 0.7, 0.2, 1) forwards;
}

.nav {
  animation: fadeRise 500ms ease both;
}

.logo {
  transition: color 220ms ease, text-shadow 220ms ease, transform 220ms ease;
}

.logo:hover {
  color: #ffe7a1;
  text-shadow: 0 0 18px rgba(212, 175, 55, 0.45);
  transform: translateY(-1px);
}

.nav-links a {
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 5px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 231, 161, 0.95), transparent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 220ms ease;
}

.nav-links a:hover::after {
  transform: scaleX(1);
}

.button,
button,
.order-button {
  transition: transform 180ms ease, box-shadow 240ms ease, filter 220ms ease;
}

.button:hover,
button:hover,
.order-button:hover {
  transform: translateY(-2px);
  filter: saturate(1.08);
}

.button:hover,
button:hover {
  box-shadow: 0 10px 28px rgba(189, 143, 43, 0.35);
}

.order-button:hover {
  box-shadow: 0 8px 24px rgba(230, 193, 97, 0.25);
}

.card,
.show-card,
.social,
.form-wrap,
.marquee-wrap {
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 240ms ease, background 240ms ease;
}

.card:hover,
.show-card:hover,
.social:hover,
.form-wrap:hover,
.marquee-wrap:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 226, 141, 0.55);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.35);
}

.show-card:hover {
  animation: goldPulse 1.4s ease-in-out infinite;
}

.show-image,
.gallery img,
.media-block img {
  transition: transform 350ms ease, filter 300ms ease;
}

.show-card:hover .show-image,
.gallery img:hover,
.media-block img:hover {
  transform: scale(1.025);
  filter: brightness(1.05);
}

.flag-item {
  transition: transform 220ms ease;
}

.flag-item:hover {
  transform: translateY(-4px) scale(1.03);
}

.hero-content {
  animation: fadeRise 760ms ease both;
}

.hero-content h1 {
  animation: softFloat 4.8s ease-in-out infinite;
}

.social:hover {
  color: #fff1c6;
  background: rgba(212, 175, 55, 0.12);
}

input:focus,
textarea:focus {
  outline: none;
  border-color: rgba(255, 223, 133, 0.72);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.16);
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@keyframes arrowDrop {
  0% { transform: translateY(0); opacity: 0.45; }
  60% { transform: translateY(10px); opacity: 1; }
  100% { transform: translateY(16px); opacity: 0.25; }
}

.scroll-cue {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 226, 141, 0.45);
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(0, 0, 0, 0.35);
}

.scroll-cue span {
  display: inline-block;
  font-size: 1.35rem;
  color: #f7d878;
  animation: arrowDrop 1.3s ease-in-out infinite;
}

/* Lottie scroll indicator */
.scroll-cue {
  width: 300px;
  height: 300px;
  border: 0;
  border-radius: 0;
  background: transparent;
  display: grid;
  place-items: center;
  pointer-events: none;
  bottom: -98px;
}

.scroll-cue dotlottie-wc {
  width: 300px !important;
  height: 300px !important;
}

/* Hero down-arrow (gold) */
.arrow {
  position: absolute;
  left: 50%;
  bottom: 20px;
  transform: translateX(-50%);
  text-align: center;
  margin: 0;
  z-index: 2;
}

.arrow a {
  color: #e6c161;
  text-decoration: none;
  font-size: 2rem;
  line-height: 1;
  display: inline-block;
  text-shadow: 0 0 16px rgba(212, 175, 55, 0.4);
}

.bounce {
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-18px);
  }
  60% {
    transform: translateX(-50%) translateY(-8px);
  }
}

/* Mobile hamburger menu + scrollable flags */
.nav-toggle {
  display: none;
  border: 1px solid rgba(255, 226, 141, 0.42);
  background: rgba(212, 175, 55, 0.12);
  color: #f6df9f;
  border-radius: 10px;
  padding: 7px 10px;
  font-size: 1.2rem;
  line-height: 1;
  cursor: pointer;
}

.marquee-wrap {
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: rgba(212, 175, 55, 0.6) transparent;
}

.marquee-wrap::-webkit-scrollbar {
  height: 8px;
}

.marquee-wrap::-webkit-scrollbar-thumb {
  background: rgba(212, 175, 55, 0.6);
  border-radius: 999px;
}

.marquee {
  min-width: max-content;
}

@media (max-width: 880px) {
  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .nav-wrap {
    position: relative;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: rgba(8, 8, 8, 0.96);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    text-align: center;
    width: 100%;
  }

  .marquee {
    animation: none;
    padding-right: 24px;
  }
}

/* Flags: manual horizontal scroll */
.marquee {
  animation: none !important;
}

.marquee-wrap {
  touch-action: pan-x;
  cursor: grab;
}

.marquee-wrap:active {
  cursor: grabbing;
}

/* Desktop: never show hamburger */
.nav-toggle {
  display: none !important;
}

@media (max-width: 880px) {
  .nav-toggle {
    display: inline-flex !important;
  }
}

/* Rendelhető műsorok - mobile-first redesign */
.shows-page .lead {
  max-width: 760px;
}

.bookable-list {
  display: grid;
  gap: 14px;
}

.bookable-card {
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(20, 20, 20, 0.95), rgba(14, 14, 14, 0.98));
}

.bookable-cover {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.bookable-body {
  padding: 14px;
}

.bookable-body h2 {
  margin: 0 0 8px;
  font-family: 'Sora', sans-serif;
  font-size: clamp(1.15rem, 4.8vw, 1.45rem);
  color: #f1d488;
}

.bookable-body p {
  margin: 0 0 10px;
}

.bookable-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}

.button-ghost {
  background: transparent;
  color: #f3e3b2;
  border: 1px solid rgba(212, 175, 55, 0.45);
  box-shadow: none;
}

.button-ghost:hover {
  background: rgba(212, 175, 55, 0.14);
  box-shadow: 0 8px 22px rgba(212, 175, 55, 0.15);
}

/* Gallery modal */
.gallery-modal {
  position: fixed;
  inset: 0;
  z-index: 70;
  display: none;
}

.gallery-modal.open {
  display: block;
}

.gallery-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
}

.gallery-panel {
  position: relative;
  width: min(980px, 94vw);
  margin: 4vh auto;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #0d0d0d;
  padding: 14px;
}

.gallery-close {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid rgba(212, 175, 55, 0.5);
  background: rgba(212, 175, 55, 0.12);
  color: #f7e3ad;
  font-size: 1.2rem;
  cursor: pointer;
}

.gallery-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding-right: 38px;
}

.gallery-head h3 {
  margin: 0;
  font-family: 'Sora', sans-serif;
  color: #f3d88f;
}

.gallery-counter {
  color: var(--muted);
  font-size: 0.92rem;
}

.gallery-stage {
  margin-top: 12px;
  display: grid;
  grid-template-columns: 40px 1fr 40px;
  gap: 8px;
  align-items: center;
}

.gallery-stage img {
  width: 100%;
  max-height: min(70vh, 560px);
  object-fit: contain;
  border-radius: 12px;
  border: 1px solid rgba(212, 175, 55, 0.25);
  background: #090909;
}

.gallery-nav {
  border: 1px solid rgba(212, 175, 55, 0.5);
  background: rgba(212, 175, 55, 0.12);
  color: #f7e3ad;
  border-radius: 10px;
  height: 44px;
  cursor: pointer;
  font-size: 1.5rem;
  line-height: 1;
}

@media (min-width: 881px) {
  .bookable-actions {
    grid-template-columns: auto auto;
    justify-content: start;
  }

  .bookable-list {
    gap: 18px;
  }
}

@media (max-width: 520px) {
  .gallery-stage {
    grid-template-columns: 34px 1fr 34px;
  }

  .gallery-nav {
    height: 38px;
  }

  .gallery-panel {
    margin: 2vh auto;
    padding: 10px;
  }
}

/* Flags auto-loop + manual scroll */
.marquee {
  animation: slide 25s linear infinite !important;
}

.marquee-wrap:hover .marquee,
.marquee-wrap:active .marquee,
.marquee-wrap.is-interacting .marquee,
.marquee-wrap:focus-within .marquee {
  animation-play-state: paused !important;
}

/* Phone-only flag drag; desktop stays auto only */
.marquee-wrap {
  overflow: hidden;
  touch-action: auto;
  cursor: default;
}

.marquee-wrap:active {
  cursor: default;
}

@media (max-width: 880px) {
  .marquee {
    animation: slide 25s linear infinite !important;
    padding-right: 24px;
  }

  .marquee-wrap {
    overflow-x: auto;
    overflow-y: hidden;
    touch-action: pan-x;
    cursor: grab;
  }

  .marquee-wrap:active,
  .marquee-wrap.is-interacting {
    cursor: grabbing;
  }

  .marquee-wrap:active .marquee,
  .marquee-wrap.is-interacting .marquee {
    animation-play-state: paused !important;
  }
}

@media (min-width: 881px) {
  .marquee-wrap:hover .marquee,
  .marquee-wrap:active .marquee,
  .marquee-wrap.is-interacting .marquee,
  .marquee-wrap:focus-within .marquee {
    animation-play-state: running !important;
  }
}

/* Hero video tuning for Safari + taller section */
.hero {
  min-height: 86vh;
}

.hero video {
  object-position: center top;
}

@media (max-width: 880px) {
  .hero {
    min-height: 82vh;
  }
}

/* Flag image sizing */
.flag {
  width: 52px;
  height: 36px;
  object-fit: cover;
  border-radius: 4px;
  margin: 0 auto 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.28);
}

/* Navbar image logo */
.logo {
  display: inline-flex;
  align-items: center;
}

.logo img {
  display: block;
  width: auto;
  height: clamp(36px, 6vw, 56px);
  object-fit: contain;
}

@media (max-width: 880px) {
  .logo img {
    height: clamp(32px, 8vw, 44px);
  }
}

/* Rounded uploaded images */
img[src^="assets/"] {
  border-radius: 14px;
}

.logo img,
.flag {
  border-radius: 0 !important;
}
button[hidden] {
  display: none !important;
}
[hidden] {
  display: none !important;
}
