/* ============================================================
   RIDEAU VIEW - Footer
   ============================================================ */

/* Reset the auto-generated footer tag */
footer.footer {
    background-color: #fff;
    padding: 0;
    margin: 0;
}

/* ?? Green nav bar ?? */
.footer-nav {
    background-color: #144734;
    padding: 20px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 4px;
    font-family: "Josefin Sans", sans-serif;
}

.footer-nav a {
    font-size: 16px;
    font-weight: 500;
    color: #fff !important;
    margin: 10px 0;
    text-decoration: none;
    text-transform: uppercase;
}

.footer-nav a::after {
    content:"\2022";
    margin: 0 10px !important;
}

.footer-nav a:last-child::after {
    content: "";
    margin: 0;
}

.footer-nav a:hover {
    color: #d4a519;
}

/* ?? Footer body: 3-column ?? */
.footer-body {
    background-color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    flex-wrap: wrap;
}

.footer-left {
    max-width: 386px;
    width: 33%;
    text-align: right;
    font-size: 14px;
    color: #144734;
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 300;
}

.footer-left img {
    width: 100%;
    height: auto;
    display: block;
}

.footer-lnks {
    min-width: 245px;
    text-align: center;
}

.footer-logo img {
    width: 100%;
    height: auto;
    display: block;
}

.footer-social {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
}

.footer-social a img {
    display: block;
    height: auto;
}

.footer-addr p {
    font-size: 17px;
    color: #144734;
    margin: 4px 0;
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 300;
}

.footer-addr p strong {
    color: #d4a519;
    font-weight: 700;
    font-size: 18px;
}

/* ?? Buz credit bar ?? */
.footer-bottom {
    background-color: #f5f5f5;
    border-top: 1px solid #ddd;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
}

.copyright,
.footer-credit {
    font-size: 11px;
    color: #999;
}

.footer-credit a {
    color: #999;
    text-decoration: none;
}

.footer-credit a:hover {
    color: #555;
}

/* ?? Mobile ?? */
@media only screen and (max-width: 780px) {
    .footer-body {
        flex-direction: column;
        text-align: center;
    }

    .footer-left {
        width: 100%;
        max-width: 300px;
        text-align: center;
        padding: 20px 0;
        order: 3;
    }

    .footer-social {
        justify-content: center;
        gap: 16px;
    }

    .footer-bottom {
        justify-content: center;
        text-align: center;
    }
}    