/* ── Reset & base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --purple: #7c2fbe;
  --pink:   #e91e8c;
  --dark:   #0d0d0d;
  --white:  #ffffff;
  --header-h: 72px;
}

html, body {
  height: 100%;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  background: var(--dark);
  color: var(--white);
  overflow-x: hidden;
}

/* ── Header ── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  background: linear-gradient(to bottom, rgba(0,0,0,0.7) 0%, transparent 100%);
}

/* ── Burger button ── */
.burger {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 32px;
  height: 22px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 101;
}

.burger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}

.burger.open span:nth-child(1) { transform: translateY(10px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.burger.open span:nth-child(3) { transform: translateY(-10px) rotate(-45deg); }

/* ── Top dropdown nav ── */
.nav-backdrop {
  position: fixed;
  inset: 0;
  z-index: 110;
  background: rgba(0,0,0,0.5);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.nav-backdrop.visible {
  opacity: 0.4;
  pointer-events: auto;
}

.nav-dropdown {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 120;
  background: rgba(10, 10, 10, 0.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 2px solid var(--purple);
  padding: calc(var(--header-h) - 24px) 40px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  transform: translateY(-100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-close-btn {
  position: absolute;
  top: 20px;
  right: 24px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  opacity: 0.6;
  transition: opacity 0.2s;
  padding: 4px;
}
.nav-close-btn:hover { opacity: 1; }

.nav-dropdown.open {
  transform: translateY(0);
}

.nav-logo-link { display: flex; justify-content: center; }

.nav-logo {
  height: 90px;
  width: auto;
  filter: drop-shadow(0 4px 16px rgba(0,0,0,0.6));
}

.nav-dropdown ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 40px;
}

.nav-dropdown ul a {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(0.7rem, 1.4vw, 0.85rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--white);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-dropdown ul a:hover { color: var(--pink); }

/* ── Hero ── */
.hero {
  position: relative;
  width: 100%;
  height: 100dvh;
  min-height: 500px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

/* Video */
.hero-video-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(251,168,114,0.25) 0%,
    rgba(251,168,114,0.1)  40%,
    rgba(251,168,114,0.55) 70%,
    rgba(251,168,114,0.82) 100%
  );
}

/* Seamless blend into the tickets section */
.hero::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 220px;
  background: url('../fullbg.jpg') top center / cover no-repeat;
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.85) 70%, #000 100%);
          mask-image: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.85) 70%, #000 100%);
  pointer-events: none;
  z-index: 6;
}

.hero-texture {
  position: absolute;
  inset: 0;
  background: url('../texture.png') center center / cover no-repeat;
  opacity: 0.10; /* ← Adjust this: 0 = invisible, 1 = fully opaque. 0.05 = 5% */
  pointer-events: none;
  z-index: 5;
}

/* Hero content */
.hero-content {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  width: 80%;
  padding: calc(var(--header-h) + 20px) 0 40px;
  text-align: center;
}

/* Ticket button */
.btn-tickets {
  display: block;
  width: 100%;
  padding: 16px 24px;
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(0.7rem, 1.6vw, 0.9rem);
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-align: center;
  text-decoration: none;
  color: var(--white);
  background: var(--pink);
  border: 2px solid var(--pink);
  border-radius: 50px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, transform 0.15s;
  box-shadow: 0 4px 24px rgba(233, 30, 140, 0.45);
}

.btn-tickets:hover {
  background: transparent;
  color: var(--pink);
  transform: translateY(-2px);
}

/* Lineup wrapper — anchor for the balloon */
.lineup-wrap {
  position: relative;
  width: 100%;
}

/* Lineup image — matches container (and button) width */
.lineup-img {
  display: block;
  width: 100%;
  height: auto;
  animation: lineup-entrance 1.4s cubic-bezier(0.22, 1, 0.36, 1) 0.3s both;
  transform-origin: center top;
  will-change: transform, opacity, filter;
}

@keyframes lineup-entrance {
  0% {
    opacity: 0;
    transform: translateY(40px) scale(0.94);
    filter: blur(12px);
  }
  60% {
    filter: blur(0);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .lineup-img {
    animation: none;
  }
}

/* Hot air balloon */
.balloon {
  position: absolute;
  top: 50%;
  right: 4%;
  width: clamp(45px, 7%, 80px);
  height: auto;
  animation: balloon-float 5s ease-in-out infinite alternate;
  filter: drop-shadow(0 8px 20px rgba(0,0,0,0.4));
  pointer-events: none;
}

@keyframes balloon-float {
  0%   { transform: translateY(-50%)       rotate(-2deg); }
  30%  { transform: translateY(calc(-50% - 12px)) rotate(1deg); }
  60%  { transform: translateY(calc(-50% - 6px))  rotate(-1deg); }
  100% { transform: translateY(calc(-50% - 22px)) rotate(2deg); }
}

/* ── Festival Location section ── */
.location-section {
  background: #0d0d0d;
  padding: 80px 20px;
  scroll-margin-top: var(--header-h);
}

.location-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.location-map {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,0,0,0.5);
}

.location-map iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.location-heading {
  font-family: 'Lato', sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.location-address {
  font-family: 'Lato', sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--pink);
  margin-bottom: 32px;
}

.location-subheading {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.45);
  margin-bottom: 16px;
}

.location-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.location-list li {
  font-family: 'Lato', sans-serif;
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.8);
  padding-left: 16px;
  position: relative;
}

