/* Footer Styles for SEO and Accessibility */
footer {
    background: var(--color-beige);
    /* background-image: url("../img/logo-rectangle.webp");
    background-repeat: no-repeat;
    background-size: contain; */
    color: var(--color-black);
    padding: 2em 0 1em 0;
    font-size: 1em;
    border-top: 1px solid var(--color-gold);
    width: 100%;
    position: relative;
    bottom: 0;
}
.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
    gap: 2em;
}
.footer-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin: 1em
}

.footer-brand {
    flex: 1 1 250px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.footer-logo {
    max-width: 120px;
    height: auto;
    margin-bottom: 0.5em;
}
.footer-nav {
    flex: 1 1 200px;
}
.footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-nav ul ul {
    list-style: disc;
    padding-left: 1.5em;
}
.footer-nav ul ul li::marker {
    color: var(--color-gold);
}
.footer-nav li {
    margin-bottom: 0.5em;
}
.footer-nav a {
    color: var(--color-blue);
    text-decoration: none;
    font-weight: 500;
}
.footer-nav a:hover {
    text-decoration: underline;
    color: var(--color-gold);
}
.footer-contact {
    flex: 1 1 200px;
    font-size: 1em;
}
.footer-contact a {
    color: var(--color-blue);
    text-decoration: none;
}
.footer-contact a:hover {
    text-decoration: underline;
    color: var(--color-gold);
}
.footer-bottom {
    text-align: center;
    color: var(--text-muted);
}

.footer-brand h2 {color: var(--color-gold); line-height: 0%; font-style: italic;}
.footer-brand .footer-subtitle {color: var(--color-blue); font-size: 1.2em; font-weight: bold;}

@media screen and (max-width: 850px) {
    .footer-content {
        flex-direction: column;
        align-items: center;
        gap: 1em;
        text-align: center;
    }
    .footer-brand, .footer-nav, .footer-contact {
        flex: 1 1 100%;
        margin-bottom: 1em;
        align-items: center;
    }
}
