/* Always One Ministries - Band Submissions
   Palette: stage-black backdrop, warm marquee-bulb amber, deep crimson accent.
   Type: condensed display face (poster/marquee feel) + clean body sans. */

:root {
  --stage-black: #15121a;
  --stage-black-2: #1e1a24;
  --paper: #f2ede4;
  --amber: #f2a83c;
  --amber-dim: #c98a2e;
  --crimson: #b3283e;
  --line: #38323f;
  --ok: #6fae7c;
}

* { box-sizing: border-box; }

@font-face {
  font-family: 'system-condensed';
  src: local('Arial Narrow'), local('Helvetica Neue Condensed Bold');
}

html, body {
  margin: 0;
  padding: 0;
  background: var(--stage-black);
  color: var(--paper);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.5;
}

.page {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 20px 80px;
}

.marquee {
  text-align: center;
  padding: 56px 0 28px;
  border-bottom: 3px solid var(--amber);
  margin-bottom: 36px;
}

.marquee-logo {
  display: block;
  height: 100px;
  width: auto;
  margin: 0 auto 18px;
}

.marquee .eyebrow {
  display: inline-block;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-size: 12px;
  color: var(--amber);
  border: 1px solid var(--amber-dim);
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 18px;
}

.marquee h1 {
  font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 700;
  letter-spacing: -0.01em;
  font-size: 56px;
  line-height: 1.05;
  margin: 0 0 14px;
  color: var(--paper);
}

.marquee p {
  color: #cfc6d6;
  max-width: 480px;
  margin: 0 auto;
  font-size: 15px;
}

.ticket {
  background: var(--stage-black-2);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 32px;
  position: relative;
}

.ticket::before,
.ticket::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 22px;
  height: 22px;
  background: var(--stage-black);
  border-radius: 50%;
  transform: translateY(-50%);
}
.ticket::before { left: -11px; }
.ticket::after { right: -11px; }

fieldset {
  border: none;
  padding: 0;
  margin: 0 0 32px;
}

legend {
  font-family: Impact, 'Arial Narrow Bold', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 13px;
  color: var(--amber);
  padding: 0 0 12px;
  border-bottom: 1px dashed var(--line);
  width: 100%;
  margin-bottom: 18px;
}

label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 6px;
  color: #d8d0e0;
}

.hint {
  font-weight: 400;
  color: #8b8494;
  font-size: 12px;
  display: block;
  margin-top: 2px;
}

.field {
  margin-bottom: 20px;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="url"],
select,
textarea {
  width: 100%;
  background: #0f0d13;
  border: 1px solid var(--line);
  color: var(--paper);
  padding: 11px 12px;
  border-radius: 6px;
  font-size: 15px;
  font-family: inherit;
}

input:focus, select:focus, textarea:focus {
  outline: 2px solid var(--amber);
  outline-offset: 1px;
  border-color: var(--amber);
}

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

.radio-row {
  display: flex;
  gap: 20px;
}

.radio-row label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  margin-bottom: 0;
}

.radio-row input { accent-color: var(--amber); width: 16px; height: 16px; }

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

@media (max-width: 560px) {
  .two-col { grid-template-columns: 1fr; }
  .marquee h1 { font-size: 38px; }
  .marquee-logo { height: 72px; }
}

.booking-agent-fields {
  border-left: 2px solid var(--amber-dim);
  padding-left: 16px;
  margin-top: 4px;
}

.conditional-field {
  display: none;
}

.email-check-note {
  font-size: 12px;
  color: #8b8494;
  margin-top: 4px;
}

.duplicate-prompt {
  background: rgba(242, 168, 60, 0.12);
  border: 1px solid var(--amber-dim);
  border-radius: 8px;
  padding: 14px 16px;
  margin-top: 10px;
  font-size: 13px;
  color: #f0e6d2;
}

.duplicate-prompt p {
  margin: 0 0 10px;
}

.duplicate-prompt .duplicate-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.duplicate-prompt button {
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 6px;
  cursor: pointer;
  border: 1px solid var(--amber-dim);
}

.duplicate-prompt .btn-primary {
  background: var(--amber);
  color: var(--stage-black);
  border-color: var(--amber);
}

.duplicate-prompt .btn-primary:hover { background: #ffc266; }

.duplicate-prompt .btn-secondary {
  background: transparent;
  color: var(--paper);
}

.duplicate-prompt .btn-secondary:hover { border-color: var(--paper); }

.duplicate-prompt.success {
  border-color: var(--ok);
  background: rgba(111, 174, 124, 0.12);
  color: #d4f0d9;
}

.duplicate-prompt.error {
  border-color: var(--crimson);
  background: rgba(179, 40, 62, 0.12);
  color: #ffb3bf;
}

.email-confirm-row {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.email-confirm-row input { flex: 1; }

.btn-confirm {
  background: var(--amber);
  color: var(--stage-black);
  border: none;
  padding: 0 16px;
  height: 44px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  white-space: nowrap;
  font-family: inherit;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.btn-confirm:hover { background: #ffc266; }

.email-confirmed-note {
  color: var(--ok);
  font-size: 13px;
  margin-top: 8px;
}

.link-btn {
  background: none;
  border: none;
  color: var(--amber);
  text-decoration: underline;
  cursor: pointer;
  padding: 0;
  font: inherit;
}

.gated-section {
  transition: opacity 0.2s ease;
}

.gated-section.locked {
  opacity: 0.4;
  pointer-events: none;
}

.phone-group {
  display: flex;
  gap: 8px;
}

.phone-group select {
  flex: 0 0 160px;
}

.phone-group input {
  flex: 1;
  min-width: 0;
}

@media (max-width: 560px) {
  .phone-group { flex-direction: column; }
  .phone-group select { flex: 1; }
  .email-confirm-row { flex-direction: column; }
  .btn-confirm { width: 100%; }
}

.app-version {
  text-align: center;
  color: #55506b;
  font-size: 11px;
  margin-top: 24px;
  opacity: 0.7;
}

.error-banner {
  background: rgba(179, 40, 62, 0.15);
  border: 1px solid var(--crimson);
  color: #ffb3bf;
  padding: 14px 16px;
  border-radius: 8px;
  margin-bottom: 24px;
  font-size: 14px;
}

.error-banner ul {
  margin: 6px 0 0;
  padding-left: 18px;
}

.field-error {
  color: #ff8a97;
  font-size: 12px;
  margin-top: 4px;
}

button.submit-btn {
  width: 100%;
  background: var(--amber);
  color: var(--stage-black);
  border: none;
  padding: 16px;
  font-family: Impact, 'Arial Narrow Bold', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 18px;
  border-radius: 6px;
  cursor: pointer;
  transition: transform 0.08s ease, background 0.15s ease;
}

button.submit-btn:hover { background: #ffc266; }
button.submit-btn:active { transform: scale(0.99); }

.result-card {
  text-align: center;
  padding: 60px 20px;
}

.result-card .icon {
  font-size: 40px;
  margin-bottom: 12px;
}

.result-card h1 {
  font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 700;
  letter-spacing: -0.01em;
  font-size: 30px;
  margin: 0 0 14px;
}

.result-card p { color: #cfc6d6; max-width: 440px; margin: 0 auto; }

footer.site-footer {
  text-align: center;
  color: #6b6473;
  font-size: 12px;
  margin-top: 40px;
}
