/* ==========================================================================
   Site footer
   Three horizontal bars: contact info / nav / copyright.
   ========================================================================== */

.site-footer {
    font-family: "Helvetica", Verdana, Arial, sans-serif;
    width: 100%;
}
.site-footer .footer-container {
    max-width: 1322px;
    margin: 0 auto;
    padding: 0 30px;
}

/* ----- Top bar: logo + contact info ----- */
.site-footer .footer-top {
    background: #f4f4f4;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
    padding: 12px 0;
}
.site-footer .footer-top .footer-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}
.site-footer .footer-logo img {
    width: 65px;
    height: auto;
    display: block;
}
.site-footer .footer-contact {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 50px;
    flex: 1;
    justify-content: space-around;
}
.site-footer .footer-contact li {
    display: flex;
    align-items: center;
    gap: 12px;
}
.site-footer .footer-contact a {
    color: #c5a352;
    text-decoration: none;
    transition: color 0.15s ease;
    font-size: 16px;
}
.site-footer .footer-contact a:hover,
.site-footer .footer-contact a:focus {
    color: #aa0606;
    text-decoration: none;
}
.site-footer .footer-contact .icon {
    color: #aa0606;
    font-size: 18px;
    line-height: 1;
    flex-shrink: 0;
    width: 22px;
    text-align: center;
}

/* ----- Middle bar: nav with vertical separators between items ----- */
.site-footer .footer-nav {
    background: #3d3d3d;
    border-top: 1px solid #2a2a2a;
    border-bottom: 1px solid #2a2a2a;
    padding: 22px 0;
}
.site-footer .footer-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}
.site-footer .footer-nav li {
    padding: 0 28px;
    border-right: 1px solid #888;
    line-height: 1;
}
.site-footer .footer-nav li:last-child { border-right: 0; }
.site-footer .footer-nav a {
    color: #ffffff;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 17px;
    letter-spacing: 0.6px;
    transition: color 0.15s ease;
}
.site-footer .footer-nav a:hover,
.site-footer .footer-nav a:focus,
.site-footer .footer-nav .current a {
    color: #c5a352;
    text-decoration: none;
}

/* ----- Bottom bar: copyright (left-aligned) ----- */
.site-footer .footer-copyright {
    background: #e8e8e8;
    color: #2b2b2b;
    padding: 6px 0;
    font-size: 13px;
}
.site-footer .footer-copyright p {
    margin: 0;
    text-align: left;
}

/* ----- Mobile ----- */
@media (max-width: 800px) {
    .site-footer .footer-top .footer-container {
        flex-direction: column;
        text-align: center;
    }
    .site-footer .footer-contact {
        flex-direction: column;
        gap: 12px;
    }
    /* Hide the footer nav on mobile — same links are in the header. */
    .site-footer .footer-nav { display: none; }
}
