@import url('https://fonts.googleapis.com/css2?family=Bungee&family=Poppins:wght@400;600;700&display=swap');

:root {
  --pink: #ff2fb7;
  --cyan: #2fe8ff;
  --yellow: #ffe94a;
  --purple: #7b2ff7;
  --bg: #170922;
  --bg-alt: #230f33;
  --text: #fdf6ff;
  --card-grad-start: #4b2a63;
  --card-grad-end: #2a1338;
  --tv-bezel: #120818;
  --danger-start: #c81e5c;
  --danger-end: #7b1030;
  --secondary-start: #2fa0b7;
  --secondary-end: #2f6bf7;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: 'Poppins', system-ui, sans-serif;
  scroll-behavior: smooth;
}

body {
  background-image:
    radial-gradient(circle at 15% 10%, color-mix(in srgb, var(--pink) 18%, transparent), transparent 40%),
    radial-gradient(circle at 85% 0%, color-mix(in srgb, var(--cyan) 16%, transparent), transparent 45%),
    linear-gradient(180deg, var(--bg), var(--bg-alt));
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

h1, h2, h3, .display {
  font-family: 'Bungee', system-ui, sans-serif;
  line-height: 1.2;
  letter-spacing: 0.5px;
}

a { color: var(--cyan); }

.wrap {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 20px;
}

/* --- Header / nav --- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(23,9,34,0.9);
  backdrop-filter: blur(6px);
  border-bottom: 3px solid var(--pink);
}

.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  padding-bottom: 12px;
  gap: 16px;
  flex-wrap: wrap;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Bungee', system-ui, sans-serif;
  font-size: 1.5rem;
  color: var(--yellow);
  text-decoration: none;
  text-shadow: 2px 2px 0 var(--pink);
  white-space: nowrap;
}

.logo-mark {
  height: 38px;
  width: auto;
  display: block;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.main-nav a {
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
  padding: 6px 4px;
  border-bottom: 3px solid transparent;
}

.main-nav a:hover, .main-nav a.active {
  border-bottom-color: var(--cyan);
}

.nav-socials {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-socials a {
  color: var(--yellow);
  display: flex;
  border-bottom: none !important;
  padding: 0 !important;
}

.nav-socials a:hover { color: var(--cyan); }

.btn {
  display: inline-block;
  font-family: 'Bungee', system-ui, sans-serif;
  background: linear-gradient(90deg, var(--pink), var(--purple));
  color: #fff;
  padding: 12px 22px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 0.95rem;
  box-shadow: 0 4px 0 rgba(0,0,0,0.35);
  border: none;
  cursor: pointer;
}

.btn:hover { filter: brightness(1.1); }

.btn.btn-large { padding: 18px 36px; font-size: 1.2rem; }

/* --- Hero --- */
.hero {
  position: relative;
  padding: 110px 0 70px;
  text-align: center;
  background-size: cover;
  background-position: center 30%;
  border-bottom: 3px solid var(--pink);
  overflow: hidden;
}

.hero-video {
  min-height: 88vh;
  padding: 70px 0;
  display: flex;
  align-items: center;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
}

.hero-video-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}

.hero-video-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, color-mix(in srgb, var(--bg) 15%, transparent), color-mix(in srgb, var(--bg) 40%, transparent) 85%);
}

.hero-video-iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 177.78vh;
  height: 56.25vw;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.hero h1 {
  font-size: clamp(2.2rem, 6vw, 4rem);
  color: var(--yellow);
  text-shadow: 3px 3px 0 var(--pink), 6px 6px 0 var(--purple);
  margin-bottom: 10px;
}

.hero-logo {
  height: clamp(110px, 18vw, 180px);
  width: auto;
  display: block;
  margin: 0 auto;
  filter: drop-shadow(3px 3px 0 var(--pink)) drop-shadow(6px 6px 0 var(--purple));
}

.hero p.tag {
  font-size: 1.25rem;
  color: var(--cyan);
  margin-bottom: 30px;
}

