/* Band-Fans — Custom styles (supplements Tailwind CDN) */

/* Nav links */
.nav-link {
  display: inline-block;
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  color: #9ca3af;
  border-radius: 0.5rem;
  transition: color 0.15s, background-color 0.15s;
  text-decoration: none;
}
.nav-link:hover {
  color: #fff;
  background-color: rgba(31, 41, 55, 0.5);
}
.nav-active {
  color: #fbbf24;
}
.mobile-nav-link {
  display: block;
  padding: 0.625rem 0.75rem;
  font-size: 0.875rem;
  color: #d1d5db;
  border-radius: 0.5rem;
  transition: color 0.15s, background-color 0.15s;
  text-decoration: none;
}
.mobile-nav-link:hover {
  color: #fff;
  background-color: rgba(31, 41, 55, 0.5);
}

/* Section headings */
.section-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  color: #fbbf24;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
}
.section-title {
  font-size: 1.875rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
}
@media (min-width: 640px) {
  .section-title { font-size: 2.25rem; }
}
.section-sub {
  font-size: 1.125rem;
  color: #9ca3af;
  margin-top: 1rem;
  max-width: 42rem;
}

/* Feature cards */
.feature-card {
  background-color: #111827;
  border: 1px solid #1f2937;
  border-radius: 1rem;
  padding: 1.5rem;
  transition: border-color 0.3s, background-color 0.3s;
}
.feature-card:hover {
  border-color: rgba(245, 158, 11, 0.3);
  background-color: rgba(17, 24, 39, 0.8);
}

/* Step cards */
.step-card {
  position: relative;
  background-color: rgba(17, 24, 39, 0.5);
  border: 1px solid #1f2937;
  border-radius: 1rem;
  padding: 1.5rem;
}

/* Primary button */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background-color: #f59e0b;
  color: #000;
  font-weight: 700;
  border-radius: 0.75rem;
  text-decoration: none;
  transition: background-color 0.15s;
  border: none;
  cursor: pointer;
  font-size: 0.875rem;
}
.btn-primary:hover {
  background-color: #d97706;
  color: #000;
}

/* Secondary button */
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background-color: #1f2937;
  color: #fff;
  font-weight: 600;
  border-radius: 0.75rem;
  border: 1px solid #374151;
  text-decoration: none;
  transition: background-color 0.15s;
  cursor: pointer;
  font-size: 0.875rem;
}
.btn-secondary:hover {
  background-color: #374151;
  color: #fff;
}

/* Form inputs */
.form-input {
  width: 100%;
  background-color: #111827;
  border: 1px solid #374151;
  border-radius: 0.75rem;
  padding: 0.75rem 1rem;
  color: #fff;
  font-size: 0.875rem;
  outline: none;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.form-input::placeholder {
  color: #6b7280;
}
.form-input:focus {
  border-color: rgba(245, 158, 11, 0.6);
  box-shadow: 0 0 0 1px rgba(245, 158, 11, 0.3);
}
.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: #d1d5db;
  margin-bottom: 0.375rem;
}

/* Amber gradient text */
.gradient-text {
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 50%, #d97706 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Glow effect for hero */
.amber-glow {
  box-shadow: 0 0 60px rgba(245, 158, 11, 0.15);
}

/* Smooth scroll target offset for fixed nav */
[id] {
  scroll-margin-top: 80px;
}

/* Fade-in animation */
.fade-in {
  opacity: 1;
}
