@import url('https://fonts.googleapis.com/css2?family=Arvo:wght@700&family=Lexend:wght@100..900&display=swap');

footer {
    background: linear-gradient(180deg, #0a0044, #4c12f8, #37095d);
    background-size: 100% 200%;
    animation: gradientAnimation 16s ease-in-out infinite;
    color: #fff;
    padding: 3em 0 1em 0;
    margin-top: auto;
    width: calc(100% - 200px);
    margin-left: auto;
    margin-right: auto;
    border-radius: 5px 5px 0 0;
}

@keyframes gradientAnimation {
    0% {
        background-position: 0% 0%;
    }
    50% {
        background-position: 0% 100%;
    }
    100% {
        background-position: 0% 0%;
    }
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2em;
}

.footer-logo {
    width: 60px;
    height: auto;
    margin-right: 2em;
}

.categories {
    display: flex;
    gap: 4em;
    flex: 1;
}

.category {
    flex: 1;
}

.category h3 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 1em;
    font-family: "Lexend", sans-serif;
    font-weight: 600;
}

.category ul {
    list-style-type: none;
    padding: 0;
}

.category ul li {
    margin-bottom: 0.8em;
}

.category ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.category ul li a:hover {
    color: #fff;
    transform: translateX(5px);
}

.footer-bottom {
    margin-top: 3em;
    padding-top: 1.5em;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    margin: 0.5em 0;
}

/* Responsive Design */
@media screen and (max-width: 1200px) {
    .footer-container {
        padding: 0 1.5em;
    }
    
    .categories {
        gap: 2em;
    }
}

/* Responsive Footer */
@media screen and (max-width: 900px) {
    footer {
        width: 100%;
        border-radius: 0;
        padding: 2em 1em;
    }

    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 2em;
    }

    .footer-logo {
        margin: 0 0 1em 0;
    }

    .footer-logo img {
        max-width: 150px;
    }

    .categories {
        flex-direction: column;
        gap: 2em;
        width: 100%;
    }

    .category {
        margin: 0;
        width: 100%;
    }

    .category h3 {
        margin-bottom: 1em;
    }

    .category ul {
        display: flex;
        flex-direction: column;
        gap: 0.5em;
    }

    .category ul li {
        margin: 0;
    }

    .category ul li a {
        display: block;
        padding: 0.5em 0;
    }

    .category ul li a:hover {
        transform: translateX(10px);
    }

    .social-links {
        justify-content: center;
        margin-top: 1em;
    }

    .social-links a {
        font-size: 1.2em;
    }
}

@media screen and (max-width: 480px) {
    footer {
        padding: 1.5em 0.5em;
    }

    .footer-logo img {
        max-width: 120px;
    }

    .category h3 {
        font-size: 1.1em;
    }

    .category ul li a {
        font-size: 0.9em;
    }

    .social-links a {
        font-size: 1.1em;
    }
}
