/* Custom styles to complement Tailwind CSS */

/* Smooth scroll behavior */
html {
    scroll-behavior: smooth;
}

/* Custom animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.animate-fadeIn {
    animation: fadeIn 0.5s ease-in;
}

/* Custom hover effects */
.hover-scale {
    transition: transform 0.2s ease;
}

.hover-scale:hover {
    transform: scale(1.05);
}

/* Custom shadows */
.custom-shadow {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Mobile menu transition */
#mobile-menu {
    transition: all 0.3s ease;
}

/* FAQ accordion styles */
.faq-item {
    transition: all 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

/* Custom gradient backgrounds */
.hero-gradient {
    background: linear-gradient(135deg, #ffffff 0%, #87CEEB 100%);
}

/* Responsive image handling */
.img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Custom form styles */
input:focus, textarea:focus, select:focus {
    outline: none;
    border-color: #87CEEB;
}

/* Custom button styles */
.custom-button {
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.custom-button:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: -100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: 0.5s;
}

.custom-button:hover:after {
    left: 100%;
} 