:root {
  --navy: #0c1230;
  --navy-deep: #070a1c;
  --teal: #3fd0d4;
  --gold: #f5a623;
  --magenta: #e0388b;
  --white: #f7f7fb;
  --text-muted: #b9bcd6;
  --max-width: 900px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background: var(--navy-deep);
  color: var(--white);
  line-height: 1.6;
}

.hero {
  position: relative;
  width: 100%;
  background: var(--navy-deep);
}

.hero-image {
  display: block;
  width: 100%;
  height: auto;
}

.hero-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 5%;
  display: flex;
  justify-content: center;
}

.btn {
  display: inline-block;
  padding: 0.9rem 2rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.btn-hero {
  padding: 0.8rem 2.1rem;
  font-size: 1.05rem;
}

.btn-lg {
  padding: 1.25rem 3rem;
  font-size: 1.25rem;
}

.btn-glow {
  position: relative;
  overflow: hidden;
}

.btn-glow::after {
  content: "";
  position: absolute;
  top: 0;
  left: -60%;
  width: 40%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.65), transparent);
  transform: skewX(-20deg);
  animation: btn-shimmer 3.5s ease-in-out infinite;
}

@keyframes btn-shimmer {
  0%, 25% { left: -60%; }
  60%, 100% { left: 140%; }
}

.btn-primary {
  background: linear-gradient(90deg, var(--gold), var(--magenta));
  color: var(--navy-deep);
  box-shadow: 0 4px 20px rgba(224, 56, 139, 0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 26px rgba(224, 56, 139, 0.55);
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  padding: 1.1rem 1rem;
  background: var(--navy);
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.site-nav a {
  color: var(--white);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
}

.site-nav a:hover { color: var(--teal); }

.section {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 4rem 1.5rem;
  text-align: center;
}

.section-alt {
  max-width: none;
  background: var(--navy);
}

.section h2 {
  font-size: 2rem;
  margin-bottom: 1.25rem;
  background: linear-gradient(90deg, var(--teal), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.section p {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 700px;
  margin: 0 auto;
}

#about p { text-align: left; }

.gigs-list { max-width: 700px; margin: 0 auto; }

.gig-item {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  padding: 1.25rem 1.5rem;
  margin-bottom: 0.75rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  text-align: left;
}

.gig-when {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: baseline;
}

.gig-date { color: var(--gold); font-weight: 700; }
.gig-time { color: var(--teal); font-weight: 600; }

.gig-where {
  display: flex;
  flex-direction: column;
}

.gig-venue { color: var(--white); font-weight: 700; font-size: 1.1rem; }
.gig-address { color: var(--text-muted); font-size: 0.9rem; }

.gig-note {
  color: var(--text-muted);
  font-size: 0.9rem;
  font-style: italic;
}

.gig-note a { color: var(--teal); font-style: normal; text-decoration: none; }
.gig-note a:hover { text-decoration: underline; }

.signup-section { padding-bottom: 5rem; }

.signup-form {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 2rem;
}

.signup-form input[type="email"] {
  flex: 1 1 280px;
  max-width: 320px;
  padding: 0.9rem 1.2rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  font-size: 1rem;
}

.signup-form input[type="email"]::placeholder { color: var(--text-muted); }
.signup-form input[type="email"]:focus { outline: 2px solid var(--teal); }

.form-status {
  margin-top: 1rem;
  min-height: 1.5em;
  font-weight: 600;
  color: var(--teal);
}

.form-status.error { color: var(--magenta); }

.site-footer {
  text-align: center;
  padding: 2rem 1rem;
  color: var(--text-muted);
  font-size: 0.85rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.disclaimer {
  font-size: 0.65rem;
  max-width: 640px;
  margin: 0.75rem auto 0;
  opacity: 0.6;
  line-height: 1.4;
}

@media (max-width: 600px) {
  .section h2 { font-size: 1.6rem; }
  .gig-item { flex-direction: column; align-items: flex-start; }
}
