/* ==========================================================================
   Custom Styles for NameMerge Tool Website
   Extends Tailwind CSS with custom micro-interactions and transitions
   ========================================================================== */

/* Smooth fade-in animation for results */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.25s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Subtle gradient text utility */
.gradient-text-indigo {
    background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 50%, #ec4899 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Focus styles for clean accessibility */
input:focus, button:focus, select:focus {
    outline: none;
}

/* Custom modern scrollbar for results list if scrollable */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}
::-webkit-scrollbar-track {
    background: #f1f5f9;
}
::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 9999px;
}
::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

/* Accordion transition for FAQ */
.faq-content {
    transition: max-height 0.3s ease-out, opacity 0.3s ease-out;
}
