@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300..800&display=swap');

.footer {
    font-family: 'Outfit', sans-serif;
    position: relative;
    margin-top: 200px;
    width: 100%;
    background: #3586ff;
    color: white;
    padding: 80px 50px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
}

.footer-logo {
    max-width: 220px;
    height: auto;
    margin: -50px 0 25px 0;
    position: relative;
    z-index: 1001;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
    transition: transform 0.3s ease;
}

.footer-logo:hover {
    transform: scale(1.05);
}

.footer-title {
    font-size: 24px;
    margin-bottom: 20px;
    color: white;
}

footer .menu {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 10px 0;
    flex-wrap: wrap;
    padding: 0;
    list-style: none;
}

footer .menu li {
    margin: 0 10px;
}

footer .menu li a {
    color: white;
    font-size: 20px;
    transition: 0.5s;
    text-decoration: none;
}

footer .menu li a:hover {
    opacity: 1;
}

footer p {
    font-size: 15px;
    margin-top: 15px;
    margin-bottom: 10px;
}

footer .waves {
    position: absolute;
    top: -100px;
    left: 0;
    width: 100%;
    height: 100px;
    z-index: 1000;
}

footer .wave {
    position: absolute;
    width: 100%;
    height: 100px;
    background: url(../images/wave/wave.png);
    background-size: 1000px 100px;
    bottom: 0;
}

footer .wave#wave1 {
    z-index: 1000;
    opacity: 1;
    animation: animateWave 4s linear infinite;
}

footer .wave#wave2 {
    z-index: 999;
    opacity: 1;
    animation: animateWave-02 5s linear infinite;
}

footer .wave#wave3 {
    z-index: 1000;
    opacity: 0.3;
    bottom: 15px;
    animation: animateWave-02 3s linear infinite;
}

footer .wave#wave4 {
    z-index: 1000;
    opacity: 1;
    animation: animateWave-02 5s linear infinite;
}

@keyframes animateWave {
    0% { background-position: 1000px 0; }
    100% { background-position: 0 0; }
}

@keyframes animateWave-02 {
    0% { background-position: 0 0; }
    100% { background-position: 1000px 0; }
}

@media (max-width: 768px) {
    .footer {
        padding: 60px 20px 15px;
        margin-top: 100px;
    }

    .footer-logo {
        max-width: 160px;
        margin: -35px 0 20px 0;
    }

    .footer-title {
        font-size: 1.3rem;
        margin-bottom: 15px;
    }

    footer .menu {
        flex-direction: column;
        gap: 12px;
        margin: 10px 0;
    }

    footer .menu li {
        margin: 0;
    }

    footer .menu li a {
        font-size: 1rem;
        padding: 8px 0;
        display: block;
    }

    footer p {
        font-size: 0.8rem;
        margin: 20px 15px 0;
        line-height: 1.4;
    }
}