/* Haupt-Layout */
.footer-content-wrap {
    padding: 40px 0;
    color: #c4a77e;
    font-size: 14px;
}

/* Logo */
.footer-logo {
    max-width: 250px;
    margin-bottom: 20px;
    display: block;
}

/* Überschriften */
h3 {
    color: #c4a77e;
    font-size: 16px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

/* Trennstrich bei Öffnungszeiten */
.footer-hr {
    border-top: 1px solid #c4a77e;
    width: 40px;
    margin: 10px 0;
    text-align: left;
}

/* Unterer Bereich (Copyright & Menü) */
.footer-bottom {
    border-top: 1px solid #334e6e;
    margin-top: 40px;
    padding-top: 20px;
}

/* Menü horizontal ausrichten */
.footer-menu-right .nav {
    display: flex;
    justify-content: flex-end;
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-menu-right .nav > li {
    padding-left: 20px;
}

.footer-menu-right .nav > li > a {
    color: #c4a77e !important;
    text-transform: uppercase;
    text-decoration: none;
    font-size: 14px;
}

.footer-menu-right .nav > li > a:hover {
    color: #ffffff !important;
}

/* Icons (falls FontAwesome genutzt wird) */
.footer-top-row i {
    margin-right: 10px;
    color: #c4a77e;
}

/* Responsives Verhalten */
@media (max-width: 991px) {
    .footer-top-row > div {
        margin-bottom: 30px;
    }
    .footer-menu-right .nav {
        justify-content: center;
        margin-top: 15px;
    }
}