footer {
    background: var(--shared-background);
    max-height: 130px;
    text-align: center;
    position: relative;
    overflow: hidden;
    padding: 0;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.social-links {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
    padding: 15px 10px;
}

.social-links a {
    color: #fff;
    font-size: 1.5em;
    text-decoration: none;
    padding: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
}

.social-links a:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

.social-links a svg {
    width: 24px;
    height: 24px;
    fill: #fff;
}

.footer-text {
    color: white;
    font-size: 0.9em;
    opacity: 1;
    padding-bottom: 10px;
}

/* Animations for Footer */
@keyframes slideIn {
    from {
        transform: translateX(-100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes scaleUp {
    from {
        transform: scale(0);
    }
    to {
        transform: scale(1);
    }
}

.slide-in {
    animation: slideIn 1s ease forwards;
}

.scale-up {
    animation: scaleUp 0.5s ease forwards;
}

/* Responsive */
@media (max-width: 600px) {
    .social-links a {
        font-size: 1.2em;
        padding: 10px;
        width: 35px;
        height: 35px;
    }

    .social-links a svg {
        width: 20px;
        height: 20px;
    }

    .footer-text {
        font-size: 0.5em;
    }
}