/* Paya Music — custom styles */

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', system-ui, sans-serif;
}

.font-display {
  font-family: 'Outfit', system-ui, sans-serif;
}

/* Hero background */
.hero-bg {
  background:
    radial-gradient(ellipse 80% 60% at 50% -20%, rgba(124, 58, 237, 0.25), transparent),
    radial-gradient(ellipse 60% 50% at 80% 50%, rgba(212, 168, 83, 0.12), transparent),
    radial-gradient(ellipse 50% 40% at 10% 80%, rgba(124, 58, 237, 0.15), transparent),
    #0a0a0f;
}

.hero-grid {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black 20%, transparent 75%);
}

/* Gradient text */
.text-gradient {
  background: linear-gradient(135deg, #d4a853 0%, #f0d78a 40%, #7c3aed 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Card glow on hover */
.card-glow {
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.card-glow:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -12px rgba(124, 58, 237, 0.25);
  border-color: rgba(212, 168, 83, 0.4);
}

/* Section divider */
.section-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212, 168, 83, 0.3), transparent);
}

/* FAQ accordion */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-icon {
  transition: transform 0.3s ease;
}

/* Nav active link */
.nav-link.active {
  color: #d4a853;
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: #d4a853;
  border-radius: 1px;
}

/* Navbar scrolled */
.navbar-scrolled {
  background: rgba(10, 10, 15, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

/* Pulse animation for hero badge */
@keyframes pulse-soft {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}

.animate-pulse-soft {
  animation: pulse-soft 2.5s ease-in-out infinite;
}

/* Process step line */
.process-line::before {
  content: '';
  position: absolute;
  top: 2rem;
  left: calc(50% + 1.5rem);
  width: calc(100% - 3rem);
  height: 2px;
  background: linear-gradient(90deg, #7c3aed, #d4a853);
  opacity: 0.3;
}

@media (max-width: 768px) {
  .process-line::before {
    display: none;
  }
}

/* Form focus ring */
input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: #d4a853;
  box-shadow: 0 0 0 3px rgba(212, 168, 83, 0.2);
}

/* Success message */
.form-success {
  animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Skip link */
.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  z-index: 100;
  padding: 0.5rem 1rem;
  background: #d4a853;
  color: #0a0a0f;
  border-radius: 0.5rem;
  font-weight: 600;
  transition: top 0.2s;
}

.skip-link:focus {
  top: 1rem;
}

/* Portfolio overlay */
.portfolio-overlay {
  background: linear-gradient(to top, rgba(10, 10, 15, 0.95) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.portfolio-card:hover .portfolio-overlay {
  opacity: 1;
}

/* Stat counter accent */
.stat-number {
  font-variant-numeric: tabular-nums;
}
