:root {
  --bg: #050510;
  --panel: rgba(12, 16, 39, 0.78);
  --panel-strong: rgba(12, 16, 39, 0.92);
  --pink: #ff4fd8;
  --cyan: #7cf0ff;
  --purple: #6a63ff;
  --yellow: #f7ff8a;
  --text: #edf2ff;
  --muted: #b7c3e6;
  --border: rgba(255, 255, 255, 0.08);
}

@font-face {
  font-family: "Synthek LDR";
  src: url("../font/SynthekLDR.woff2") format("woff2"),
       url("../font/SynthekLDR.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Space Grotesk", system-ui, -apple-system, sans-serif;
  color: var(--text);
  background-color: #000000;
  background-image:
    radial-gradient(circle at 12% 18%, rgba(255, 79, 216, 0.12) 0, transparent 24%),
    radial-gradient(circle at 80% 12%, rgba(124, 240, 255, 0.12) 0, transparent 22%),
    radial-gradient(circle at 50% 82%, rgba(106, 99, 255, 0.12) 0, transparent 28%),
    linear-gradient(135deg, rgba(255, 79, 216, 0.05), rgba(124, 240, 255, 0.05));
  line-height: 1.6;
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background: url("../imgs/sun-bg.jpg") center / cover no-repeat;
  mix-blend-mode: screen;
  opacity: 0.4;
}

header, main, footer, .hero, .sub-hero {
  position: relative;
  z-index: 2;
}

a {
  color: var(--cyan);
  text-decoration: none;
}

a:hover {
  color: var(--pink);
}

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

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

h1, h2, h3, h4 {
  font-size: 1.92rem;
  margin: 0;
  font-family: "Synthek LDR", "Space Grotesk", system-ui, sans-serif;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

p {
  margin: 0 0 12px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.8rem;
  color: var(--yellow);
  margin: 0 0 6px;
}

.font {
  letter-spacing: 0.08em;
}

.brand {
  font-size: clamp(2.6rem, 5vw, 3.6rem);
}

.tagline {
  color: var(--cyan);
  font-size: 1.3rem;
  margin: 6px 0 14px;
  text-shadow: 0 0 18px rgba(124, 240, 255, 0.35);
}

.lede {
  color: #FFFFFF;
  font-size: 1.05rem;
  max-width: 680px;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 120px 0 80px;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero::before {
  background-image: linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 120px 120px;
  opacity: 0.18;
}

.hero::after {
  background: linear-gradient(120deg, rgba(255, 79, 216, 0.22), rgba(124, 240, 255, 0.18));
  mix-blend-mode: screen;
  opacity: 0.4;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  align-items: center;
  z-index: 1;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.hero-visual {
  position: relative;
}

.hero-photo img {
  border-radius: 16px;
  height: 100%;
  object-fit: cover;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

.hero-facts {
  list-style: none;
  margin: 20px 0 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.hero-facts li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 8px;
  align-items: center;
  color: #FFFFFF;
}

.hero-facts .material-icons {
  font-size: 20px;
  color: var(--pink);
}

.hero-visual .next-highlight {
  margin-top: 18px;
  background: var(--panel-strong);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 16px;
  box-shadow: 0 0 24px rgba(255, 79, 216, 0.2);
}

.next-date {
  font-size: 1.2rem;
  color: var(--cyan);
  margin: 4px 0 8px;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border: 1px solid var(--border);
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
  border-color: rgba(124, 240, 255, 0.6);
  box-shadow: 0 12px 40px rgba(124, 240, 255, 0.18);
}

.button.primary {
  background: linear-gradient(120deg, var(--pink), var(--purple));
  border-color: rgba(255, 79, 216, 0.4);
  color: #0a0c1f;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.button.secondary {
  background: linear-gradient(120deg, rgba(124, 240, 255, 0.15), rgba(106, 99, 255, 0.18));
  color: var(--text);
}

.button.ghost {
  background: rgba(255, 255, 255, 0.04);
}

.cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 14px 0 6px;
}

.glass-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 24px;
  position: relative;
  overflow: hidden;
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.35),
    0 0 25px rgba(255, 79, 216, 0.15);
}

.glass-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.08), transparent 35%);
  pointer-events: none;
}

.section-heading {
  margin-bottom: 12px;
}

.section-heading h2 {
  margin-bottom: 6px;
}

.pillars {
  margin: -20px 0 40px;
}

.pillar-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}

.pillar {
  min-height: 180px;
}