.location-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--pink);
}

@media (max-width: 768px) {
  .location-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

/* ── Lineup announced section ── */
.lineup-section {
  background: #0d0d0d;
  padding: 70px 20px;
}

.lineup-section-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.lineup-section-heading {
  font-family: 'Lato', sans-serif;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 700;
  color: var(--white);
  text-align: center;
  margin-bottom: 40px;
}

/* Widget grid */
.soultown-lineup-2026-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

@media (max-width: 1024px) {
  .soultown-lineup-2026-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}
@media (max-width: 768px) {
  .soultown-lineup-2026-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 480px) {
  .soultown-lineup-2026-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

.soultown-lineup-2026-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.soultown-lineup-2026-item {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  background: #111;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.soultown-lineup-2026-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(0,0,0,0.35);
}

.soultown-lineup-2026-img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #000;
}

.soultown-lineup-2026-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.soultown-lineup-2026-item:hover .soultown-lineup-2026-img-wrap img {
  transform: scale(1.05);
}

.soultown-lineup-2026-name {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 6px 8px;
  background: linear-gradient(to top, rgba(0,0,0,0.85), rgba(0,0,0,0.25), transparent);
  color: #f5f5f5;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  z-index: 2;
}

.soultown-lineup-2026-name span {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ── Gallery section ── */
.gallery-section {
  background: #ec29ac;
  padding: 60px 16px;
  position: relative;
  overflow: hidden;
}

.gallery-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../texture.png');
  background-attachment: fixed;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0.20; /* ← Adjust this: 0 = invisible, 1 = fully opaque. 0.20 = 20% */
  pointer-events: none;
  z-index: 1;
}

/* Mobile fallback — fixed attachment is unreliable / janky on iOS */
@media (max-width: 768px) {
  .gallery-section::before {
    background-attachment: scroll;
    background-size: cover;
  }
}

.gallery-inner {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.gallery-heading {
  font-family: 'Lato', sans-serif;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 700;
  color: var(--white);
  text-align: center;
  margin-bottom: 36px;
}

.gallery-grid {
  columns: 5 180px;
  gap: 12px;
}

.gallery-grid img {
  display: block;
  width: 100%;
  max-height: 300px;
  min-height: 180px;
  object-fit: cover;
  margin-bottom: 12px;
  break-inside: avoid;
  cursor: pointer;
  border-radius: 2px;
  opacity: 0;
  transform: scale(0.98);
  transition: opacity 0.5s ease, transform 0.5s ease;
  background: linear-gradient(110deg, #1a1a1a 8%, #2a2a2a 18%, #1a1a1a 33%);
  background-size: 200% 100%;
  animation: gallery-shimmer 1.4s linear infinite;
}

.gallery-grid img.is-loaded {
  opacity: 1;
  transform: scale(1);
  background: none;
  animation: none;
  min-height: 0;
}

.gallery-grid img.is-loaded:hover {
  opacity: 0.85;
  transform: scale(1.01);
  transition: opacity 0.2s, transform 0.2s;
}

@keyframes gallery-shimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

@media (prefers-reduced-motion: reduce) {
  .gallery-grid img {
    animation: none;
    transition: opacity 0.2s ease;
    transform: none;
  }
  .gallery-grid img.is-loaded { transform: none; }
}

/* ── Scroll-in reveal animations ── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.8s cubic-bezier(0.22, 1, 0.36, 1),
              filter 1s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform, filter;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-blur {
  filter: blur(12px);
  transform: translateY(40px) scale(0.96);
}

.reveal-blur.is-visible {
  filter: blur(0);
  transform: translateY(0) scale(1);
}

.reveal.reveal-left  { transform: translateX(-50px); }
.reveal.reveal-right { transform: translateX(50px); }
.reveal.reveal-left.is-visible,
.reveal.reveal-right.is-visible { transform: translateX(0); }

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ── Festival Experience section ── */
.experience-section {
  background-image: url('../fullbg.jpg');
  background-attachment: fixed;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 90px 20px;
}

@media (max-width: 768px) {
  .experience-section {
    background-attachment: scroll;
  }
}

.experience-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.experience-eyebrow {
  text-align: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--pink);
  margin-bottom: 10px;
}

.experience-heading {
  text-align: center;
  font-family: 'Lato', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 60px;
}

.experience-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 70px;
}

.experience-row:last-child {
  margin-bottom: 0;
}

.experience-row.reverse .experience-media {
  order: 2;
}

.experience-media {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0,0,0,0.5);
  aspect-ratio: 4 / 3;
}

