/* Custom styles to enhance Tailwind */

* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica', 'Arial', sans-serif;
    line-height: 1.6;
}

/* Enhanced readability for long-form content */
p, li {
    max-width: 70ch;
}

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

/* Link hover transitions */
a {
    transition: all 0.2s ease;
}

/* Focus states for accessibility */
a:focus, button:focus {
    outline: 2px solid #1f2937;
    outline-offset: 2px;
}

/* Enhanced button hover states */
.hover\:bg-gray-800:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.hover\:bg-gray-50:hover {
    transform: translateY(-1px);
}

/* Mobile menu animation */
#mobile-menu {
    transition: max-height 0.3s ease;
}