/**
 * Landing Page Footer CSS
 * Minimal styles for footer enhancements beyond Tailwind
 */

/* Ensure footer stays at bottom and has proper spacing */
#footer {
    margin-top: auto;
}

/* Smooth hover transitions for footer links */
#footer a {
    transition: color 0.3s ease, transform 0.2s ease;
}

#footer a:hover {
    transform: translateY(-1px);
}

/* Subtle shadow for footer separation */
#footer {
    box-shadow: 0 -1px 3px 0 rgba(0, 0, 0, 0.02);
} 