@charset "UTF-8";

/* =========================
   ZENTRALE NAVIGATIONSLEISTE FÜR ANTON WILHELM STOLZING
   ========================= */

/* Hauptnavigation */
.footer-nav {
    text-align: center;
    margin: 20px 0;
    clear: both;
}

/* Liste ohne Aufzählungszeichen */
.footer-nav ul {
    display: inline-block;
    list-style: none;
    margin: 0;
    padding: 0;
}

/* Listenelemente nebeneinander */
.footer-nav li {
    display: inline-block;
    margin: 0 5px;
}

/* Navigationslinks als hübsche Buttons */
.footer-nav a {
    display: inline-block;
    text-decoration: none;
    padding: 5px 15px;
    background-color: #f0f0f0;
    border: 1px solid #ccc;
    border-radius: 3px;
    color: #333;
    font-family: Arial, Helvetica, sans-serif;
    transition: background-color 0.2s;
}

.footer-nav a:hover {
    background-color: #e0e0e0;
    border-color: #999;
}

/* Pfeile links/rechts etwas fetter */
.nav-arrow {
    font-weight: bold;
    font-size: 1.2em;
}

/* Optional: Abstände auf großen Bildschirmen */
@media screen and (min-width: 1200px) {
    .footer-nav {
        margin: 30px 0;
    }
}