/* Custom styles for AOYANGBOR Landing Page */

/* Smooth scroll */
html {
  scroll-behavior: smooth;
}

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

.faq-answer.show {
  max-height: 2000px;
}

/* FAQ icon rotation */
.faq-item.active svg {
  transform: rotate(180deg);
}

/* Animate on scroll */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* QR code styling */
#qr-code canvas {
  border-radius: 8px;
}

/* Pulse animation for badge */
@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(249, 115, 22, 0.4); }
  50% { box-shadow: 0 0 0 8px rgba(249, 115, 22, 0); }
}

.animate-pulse-glow {
  animation: pulse-glow 2s infinite;
}

/* Gradient text */
.gradient-text {
  background: linear-gradient(135deg, #f97316, #fb923c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Selection color */
::selection {
  background: rgba(249, 115, 22, 0.3);
  color: #fff;
}

/* Scrollbar styling */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #111827;
}

::-webkit-scrollbar-thumb {
  background: #374151;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #4b5563;
}
