/* Custom CSS Styles for Yoga en Silla 28D - Hostinger Build */

/* Custom elegant scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

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

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

::-webkit-scrollbar-thumb:hover {
  background: #334155;
}

/* Base Body Styles */
body {
  background-color: #020617;
}

/* FAQ Accordion Transitions */
.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease-out;
  opacity: 0;
}

.faq-item.active .faq-content {
  max-height: 200px; /* high enough for FAQ answers */
  opacity: 1;
}

/* Custom background animations */
@keyframes pulse-subtle {
  0%, 100% {
    opacity: 0.3;
  }
  50% {
    opacity: 0.45;
  }
}

.blur-gradient {
  animation: pulse-subtle 8s infinite ease-in-out;
}
