/* Sing Along venue home — branded, clean, not template-y */

.venue-landing-page {
  margin: 0;
  min-height: 100vh;
  background: #f4f2f8;
  color: #1a1a2e;
  font-family: "Nunito", "Segoe UI", system-ui, sans-serif;
  position: relative;
  overflow-x: hidden;
}

/* Soft animated background */
.vl-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.vl-bg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.45;
  will-change: transform;
}

.vl-bg-orb--1 {
  width: 420px;
  height: 420px;
  top: -120px;
  left: -80px;
  background: radial-gradient(circle, rgba(166, 108, 255, 0.55) 0%, rgba(166, 108, 255, 0) 70%);
  animation: vl-float-a 22s ease-in-out infinite;
}

.vl-bg-orb--2 {
  width: 360px;
  height: 360px;
  top: 20%;
  right: -100px;
  background: radial-gradient(circle, rgba(255, 77, 157, 0.4) 0%, rgba(255, 77, 157, 0) 70%);
  animation: vl-float-b 26s ease-in-out infinite;
}

.vl-bg-orb--3 {
  width: 300px;
  height: 300px;
  bottom: -80px;
  left: 35%;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.35) 0%, rgba(124, 58, 237, 0) 70%);
  animation: vl-float-c 30s ease-in-out infinite;
}

.vl-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(166, 108, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(166, 108, 255, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 30%, #000 20%, transparent 100%);
}

@keyframes vl-float-a {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(30px, 40px) scale(1.06); }
}

@keyframes vl-float-b {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-35px, 25px) scale(1.08); }
}

@keyframes vl-float-c {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(20px, -30px) scale(1.05); }
}

/* Page entrance */
.vl-fade-in {
  opacity: 0;
  transform: translateY(14px);
  animation: vl-rise 0.65s ease forwards;
}

.vl-delay-1 { animation-delay: 0.08s; }
.vl-delay-2 { animation-delay: 0.16s; }
.vl-delay-3 { animation-delay: 0.24s; }
.vl-delay-4 { animation-delay: 0.32s; }
.vl-delay-5 { animation-delay: 0.4s; }
.vl-delay-6 { animation-delay: 0.48s; }
.vl-delay-7 { animation-delay: 0.56s; }

@keyframes vl-rise {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.venue-landing-page *,
.venue-landing-page *::before,
.venue-landing-page *::after {
  box-sizing: border-box;
}

.vl-shell {
  max-width: 1080px;
  margin: 0 auto;
  padding: 28px 20px 48px;
  position: relative;
  z-index: 1;
}

/* Header */
.vl-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 36px;
}

.vl-logo img {
  height: 44px;
  width: auto;
  display: block;
}

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

.vl-link {
  color: #4a4a68;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
}

.vl-link:hover {
  color: #7c3aed;
}

/* Buttons — brand gradient, modest radius */
.vl-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 20px;
  border-radius: 7px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: opacity 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease, border-color 0.15s ease;
}

.vl-btn:hover {
  opacity: 0.95;
}

.vl-btn--brand {
  background: linear-gradient(90deg, #a66cff 0%, #ff4d9d 100%);
  color: #fff;
  box-shadow: 0 4px 14px rgba(166, 108, 255, 0.28);
}

.vl-btn--brand:hover {
  color: #fff;
  box-shadow: 0 6px 18px rgba(166, 108, 255, 0.34);
  transform: translateY(-1px);
}

.vl-btn--outline {
  background: #fff;
  color: #4a4a68;
  border-color: #ddd8e8;
}

.vl-btn--outline:hover {
  color: #7c3aed;
  border-color: #c4b5fd;
  transform: translateY(-1px);
}

/* Hero */
.vl-hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 28px;
  align-items: start;
}

.vl-eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #7c3aed;
  margin: 0 0 12px;
}

.vl-hero h1 {
  margin: 0 0 14px;
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.15;
  font-weight: 800;
  color: #1a1a2e;
}

.vl-lead {
  margin: 0 0 24px;
  font-size: 17px;
  line-height: 1.6;
  color: #5c5c78;
  max-width: 520px;
}

.vl-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 14px;
}

.vl-fineprint {
  margin: 0;
  font-size: 13px;
  color: #8888a0;
  line-height: 1.5;
}

