/* Custom styles for AGITools.com */

/* Smooth transitions for hover states */
a {
    transition: all 0.2s ease-in-out;
}

/* Add a slight shadow effect on hover for cards */
.shadow-lg:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    transform: translateY(-2px);
    transition: all 0.2s ease-in-out;
}

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

.animate-fadeIn {
    animation: fadeIn 0.5s ease-out forwards;
}

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

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

::-webkit-scrollbar-thumb {
    background: #3b82f6;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #2563eb;
}

/* Improved button styling */
.btn-primary {
    background-color: #3b82f6;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
    font-weight: 500;
    transition: all 0.2s ease-in-out;
}

.btn-primary:hover {
    background-color: #2563eb;
    transform: translateY(-1px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

/* Responsive font sizing helpers */
.responsive-text-xl {
    font-size: clamp(1.25rem, 3vw, 1.5rem);
}

.responsive-text-2xl {
    font-size: clamp(1.5rem, 4vw, 1.875rem);
}

.responsive-text-3xl {
    font-size: clamp(1.875rem, 5vw, 2.25rem);
}

/* Logo animation on hover */
.logo:hover {
    filter: brightness(1.2);
} 