/* Kidzee MCECHS Theme - Main Styles */
/* Additional custom styles beyond Tailwind */

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Prevent horizontal scroll */
body {
    overflow-x: hidden;
}

/* Mobile menu transitions */
#mobile-menu {
    transition: all 0.3s ease-in-out;
}

/* FAQ transitions */
.faq-answer {
    transition: all 0.3s ease-in-out;
}

.faq-icon {
    transition: transform 0.3s ease-in-out;
}

/* Contact form styles */
#contact-form input:focus,
#contact-form textarea:focus,
#contact-form select:focus {
    outline: none;
}

/* Loading spinner */
@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.animate-spin {
    animation: spin 1s linear infinite;
}

/* Custom animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.5s ease-in-out;
}

/* Print styles */
@media print {
    .no-print {
        display: none !important;
    }
}

