/* =========================
   FOOTER & QUICK CONTACT
========================= */

/* ---------- FOOTER GESAMT ---------- */
footer {
    width: 100%;
    font-family: var(--font-sans);
    color: #ffffff;
    background-color: var(--headerbg);
}

/* ---------- QUICK CONTACT STRIPE ---------- */
footer .quick-contact {
    background-color: var(--headeractbg);
    color: #ffffff;
    padding: 25px 30px;
    display: flex;
    align-items: center;
    gap: 40px; /* Abstand Überschrift ↔ Button */
}

footer .quick-contact h3 {
    margin: 0;
    font-size: var(--font-xl);
    font-weight: var(--fw-bold);
    flex: 0 0 auto; /* Überschrift behält Größe */
}

footer .quick-contact .btn {
    padding: 12px 25px;
    font-size: var(--font-md);
    border-radius: 8px;
    text-decoration: none;
    flex: 0 0 auto; /* Button behält Größe */
}

/* Quick-Contact responsive */
@media (max-width: 768px) {
    footer .quick-contact {
        flex-direction: column;
        align-items: flex-start;
    }
    footer .quick-contact .btn {
        margin-top: 15px;
    }
}

/* CSS */
footer .footer-columns {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: flex-start;
    padding: 20px 30px; /* 25px links = bündig mit Quick Contact */
    background-color: var(--headerbg);
    width: 100%;          /* volle Breite */
    margin-left: 0;       /* kein extra offset */
}

footer .footer-columns .column:first-child {
    flex: 0 0 350px; /* Map fixe Breite */
}

footer .footer-columns .column:nth-child(2) {
    flex: 1 1 300px; /* Kontakt flexibel */
}

footer .footer-columns .column:nth-child(3) {
    flex: 1 1 300px; /* Navigation flexibel */
}

/* Footer Navigation & Kontakt Überschriften */
footer .footer-nav h4,
footer .footer-contact h4 {
    margin-bottom: 15px;
    font-size: var(--font-lg);
    font-weight: var(--fw-bold);
}

/* Footer Navigation Links */
footer .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

footer .footer-nav li {
    margin-bottom: 8px;
}

footer .footer-nav li a  {
    color: var(--color-text-dark); 
    text-decoration: none;
    position: relative;
}

footer .footer-nav li a::before {
    content: ">";
    margin-right: 6px;
    opacity: 0.7;
}

footer .footer-nav li a:hover {
    text-decoration: underline;
}

/* Footer Kontakt Block */
footer .footer-contact p {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 8px 0;
}

footer .footer-contact i {
    width: 18px;
    min-width: 18px;
    margin-top: 3px;
}

footer .footer-contact a {
    color: #ffffff;
    color: var(--color-text-dark); 
    text-decoration: none;
}

footer .footer-contact a:hover {
    text-decoration: underline;
}

/* ---------- COPYRIGHT ---------- */
footer .footer-copyright {
    background-color: var(--headerbg);
    text-align: center;
    padding: 15px 20px;
    font-size: var(--font-sm);
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
    footer .footer-columns {
        flex-direction: column;
        gap: 30px;
    }
}