/* My AI Guy Pro — custom styles beyond Tailwind */

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #f0f4f8;
}
::-webkit-scrollbar-thumb {
    background: #486581;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #334e68;
}

/* HTMX loading indicator */
.htmx-request .htmx-indicator {
    display: block;
}
.htmx-indicator {
    display: none;
}

/* Fade-in animation for page content */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}
main > section {
    animation: fadeIn 0.4s ease-out;
}

/* Form input focus glow */
input:focus,
textarea:focus,
select:focus {
    box-shadow: 0 0 0 3px rgba(14, 149, 148, 0.1);
}

/* Pricing card hover effect */
.bg-white.rounded-2xl.shadow-lg:hover {
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}
