/* Custom styles to complement Tailwind */
html {
    scroll-behavior: smooth;
}

body {
    background-color: #ffffff;
    color: #1e293b;
}

/* Subtle line animation for hero */
@keyframes expandWidth {
    from { width: 0; }
    to { width: 4rem; }
}

.w-16.h-px.bg-teal-500 {
    animation: expandWidth 0.8s ease-out forwards;
}

/* Focus styles for accessibility */
input:focus, textarea:focus {
    outline: none;
}

/* Mobile menu transitions */
#mobile-menu {
    transition: max-height 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

#mobile-menu.hidden {
    max-height: 0;
    opacity: 0;
}

#mobile-menu:not(.hidden) {
    max-height: 300px;
    opacity: 1;
}
