/* Footer Styles */
.site-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 10;
    background: transparent !important;
    padding: 1rem 0;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.footer-social-bar {
    background: rgba(2, 12, 27, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 2rem;
    padding: 0.75rem 1.5rem;
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin: 0 auto;
    max-width: fit-content;
    border: 1px solid rgba(0, 208, 255, 0.1);
}

.footer-social-bar a {
    color: var(--color-text-secondary);
    font-size: 1.25rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.footer-social-bar a:hover {
    color: var(--color-primary);
    transform: scale(1.1);
    text-shadow: 0 0 10px rgba(0, 208, 255, 0.5);
}

/* Responsive Styles */
@media (max-width: 768px) {
    .site-footer {
        height: 64px;
        padding: 0.5rem 0;
    }

    .footer-social-bar {
        padding: 0.5rem 1rem;
        gap: 1rem;
    }

    .footer-social-bar a {
        font-size: 1rem;
    }
}