.experience-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.experience-text h3 {
  font-family: 'Lato', sans-serif;
  font-size: clamp(1.4rem, 2.4vw, 1.9rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 18px;
}

.experience-text p {
  font-family: 'Lato', sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.82);
  margin-bottom: 14px;
}

.experience-text p:last-child {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .experience-section {
    padding: 60px 18px;
  }
  .experience-heading {
    margin-bottom: 40px;
  }
  .experience-row {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 50px;
  }
  .experience-row.reverse .experience-media {
    order: 0;
  }
  .experience-text p {
    font-size: 0.95rem;
  }
}

/* ── Lightbox ── */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0,0,0,0.94);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s;
}

.lightbox.open {
  opacity: 1;
  pointer-events: auto;
}

.lb-img-wrap {
  max-width: 90vw;
  max-height: 88vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lb-img-wrap img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 8px 48px rgba(0,0,0,0.7);
  user-select: none;
}

.lb-close {
  position: absolute;
  top: 20px; right: 28px;
  background: none;
  border: none;
  color: #fff;
  font-size: 2.5rem;
  cursor: pointer;
  opacity: 0.7;
  line-height: 1;
  transition: opacity 0.2s;
}
.lb-close:hover { opacity: 1; }

.lb-prev,
.lb-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #fff;
  font-size: 4rem;
  cursor: pointer;
  opacity: 0.5;
  line-height: 1;
  padding: 0 20px;
  transition: opacity 0.2s;
  user-select: none;
}
.lb-prev { left: 0; }
.lb-next { right: 0; }
.lb-prev:hover,
.lb-next:hover { opacity: 1; }

.lb-counter {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.5);
}

/* ── Fullscreen video section ── */
.fullvid-section {
  position: relative;
  width: 100%;
  height: 100dvh;
  min-height: 500px;
  overflow: hidden;
}

.fullvid-bg-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.fullvid-bg {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.fullvid-text {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 12px;
  z-index: 5;
  padding: 80px 24px 32px;
  background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,0.75) 60%, rgba(0,0,0,0.9) 100%);
  color: #fff;
  text-align: center;
}

.fullvid-seek {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 12px;
  background: #000;
  cursor: pointer;
  z-index: 8;
  overflow: hidden;
}

.fullvid-seek-fill {
  height: 100%;
  width: 0;
  background: var(--pink);
  pointer-events: none;
  will-change: width;
}

.fullvid-heading {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.90rem;
  color: var(--pink);
  margin: 0 0 14px;
  text-shadow: 0 2px 6px rgba(0,0,0,0.5);
}

.fullvid-text p {
  max-width: 1300px;
  margin: 0 auto 10px;
  font-family: 'Lato', sans-serif;
  font-size: 0.92rem;
  line-height: 1.5;
  text-shadow: 0 2px 6px rgba(0,0,0,0.5);
}

