﻿.footer-section {
    padding-top: 200px;
}

.footer-section p.footer-text {
    font-family: 'Lato', sans-serif;
    letter-spacing: 1px;
    font-size: 18px;
    color: #fff;
}

.footer-section .footer-logo {
    width: 50px;
    fill: white;
    padding-right: 15px;
    display: inline-block;
    vertical-align: middle;
}

.footer-section .footer-inner-header {
    height: 65vh;
    width: 100%;
    margin: 0;
    padding: 0;
}

.footer-section .footer-flex {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.footer-waves {
    position: relative;
    width: 100%;
    height: 15vh;
    margin-top: 200px;
    margin-bottom: -10px;
    min-height: 100px;
    max-height: 150px;
}

.footer-section .footer-content {
    position: relative;
    height: 20vh;
    text-align: center;
    background-color: #101828;
    flex-direction: column;
    gap: 10px;
}

/* Animation */
.footer-parallax > use {
    animation: footer-move-forever 25s cubic-bezier(.55,.5,.45,.5) infinite;
}

    .footer-parallax > use:nth-child(1) {
        animation-delay: -2s;
        animation-duration: 7s;
    }

    .footer-parallax > use:nth-child(2) {
        animation-delay: -3s;
        animation-duration: 10s;
    }

    .footer-parallax > use:nth-child(3) {
        animation-delay: -4s;
        animation-duration: 13s;
    }

    .footer-parallax > use:nth-child(4) {
        animation-delay: -5s;
        animation-duration: 20s;
    }

@keyframes footer-move-forever {
    0% {
        transform: translate3d(-90px, 0, 0);
    }

    100% {
        transform: translate3d(85px, 0, 0);
    }
}

.footer-section .footer-links {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

.footer-section .footer-link {
    color: #fff;
    text-decoration: none;
    font-family: 'Lato', sans-serif;
    font-size: 14px;
    letter-spacing: 0.5px;
    padding: 5px 10px;
    transition: opacity 0.3s ease;
}

.footer-section .footer-link:hover {
    opacity: 0.8;
    text-decoration: underline;
}

/* Shrinking for mobile */
@media (max-width: 768px) {
    .footer-waves {
        height: 40px;
        min-height: 40px;
    }

    .footer-section .footer-content {
        height: 30vh;
    }

    .footer-section h1 {
        font-size: 24px;
    }
}
