/* Custom styles to complement Tailwind */
body {
    font-family: 'Open Sans', sans-serif;
}

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

/* Accordion animations */
.accordion-content {
    transition: all 0.3s ease-in-out;
}

.accordion-header svg {
    transition: transform 0.3s ease-in-out;
}

.accordion-item.active .accordion-header svg {
    transform: rotate(180deg);
}

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

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

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

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

/* Loading animation */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.fade-in {
    animation: fadeIn 0.6s ease-in-out;
}

/* Mobile menu animation */
#mobileMenu {
    transition: transform 0.3s ease-in-out;
}

#mobileMenu.hidden {
    transform: translateX(-100%);
}

#mobileMenu:not(.hidden) {
    transform: translateX(0);
}