/* Custom styles for Tailwind-based template */

/* Animations */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

.animate-float {
    animation: float 6s ease-in-out infinite;
}

/* Hero Section */
#hero {
    background: linear-gradient(135deg, #0d1117 0%, #1a1f25 100%);
}

/* Features Section */
#features .bg-gray-700 {
    transition: all 0.3s ease;
}

#features .bg-gray-700:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(242, 169, 0, 0.3);
}

/* Stats Section */
#stats {
    background: linear-gradient(135deg, #1a1f25 0%, #0d1117 100%);
}

/* How It Works */
#how-it-works .w-20 {
    transition: transform 0.3s ease;
}

#how-it-works .w-20:hover {
    transform: scale(1.1);
}

/* CTA Section */
#cta {
    background: linear-gradient(135deg, #f2a900 0%, #ff8c00 100%);
}

#cta a:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

/* Footer */
footer a:hover {
    color: #f2a900 !important;
}

/* Mobile Menu */
#mobile-menu {
    background-color: #0d1117;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    #hero h1 {
        font-size: 2.5rem;
    }
    
    #hero .flex-col {
        text-align: center;
    }
    
    .step-arrow {
        transform: rotate(90deg);
        margin: 20px 0;
    }
}