/* Wave Animation Styles */

.wave-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    margin-bottom: -1px;
}

.wave-container.top {
    transform: rotate(180deg);
}

.waves {
    position: relative;
    width: 100%;
    height: 6vh;
    min-height: 40px;
    max-height: 60px;
}

/* Wave Animation */
.wave-container .parallax > use:nth-child(1) {
    animation: wave-move-large 20s cubic-bezier(.55,.5,.45,.5) infinite;
    animation-delay: -2s;
    fill: #E09F5D; /* Orange Beige - Back (slowest) */
}

.wave-container .parallax > use:nth-child(2) {
    animation: wave-move-large 14s cubic-bezier(.55,.5,.45,.5) infinite;
    animation-delay: -3s;
    fill: #F8D9B5; /* Light Beige - Middle */
}

.wave-container .parallax > use:nth-child(3) {
    animation: wave-move-large 8s cubic-bezier(.55,.5,.45,.5) infinite;
    animation-delay: -4s;
    fill: #FFFFFF; /* White - Front (fastest) */
}

@keyframes wave-move-large {
    0% {
        transform: translate3d(-90px, 0, 0);
    }
    100% {
        transform: translate3d(85px, 0, 0);
    }
}
