/* ============================================
   Footer Styles — Sticky Footer
   ============================================ */

/* --- Sticky Footer Setup --- */
html {
    height: 100%;
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.main-wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
    margin-left: 0;
}

/* --- Footer --- */
.footer {
    background-color: var(--bg-primary);
    padding: 30px 0;
    border-top: 1px solid rgba(55, 65, 81, 0.3);
    margin-top: auto;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.social-links {
    display: flex;
    gap: 20px;
}

.social-link {
    color: var(--text-secondary);
    font-weight: 600;
    transition: all 0.3s ease;
}

.social-link:hover {
    color: var(--accent-purple);
    transform: translateY(-2px);
}

.copyright {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* --- Mobile --- */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .social-links {
        gap: 15px;
    }
}
