/* Footer Styles for Pythoneer Cloud */

/* Footer link hover effects */
footer a.text-light:hover {
    color: #ffffff !important;
    text-decoration: underline;
}

/* Social media icons hover */
footer .bi:hover {
    transform: translateY(-2px);
    transition: transform 0.2s ease;
}

/* Footer section headings */
footer h5 {
    color: #f8f9fa;
    letter-spacing: 0.5px;
}

/* Make footer responsive */
@media (max-width: 768px) {
    footer .row > div {
        margin-bottom: 2rem;
    }
    
    footer .border-top {
        padding-top: 1.5rem;
    }
}

/* Ensure footer stays at bottom */
html, body {
    min-height: 100vh;
}

body {
    display: flex;
    flex-direction: column;
}

main {
    flex: 1 0 auto;
}

footer {
    flex-shrink: 0;
}