:root {
  --bg: #0f172a;
  --surface: #111827;
  --card: #131c2f;
  --accent: #4ade80;
  --accent-2: #22d3ee;
  --text: #e5e7eb;
  --muted: #9ca3af;
  --shadow: 0 20px 70px rgba(0, 0, 0, 0.35);
  --radius: 18px;
  --gap: 1.25rem;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", "Segoe UI", sans-serif;
  background: radial-gradient(circle at 20% 20%, rgba(34, 211, 238, 0.12), transparent 25%),
    radial-gradient(circle at 80% 0%, rgba(74, 222, 128, 0.15), transparent 30%),
    var(--bg);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
}

a {
  color: inherit;
  text-decoration: none;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  background: rgba(15, 23, 42, 0.8);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.logo {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  letter-spacing: 0.01em;
}

nav {
  display: flex;
  gap: 1rem;
  font-weight: 600;
  font-size: 0.95rem;
}

nav a {
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  transition: background 0.2s ease, color 0.2s ease;
}

nav a:hover {
  background: rgba(255, 255, 255, 0.08);
}

.hero {
  position: relative;
  min-height: 82vh;
  display: grid;
  align-items: center;
  padding: 4rem 2rem;
  color: #fff;
  background: linear-gradient(120deg, rgba(15, 23, 42, 0.9), rgba(17, 24, 39, 0.7)),
    url("../HeroImage.jpg") center/cover no-repeat;
  overflow: hidden;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.1));
}

.hero__content {
  position: relative;
  max-width: 720px;
  display: grid;
  gap: 1rem;
  opacity: 0;
  animation: hero-fly-in 0.8s ease-out 0.05s forwards;
}

.hero__content > * {
  opacity: 0;
  transform: translateX(-18px);
  animation: hero-fly-in 0.7s ease-out forwards;
}

.hero__content > *:nth-child(1) { animation-delay: 0.1s; }
.hero__content > *:nth-child(2) { animation-delay: 0.18s; }
.hero__content > *:nth-child(3) { animation-delay: 0.26s; }
.hero__content > *:nth-child(4) { animation-delay: 0.34s; }
.hero__content > *:nth-child(5) { animation-delay: 0.42s; }

@keyframes hero-fly-in {
  from {
    opacity: 0;
    transform: translateX(-28px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.eyebrow {
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-2);
  font-weight: 700;
  font-size: 0.85rem;
}

h1 {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2.7rem, 4vw, 3.7rem);
  margin: 0;
}

h2 {
  font-family: "Space Grotesk", sans-serif;
  margin: 0.2rem 0 0.4rem;
  font-size: clamp(2rem, 3vw, 2.7rem);
}

h3 {
  margin: 0.2rem 0 0.4rem;
}

.hero__details,
.hero__location {
  margin: 0;
  font-size: 1.05rem;
  color: #e8edf7;
}

.hero__actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.2rem;
  border-radius: 12px;
  font-weight: 700;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.card .button {
  width: 100%;
}

.button.primary {
  background: linear-gradient(120deg, var(--accent), var(--accent-2));
  color: #0b1221;
  box-shadow: 0 10px 30px rgba(34, 211, 238, 0.35);
}

.button.ghost {
  border-color: rgba(255, 255, 255, 0.4);
  color: #fff;
  background: transparent;
}

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

main {
  display: grid;
  gap: 2rem;
}

.band {
  padding: 3rem 2rem;
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  gap: 1.5rem;
}

.band.split {
  align-items: stretch;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.venue__info {
  display: grid;
  gap: 1rem;
}

.venue__image {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  object-fit: cover;
  max-height: 360px;
}

.section-header {
  max-width: 720px;
}

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

.cards {
  display: grid;
  gap: var(--gap);
}

.cards.two {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.cards.three {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.card {
  background: var(--card);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 1.5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.card.highlight {
  border: 1px solid rgba(34, 211, 238, 0.25);
  background: linear-gradient(160deg, rgba(34, 211, 238, 0.08), rgba(74, 222, 128, 0.08));
}

.card__meta {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
  color: var(--accent-2);
  font-weight: 700;
}

.card__list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 1.5rem;
  display: grid;
  gap: 0.45rem;
  color: var(--muted);
}

.note {
  color: var(--muted);
  margin: 0;
}

.map iframe {
  width: 100%;
  height: 100%;
  min-height: 0;
  border: 0;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.map {
  height: 100%;
}

.contact {
  background: var(--surface);
  padding: 1.5rem;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.06);
  display: grid;
  gap: 1rem;
  max-width: 680px;
  box-shadow: var(--shadow);
}

.field {
  display: grid;
  gap: 0.35rem;
}

label {
  font-weight: 600;
}

input,
textarea {
  width: 100%;
  padding: 0.85rem 0.9rem;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  font-size: 1rem;
}

input:focus,
textarea:focus {
  outline: 2px solid rgba(34, 211, 238, 0.5);
  border-color: transparent;
}

.form-status {
  min-height: 1.2rem;
  color: var(--muted);
}

.footer {
  padding: 2rem;
  text-align: center;
  color: var(--muted);
  background: #0b1221;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.embed-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.embed-main {
  flex: 1;
  padding: 0;
}

.embed-full {
  position: relative;
  width: 100%;
  height: 100vh;
  max-height: calc(100vh - 120px);
}

.embed-full iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

@media (max-width: 1024px) {
  .topbar {
    padding: 0.85rem 1.25rem;
  }

  .hero {
    min-height: 70vh;
    padding: 3rem 1.5rem;
  }

  .hero__content {
    max-width: 100%;
  }

  .hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero__actions .button {
    width: 100%;
  }

  .hero__details,
  .hero__location {
    font-size: 1rem;
  }

  .band {
    padding: 2.5rem 1.5rem;
  }

  .cards.two {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  }

  .band.split {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .venue__image {
    max-height: 280px;
  }

  .map {
    height: 380px;
  }

  .contact {
    max-width: none;
  }
}

@media (max-width: 600px) {
  nav {
    gap: 0.5rem;
  }

  .hero {
    padding: 2.6rem 1.1rem;
  }

  h1 {
    font-size: clamp(2.2rem, 9vw, 2.6rem);
  }

  h2 {
    font-size: clamp(1.7rem, 6vw, 2.2rem);
  }

  .band {
    padding: 2.2rem 1.1rem;
  }

  .card {
    padding: 1.25rem;
  }

  .venue__image {
    max-height: 240px;
  }

  .map {
    height: 320px;
  }
}

@media (max-width: 720px) {
  .topbar {
    flex-direction: column;
    gap: 0.5rem;
  }

  nav {
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero {
    padding: 3rem 1.5rem;
  }

  .band {
    padding: 2.5rem 1.25rem;
  }
}