/* Side panel */
.vl-panel {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid #e8e4f0;
  border-radius: 10px;
  padding: 22px 20px;
  box-shadow: 0 1px 3px rgba(26, 26, 46, 0.04);
  backdrop-filter: blur(8px);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.vl-panel:hover {
  box-shadow: 0 8px 24px rgba(26, 26, 46, 0.06);
}

.vl-panel-title {
  margin: 0 0 16px;
  font-size: 16px;
  font-weight: 700;
  color: #1a1a2e;
}

.vl-steps {
  list-style: none;
  margin: 0;
  padding: 0;
}

.vl-steps li {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 12px;
  padding-bottom: 14px;
  margin-bottom: 14px;
  border-bottom: 1px solid #f0edf5;
}

.vl-steps li:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.vl-step-no {
  width: 24px;
  height: 24px;
  border-radius: 6px;
  background: linear-gradient(135deg, #a66cff 0%, #ff4d9d 100%);
  color: #fff !important;
  font-size: 12px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.vl-steps strong {
  display: block;
  font-size: 14px;
  margin-bottom: 2px;
}

.vl-steps li > div span {
  font-size: 13px;
  color: #6b6b88;
  line-height: 1.45;
}

/* Features row */
.vl-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 32px;
}

.vl-feature {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid #e8e4f0;
  border-radius: 10px;
  padding: 18px 16px;
  backdrop-filter: blur(6px);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.vl-feature:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(26, 26, 46, 0.07);
  border-color: #ddd6fe;
}

.vl-feature h3 {
  margin: 0 0 6px;
  font-size: 14px;
  font-weight: 700;
  color: #1a1a2e;
}

.vl-feature p {
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
  color: #6b6b88;
}

/* Alert banner */
.vl-banner {
  background: #fff;
  border: 1px solid #ddd6fe;
  border-left: 4px solid #a66cff;
  border-radius: 8px;
  padding: 14px 16px;
  margin-bottom: 24px;
  font-size: 14px;
  color: #4a4a68;
}

.vl-banner a {
  color: #7c3aed;
  font-weight: 700;
  text-decoration: none;
}

.vl-banner a:hover {
  text-decoration: underline;
}

/* Footer strip */
.vl-footer {
  margin-top: 36px;
  padding-top: 20px;
  border-top: 1px solid #e8e4f0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px;
  font-size: 13px;
  color: #8888a0;
}

.vl-footer a {
  color: #7c3aed;
  text-decoration: none;
  font-weight: 600;
}

/* Claim page */
.vl-claim-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 16px;
  background: #f4f2f8;
  font-family: "Nunito", "Segoe UI", system-ui, sans-serif;
}

.vl-claim-card {
  width: 100%;
  max-width: 440px;
  background: #fff;
  border: 1px solid #e8e4f0;
  border-radius: 10px;
  padding: 32px 28px;
  box-shadow: 0 8px 30px rgba(26, 26, 46, 0.06);
}

.vl-claim-card .vl-logo {
  text-align: center;
  margin-bottom: 20px;
}

.vl-claim-card .vl-logo img {
  height: 42px;
  margin: 0 auto;
}

.vl-claim-card h1 {
  margin: 0 0 6px;
  font-size: 22px;
  font-weight: 800;
  text-align: center;
}

.vl-claim-sub {
  margin: 0 0 20px;
  text-align: center;
  font-size: 14px;
  color: #6b6b88;
  line-height: 1.5;
}

.vl-venue-tag {
  background: #f9f7fc;
  border: 1px solid #e8e4f0;
  border-radius: 8px;
  padding: 12px 14px;
  text-align: center;
  margin-bottom: 18px;
}

.vl-venue-tag strong {
  display: block;
  font-size: 16px;
}

.vl-venue-tag span {
  font-size: 13px;
  color: #6b6b88;
}

.vl-claim-form label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #4a4a68;
}

.vl-claim-form input {
  width: 100%;
  margin-bottom: 14px;
  padding: 11px 12px;
  border: 1px solid #ddd8e8;
  border-radius: 7px;
  font-size: 14px;
  color: #1a1a2e;
}

.vl-claim-form input:focus {
  outline: none;
  border-color: #a66cff;
  box-shadow: 0 0 0 3px rgba(166, 108, 255, 0.15);
}

.vl-claim-form input:read-only {
  background: #f9f7fc;
}

.vl-claim-form .vl-btn {
  width: 100%;
  margin-top: 4px;
  border: none;
}

.vl-alert {
  padding: 12px 14px;
  border-radius: 8px;
  font-size: 14px;
  margin-bottom: 16px;
}

.vl-alert--warn {
  background: #fffbeb;
  border: 1px solid #fde68a;
  color: #92400e;
}

.vl-alert--ok {
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
  color: #065f46;
}

@media (max-width: 860px) {
  .vl-hero {
    grid-template-columns: 1fr;
  }

  .vl-features {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .vl-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .vl-hero-actions .vl-btn {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .vl-bg-orb,
  .vl-fade-in {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }

  .vl-feature:hover,
  .vl-btn:hover {
    transform: none;
  }
}
