/*
|--------------------------------------------------------------------------
| stylesheet.css
| Zentrale Ergänzungen für www.zu-fuss-gehen-a.de
| Version 1.3 – 20.09.2026
|--------------------------------------------------------------------------
*/

/* Zentraler Footer – bewusst unabhängig von Bootstrap col-*
   Desktopbreite an die sichtbare Innenbreite des Bootstrap-Containers angepasst:
   1170 px Containerbreite minus 2 x 25 px Innenabstand = 1120 px.
   Abstand nach oben auf 6 px reduziert – passend zum Rhythmus der Inhaltsboxen. */
.site-footer {
    width: 100%;
    margin-top: 6px;
    padding: 0 15px 20px;
    box-sizing: border-box;
    color: #ffffff;
}

.site-footer .footer-box {
    width: 100%;
    max-width: 1120px;
    margin: 0 auto;
    padding: 20px 24px 14px;
    box-sizing: border-box;
    background-color: #0000CD;
    border: 2px solid #FFBB00;
    border-radius: 14px;
}

.site-footer .footer-top {
    display: flex;
    align-items: center;
    width: 100%;
}

.site-footer .footer-top > div {
    flex: 1 1 0;
    padding: 8px 10px;
    box-sizing: border-box;
    background: transparent;
    border: 0;
}

.site-footer .footer-contact {
    text-align: left;
}

.site-footer .footer-address {
    text-align: center;
}

.site-footer .footer-online {
    text-align: right;
}

.site-footer a {
    color: #FFBB00;
    font-weight: bold;
    text-decoration: none;
}

.site-footer a:hover,
.site-footer a:focus {
    color: green;
    text-decoration: underline;
}

.site-footer hr {
    margin: 16px 0 12px;
    border: 0;
    border-top: 1px solid #FFBB00;
}

.site-footer .footer-bottom {
    text-align: center;
}

.site-footer .footer-bottom p {
    margin: 5px 0;
}

/* Smartphone */
@media (max-width: 767px) {
    .site-footer {
        padding-left: 10px;
        padding-right: 10px;
    }

    .site-footer .footer-box {
        padding: 16px;
        border-radius: 10px;
    }

    .site-footer .footer-top {
        display: block;
    }

    .site-footer .footer-top > div {
        width: 100%;
        padding: 6px 0;
        text-align: center;
    }
}
