/* ================================================================= */
/*                          Allgemeine Stile                         */
/* ================================================================= */
@import url('../css/variables.css');

/* ==================== Footer Layout ==================== */
.site-footer {
    background-color: #fff;
    color: #111;
    font-family: sans-serif;
    padding: 4rem 2rem;
    border-top: 1px solid #eee;
}

.footer-container {
    max-width: 100rem;
    margin: 0 auto;
}

/* ==================== Footer Top ==================== */
.footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo {
    width: 160px;
}

/* ==================== Footer Columns ==================== */
.footer-columns {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
}

.footer-column h4 {
    font-size: 1rem;
    margin-bottom: 1rem;
    font-weight: bold;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 0.5rem;
}

.footer-column ul li a {
    text-decoration: none;
    color: #111;
    opacity: 0.8;
    transition: opacity 0.2s;
}

.footer-column ul li a:hover {
    opacity: 1;
}

/* ==================== Footer Socials ==================== */
.footer-socials {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.footer-socials a {
    color: #111;
    font-size: 1.5rem;
    transition: opacity 0.2s;
}

.footer-socials a:hover {
    opacity: 0.6;
}

/* ==================== Footer Bottom ==================== */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    border-top: 1px solid #eee;
    padding-top: 1.5rem;
    font-size: 0.9rem;
    color: #555;
}

.footer-bottom .footer-links {
    display: flex;
    gap: 1.5rem;
}

.footer-bottom .footer-links a {
    color: #555;
    text-decoration: none;
    font-size: 0.9rem;
}

.footer-bottom .footer-links a:hover {
    text-decoration: underline;
}

/* ================================================================= */
/*                         Responsive Anpassungen                    */
/* ================================================================= */
@media (max-width: 768px) {
    .footer-bottom {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        text-align: center;
    }
}
