.site-footer {
    border-top: 2px solid #00AAAA;
    height: 608px;
    width: 100%;
    background: url("../images/footerbackground.png") no-repeat center center;
    background-size: cover;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 40px 80px;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: white;
    position: relative;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-nav ul li {
    margin-bottom: 20px;
}

.footer-nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.25rem;
    transition: color 0.3s ease;
}

.footer-nav ul li a:hover {
    color: #00AAAA;
}

.footer-social a {
    display: inline-block;
    width: 96px;   /* doppelt so groß wie vorher */
    height: 96px;
    transition: filter 0.3s ease;
}

.footer-social a img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;  /* verhindert unnötige Leerzeichen */
}

.footer-social a:hover img {
    filter: brightness(1.5) drop-shadow(0 0 5px #00AAAA);
}

.footer-bottom {
    text-align: center;
    font-size: 0.9rem;
}

.footer-bottom p {
    margin: 0 0 8px 0;
    font-weight: 500;
}

.footer-legal a {
    color: white;
    text-decoration: none;
    margin: 0 8px;
    font-weight: 600;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: #00AAAA;
}

.footer-nav {
    margin-left: 450px;
    margin-top: 100px;
}

.footer-social {
    margin-right: 500px;
    margin-top: 100px;
}

.footer-nav ul li a.active {
    color: #00AAAA; /* deine Akzentfarbe */
    font-weight: 700;
}

