/*  FOOTER  */

/* ================================
   Footer Grundlayout
================================ */

.bergfuchs-b2b-footer {
    background-color: #5f5f5f;
    color: #ffffff;
    padding: 3rem 1.5rem;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.bergfuchs-b2b-footer a {
    color: #ffffff;
    text-decoration: none;
}

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

/* Sichtbarer Fokus (WCAG wichtig!) */
.bergfuchs-b2b-footer a:focus-visible {
    outline: 3px solid #ffffff;
    outline-offset: 3px;
    border-radius: 6px;
}


/* ================================
   Überschrift
================================ */

.bergfuchs-b2b-footer-header {
    text-align: center;
    margin-bottom: 2rem;
}

.bergfuchs-b2b-footer-header h2 {
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0;
    color:#d9d9d9;
}


/* ================================
   Kontakt Buttons
================================ */

.footer-contact {
    margin-bottom: 2.5rem;
}

.footer-contact-list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    padding: 0;
    margin: 0;
}

.footer-contact-list li {
    background: #e6e6e6;
    border-radius: 999px;
    padding: 1rem 2rem;
    min-width: 260px;
    text-align: center;
}

.footer-contact-list a,
.footer-contact-list span {
    color: #333333;
    font-weight: bold;
    font-size: 1.3rem;
    display: inline-block;
}


/* ================================
   Navigation
================================ */

.footer-menu {
    text-align: center;
    margin-bottom: 2rem;
}

.footer-menu ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    padding: 0;
    margin: 0;
}

.footer-menu a {
    font-size: 1.2rem;
    font-weight: 500;
}


/* ================================
   Trennlinie
================================ */

.footer-menu::after {
    content: "";
    display: block;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.4);
    margin: 2.5rem auto;
    max-width: 1100px;
}


/* ================================
   Branding Bereich
================================ */

.footer-branding {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-branding img {
    max-width: 90px;
    height: auto;
}

.footer-branding p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #d9d9d9;
}


/* ================================
   Responsive
================================ */

@media (max-width: 768px) {

    .footer-contact-list {
        flex-direction: column;
        align-items: center;
    }

    .footer-menu ul {
        flex-direction: column;
        gap: 1rem;
    }

    .footer-branding {
        flex-direction: column;
        text-align: center;
    }
}

/* FOOTER END*/