.fullvid-text p:last-child {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .fullvid-text {
    padding: 50px 16px 24px;
  }
  .fullvid-heading {
    font-size: 0.65rem;
    margin-bottom: 10px;
  }
  .fullvid-text p {
    font-size: 0.72rem;
    line-height: 1.45;
    margin-bottom: 7px;
  }
}

.fullvid-unmute {
  position: absolute;
  bottom: 28px;
  right: 28px;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.35);
  border: none;
  border-radius: 50%;
  color: #fff;
  width: 44px;
  height: 44px;
  padding: 0;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}

.fullvid-unmute:hover {
  background: rgba(0,0,0,0.6);
  transform: scale(1.08);
}

.fullvid-unmute svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.fullvid-unmute span {
  display: none;
}

/* ── Festival Overview section ── */
.overview-section {
  background: #ec29ac;
  padding: 80px 20px;
}

.overview-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.overview-heading {
  font-family: 'Lato', sans-serif;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 700;
  text-transform: none;
  letter-spacing: normal;
  color: var(--white);
  text-align: center;
  margin: 20px auto 12px;
  max-width: 1040px;
}

.overview-video {
  position: relative;
  aspect-ratio: 16 / 9;
  width: 100%;
  max-width: 1040px;
  margin: 0 auto;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 12px 48px rgba(0,0,0,0.5);
  background: #000;
  cursor: pointer;
}

.overview-video video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Big centre play button */
.vid-play-btn {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 3;
  transition: opacity 0.25s;
}
.vid-play-btn svg { width: 80px; height: 80px; filter: drop-shadow(0 2px 12px rgba(0,0,0,0.6)); transition: transform 0.2s; }
.vid-play-btn:hover svg { transform: scale(1.1); }
.vid-play-btn.hidden { opacity: 0; pointer-events: none; }

/* Controls bar */
.vid-controls {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: linear-gradient(transparent, rgba(0,0,0,0.75));
  opacity: 0;
  transition: opacity 0.25s;
}
.overview-video:hover .vid-controls,
.overview-video.paused .vid-controls { opacity: 1; }

.vid-ctrl-btn {
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  padding: 0;
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  opacity: 0.85;
  transition: opacity 0.15s;
}
.vid-ctrl-btn:hover { opacity: 1; }
.vid-ctrl-btn svg { width: 18px; height: 18px; }

.vid-time {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.65rem;
  color: rgba(255,255,255,0.8);
  white-space: nowrap;
  flex-shrink: 0;
}

.vid-progress {
  flex: 1;
  height: 3px;
  background: rgba(255,255,255,0.25);
  border-radius: 3px;
  cursor: pointer;
  position: relative;
}
.vid-progress-fill {
  height: 100%;
  width: 0%;
  background: var(--pink);
  border-radius: 3px;
  pointer-events: none;
  transition: width 0.1s linear;
}

.overview-text {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 1040px;
  margin: 0 auto;
  text-align: center;
}

.overview-text p {
  font-family: 'Lato', sans-serif;
  font-size: 0.85rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.85);
}

/* ── Tickets section ── */
.tickets-section {
  background: url('../fullbg.jpg') top center / cover no-repeat;
  padding: 80px 20px;
}

.tickets-inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
}

.tickets-heading {
  font-family: 'Lato', sans-serif;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 700;
  text-transform: none;
  letter-spacing: normal;
  color: var(--white);
  text-align: center;
  margin-bottom: 40px;
}

.skiddle-wrapper {
  min-height: 800px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 8px;
  overflow: hidden;
}

#ticketbox_ph_41306333 {
  min-height: 800px;
  color: var(--white);
}

#ticketbox_ph_41306333 a {
  color: var(--pink);
}

/* ── Footer ── */
.site-footer {
  background: #0d0d0d;
  padding: 28px 20px;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.07);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer-copy {
  font-family: 'Lato', sans-serif;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
}

.footer-credit {
  font-family: 'Lato', sans-serif;
  font-size: 0.75rem;
  color: var(--pink);
}

/* ── Mobile tweaks ── */
@media (max-width: 768px) {
  .hero-content {
    width: 92%;
    align-items: center;
    padding-top: calc(var(--header-h) + 12px);
  }

  .lineup-img {
    width: 100%;
    max-height: 75vh;
    object-fit: contain;
  }
}

@media (max-width: 480px) {
  .hero-content { padding-bottom: 28px; gap: 14px; }
  .btn-tickets  { padding: 14px 32px; }
}
