.footer {
    background-color: transparent;
    color: var(--white);
    padding: 25px 0;
    margin-top: auto;
}

.footer-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-logo {
    color: #ff00cc;
    font-size: 20px;
    white-space: nowrap;
    font-weight: 900;
}

.footer-center {
    display: flex;
    gap: 30px;
}

.footer-center a {
    color: var(--white);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-center a:hover {
    color: #ff00cc;
}

.footer-socials {
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer-socials a {
    color: var(--white);
    font-size: 18px;
    transition: all 0.3s ease;
}

.footer-socials a:hover {
    color: #ff00cc;
    transform: translateY(-2px);
}

@media (max-width: 768px) {

    .footer-container {
        flex-wrap: wrap;
        justify-content: center;
        text-align: center;
        gap: 20px;
    }

    .footer-logo, .footer-center, .footer-socials {
        flex-basis: 100%;
    }

    .footer-center {
        justify-content: center;
        flex-wrap: wrap;
        gap: 15px;
    }

    .footer-socials {
        justify-content: center;
    }
}