/* --- Sections --- */
section { padding: 50px 0; }

section h2 {
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  color: var(--yellow);
  text-align: center;
  margin-bottom: 30px;
  text-shadow: 2px 2px 0 var(--purple);
}

/* --- Testimonials --- */
.testimonials {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.testimonial {
  background: rgba(255,255,255,0.05);
  border-left: 4px solid var(--cyan);
  border-radius: 8px;
  padding: 20px;
}

.testimonial .quote { font-style: italic; margin-bottom: 12px; }
.testimonial .who { color: var(--yellow); font-weight: 700; font-size: 0.9rem; }
.testimonial .source { color: var(--cyan); font-size: 0.85rem; }

/* --- Photo gallery --- */
.gallery {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
}

.gallery figure {
  margin: 0;
  border-radius: 10px;
  overflow: hidden;
  border: 3px solid var(--purple);
  background: var(--bg-alt);
}

.gallery img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transition: transform 0.2s ease;
}

.gallery figure:hover img { transform: scale(1.06); }

.gallery figcaption {
  padding: 8px 10px;
  font-size: 0.85rem;
  color: var(--cyan);
}

/* --- Lightbox --- */
body.lightbox-locked { overflow: hidden; }

.lightbox-overlay {
  position: fixed;
  inset: 0;
  background: color-mix(in srgb, var(--bg) 92%, black);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 200;
  padding: 30px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

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

.lightbox-frame {
  position: relative;
  max-width: 90vw;
  max-height: 85vh;
  border: 4px solid var(--pink);
  border-radius: 20px;
  background: linear-gradient(160deg, var(--card-grad-start), var(--card-grad-end));
  padding: 18px;
  box-shadow: 0 0 0 4px var(--purple), 0 20px 60px rgba(0,0,0,0.6);
}

.lightbox-frame img {
  display: block;
  max-width: 100%;
  max-height: 72vh;
  border-radius: 10px;
  margin: 0 auto;
}

.lightbox-caption {
  text-align: center;
  color: var(--yellow);
  margin-top: 14px;
  margin-bottom: 0;
  font-family: 'Bungee', system-ui, sans-serif;
  font-size: 1rem;
}

.lightbox-close, .lightbox-nav {
  position: fixed;
  border: none;
  border-radius: 50%;
  background: linear-gradient(90deg, var(--pink), var(--purple));
  color: #fff;
  cursor: pointer;
  box-shadow: 0 4px 0 rgba(0,0,0,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-close {
  top: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  font-size: 1.6rem;
  line-height: 1;
}

.lightbox-nav {
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  font-size: 1.3rem;
}

.lightbox-nav.prev { left: 24px; }
.lightbox-nav.next { right: 24px; }

.lightbox-close:hover, .lightbox-nav:hover { filter: brightness(1.15); }

@media (max-width: 700px) {
  .lightbox-nav { width: 40px; height: 40px; }
  .lightbox-nav.prev { left: 10px; }
  .lightbox-nav.next { right: 10px; }
  .lightbox-close { top: 12px; right: 12px; }
}

/* --- Retro TV video frame --- */
.video-grid {
  display: grid;
  gap: 34px;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.tv-frame {
  position: relative;
  background: linear-gradient(160deg, var(--card-grad-start), var(--card-grad-end));
  border-radius: 26px;
  padding: 22px 22px 34px;
  box-shadow: 0 10px 0 rgba(0,0,0,0.35), inset 0 0 0 4px rgba(255,255,255,0.06);
  border: 4px solid var(--pink);
}

.tv-frame::before {
  content: "";
  position: absolute;
  top: 10px; left: 10px; right: 10px; bottom: 22px;
  border-radius: 16px;
  box-shadow: inset 0 0 40px rgba(0,0,0,0.6);
  pointer-events: none;
}

.tv-screen {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #000;
  border: 6px solid var(--tv-bezel);
}

.tv-screen iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.tv-frame .tv-title {
  margin-top: 14px;
  text-align: center;
  color: var(--yellow);
  font-weight: 700;
}

.tv-frame .tv-knobs {
  position: absolute;
  bottom: 8px;
  right: 22px;
  display: flex;
  gap: 8px;
}

.tv-frame .tv-knobs span {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 6px var(--cyan);
}

/* --- Gigs cards --- */
.gig-cards {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.gig-card {
  background: linear-gradient(160deg, var(--card-grad-start), var(--card-grad-end));
  border: 4px solid var(--yellow);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 0 rgba(0,0,0,0.35);
}

.gig-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

.gig-card-body { padding: 18px 20px 24px; text-align: center; }

.gig-card .date {
  font-family: 'Bungee', system-ui, sans-serif;
  color: var(--pink);
  font-size: 0.9rem;
  margin-bottom: 6px;
}

.gig-card h3 { color: var(--yellow); margin: 0 0 6px; font-size: 1.2rem; }
.gig-card .venue { color: var(--cyan); font-size: 0.9rem; margin-bottom: 16px; }

.no-gigs {
  text-align: center;
  color: var(--cyan);
  padding: 20px;
}

.gig-scroller {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 6px 6px 16px;
  -webkit-overflow-scrolling: touch;
}

.gig-scroller .gig-card {
  flex: 0 0 250px;
  scroll-snap-align: start;
}

.gig-scroller::-webkit-scrollbar { height: 8px; }
.gig-scroller::-webkit-scrollbar-thumb { background: var(--purple); border-radius: 4px; }

/* --- Forms --- */
.form-card {
  background: rgba(255,255,255,0.05);
  border-radius: 14px;
  padding: 30px;
  max-width: 560px;
  margin: 0 auto;
  border: 3px solid var(--purple);
}

label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
  color: var(--yellow);
}

input[type=text], input[type=email], input[type=tel], textarea, input[type=date], input[type=password] {
  width: 100%;
  padding: 12px 14px;
  margin-bottom: 18px;
  border-radius: 8px;
  border: 2px solid var(--purple);
  background: rgba(0,0,0,0.25);
  color: var(--text);
  font-family: inherit;
  font-size: 1rem;
}

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

.honeypot { position: absolute; left: -9999px; top: -9999px; }

.alert {
  padding: 14px 18px;
  border-radius: 8px;
  margin-bottom: 20px;
  font-weight: 600;
}

.alert.success { background: rgba(47,232,255,0.15); border: 2px solid var(--cyan); }
.alert.error { background: rgba(255,47,183,0.15); border: 2px solid var(--pink); }

/* --- Footer / persistent CTA --- */
.book-cta {
  background: linear-gradient(90deg, var(--purple), var(--pink));
  text-align: center;
  padding: 34px 20px;
}

.book-cta h2 {
  color: #fff;
  text-shadow: none;
  margin-bottom: 16px;
}

.site-footer {
  background: var(--bg);
  border-top: 3px solid var(--cyan);
  padding: 26px 20px;
  text-align: center;
  font-size: 0.9rem;
  color: rgba(253,246,255,0.7);
}

.socials { margin: 14px 0; display: flex; gap: 18px; justify-content: center; }
.socials a { color: var(--yellow); font-weight: 700; text-decoration: none; }
.socials a:hover { color: var(--cyan); }

.bio-text { max-width: 780px; margin: 0 auto; overflow: hidden; }
.bio-text p { margin-bottom: 18px; line-height: 1.7; font-size: 1.05rem; }

.bio-image {
  display: block;
  width: 100%;
  border-radius: 14px;
  border: 3px solid var(--purple);
  margin-bottom: 24px;
}

@media (min-width: 700px) {
  .bio-image {
    float: right;
    width: 45%;
    margin: 0 0 20px 30px;
  }
}

@media (max-width: 600px) {
  .main-nav { gap: 10px; font-size: 0.9rem; }
  .site-header .wrap { justify-content: center; }
}
