@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
}

/* Custom animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

/* Custom styles for focus states */
button:focus, a:focus {
    outline: 2px solid #0ea5e9;
    outline-offset: 2px;
}

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