.media {
  padding: 30px 0 40px;
}

.media-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 20px;
  align-items: start;
}

.video-card {
  padding-bottom: 10px;
}

.video-frame {
  position: relative;
  padding-bottom: 56.25%;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: #000;
}

.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

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

.tag {
  padding: 6px 12px;
  border-radius: 40px;
  border: 1px solid rgba(255, 79, 216, 0.4);
  background: rgba(255, 79, 216, 0.12);
  color: var(--text);
  font-size: 0.85rem;
}

.callout {
  margin: 16px 0 12px;
  padding: 14px;
  border-radius: 12px;
  border: 1px solid rgba(124, 240, 255, 0.25);
  background: rgba(124, 240, 255, 0.06);
  color: var(--text);
}

.gallery {
  padding: 50px 0 60px;
}

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

.gallery-grid img {
  border-radius: 14px;
  height: 100%;
  object-fit: cover;
  min-height: 200px;
  border: 1px solid var(--border);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

.gigs {
  padding: 60px 0;
}

.next-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.gig-accordion {
  display: grid;
  gap: 12px;
}

.gig-month {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}

.gig-month summary {
  cursor: pointer;
  padding: 14px 16px;
  font-weight: 700;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background: rgba(255, 255, 255, 0.02);
}

.gig-month summary::-webkit-details-marker {
  display: none;
}

.gig-month[open] summary {
  border-bottom: 1px solid var(--border);
}

.gig-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 12px;
  padding: 12px;
}

.gig-card {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.03);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.gig-date {
  color: var(--yellow);
  font-weight: 700;
  letter-spacing: 0.08em;
  font-size: 0.95rem;
}

.gig-venue {
  margin: 6px 0 6px;
}

.gig-location {
  font-size: 0.95rem;
}

.inline {
  vertical-align: middle;
  font-size: 18px;
}

.contact {
  padding: 50px 0 70px;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
}

.social-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 8px 0 12px;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
}

.badge-row img {
  width: 140px;
  height: 140px;
}

.fb-card {
  min-height: 320px;
}

.footer {
  border-top: 1px solid var(--border);
  padding: 26px 0;
  background: rgba(255, 255, 255, 0.03);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-cta {
  display: flex;
  gap: 10px;
}

@media (max-width: 780px) {
  .hero {
    padding: 90px 0 50px;
  }

  .gallery-grid img {
    min-height: 160px;
  }

  .video-card {
    order: -1;
  }
}

@media (max-width: 540px) {
  .cta-row {
    flex-direction: column;
  }

  .next-card {
    align-items: flex-start;
  }
}

/* Booking page */
.page {
  min-height: 100vh;
}

.sub-hero {
  position: relative;
  padding: 110px 0 70px;
}

.sub-hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
  align-items: center;
}

.info-list {
  margin: 10px 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.6;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.pill-badge {
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(124, 240, 255, 0.4);
  background: rgba(124, 240, 255, 0.08);
  color: var(--text);
  font-size: 0.85rem;
  letter-spacing: 0.04em;
}

.booking {
  padding: 40px 0 70px;
}

.form-shell {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 18px;
}

.form-wrap {
  padding: 28px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 14px;
}

.form-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 10px;
}

.info-card {
  align-self: start;
}

.input-field input[type=text],
.input-field input[type=email],
.input-field textarea {
  color: var(--text);
  border-bottom: 1px solid var(--border);
}

.input-field input:focus,
.input-field textarea:focus {
  border-bottom: 1px solid var(--cyan) !important;
  box-shadow: 0 1px 0 0 var(--cyan) !important;
}

.input-field label {
  color: var(--muted);
}

.input-field input:focus + label,
.input-field textarea:focus + label {
  color: var(--cyan) !important;
}

.materialize-textarea {
  min-height: 120px;
}

.select-label {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 0.95rem;
  position: static !important;
  transform: none !important;
  left: 0 !important;
}

.styled-select {
  display: block;
  width: 100%;
  padding: 10px 12px;
  font-size: 16px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background-color: rgba(255, 255, 255, 0.06);
  color: var(--text);
}

.styled-select:focus {
  outline: none;
  border-color: var(--cyan);
  box-shadow: 0 0 0 2px rgba(124, 240, 255, 0.15);
}

.styled-select option {
  color: var(--text);
  background-color: #0c1027;
}

.small {
  font-size: 0.9rem;
}

@media (max-width: 960px) {
  .form-shell {
    grid-template-columns: 1fr;
  }
}
