/* Custom styles that extend Tailwind */

html {
    scroll-behavior: smooth;
}

/* Animation utility classes */
.animate-fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
}

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

/* Scroll reveal animations */
.reveal-on-scroll {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.reveal-on-scroll.hidden-reveal {
    opacity: 0;
    transform: translateY(30px);
}

/* FAQ styling */
.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq-content.active {
    max-height: 200px;
}

/* Smooth scrolling for anchor links */
@media (prefers-reduced-motion: no-preference) {
    :focus-visible {
        outline: 2px solid #d97706;
        outline-offset: 2px;
        border-radius: 4px;
    }
}
