.footer-container {
    background-color: #ffffff57;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    border: 1px solid var(--primary-color);
    text-align: center;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
    box-shadow: 0 0 5px #656565;
}

.footer-content {
    padding: 20px;
    font-size: 1.2em;
    color: var(--primary-color);
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: center;
    gap: 30px;
    flex:1;
}

.footer-explore {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    
}
.footer-content-title{
    font-weight: bold;
    margin-bottom: 10px;
}
.footer-bottom{
    padding: 10px;
    font-size: 0.8em;
    color: var(--text-color);
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

.footer-logo{
    height: auto;
    padding: 2%;
}

.footer-link{
    color: var(--primary-color);
    font-size: 0.9em;
    text-decoration: none;
}

@media (max-width: 600px) {
   .footer-logo{
      display: none;
   }
}

/* Marquee, Linkspalten und Copyright passen nebeneinander nicht mehr in
   schmale Viewports (zusammen ~494px) und schoben die Seite horizontal auf.
   Ab hier stapeln sie stattdessen. */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
    }

    .footer-content {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
        width: 100%;
    }
}
