/**
 * Arroyo Management Theme
 *
 * File: footer.css
 * Description: Site footer css classes.
 *
 * @package ArroyoTheme
 * @author Ben Wouden
 * @version 1.0.0
 * @since 1.0.0
 */

.arroyo-site-footer {
    background: #222;
    color: #bfc3c7;
    font-size: 14px;
}

.arroyo-footer-main {
    padding: 48px 0 42px;
}

.arroyo-footer-grid {
    display: grid;
    grid-template-columns: 1.3fr .8fr 1.3fr;
    gap: 60px;
    align-items: start;
}

.arroyo-footer-info p {
    margin: 0 0 22px;
    line-height: 1.6;
}

.arroyo-footer-info a {
    color: #bfc3c7;
    text-decoration: none;
}

.arroyo-footer-info a:hover {
    color: #fff;
}

.arroyo-footer-eho {
    text-align: center;
}

.arroyo-eho-image {
    max-width: 160px;
    height: auto;
    display: inline-block;
    margin-top: 40px;
}

.arroyo-footer-links h3 {
    color: var(--arroyo-gray);
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .12em;
    margin: 0 0 6px;
}

.arroyo-footer-menu {
    columns: 2;
    column-gap: 28px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.arroyo-footer-menu li {
    break-inside: avoid;
    margin: 0 0 2px;
}

.arroyo-footer-menu a {
    display: block;
    width: 100%;

    box-sizing: border-box;
    padding: 2px 6px;

    color: var(--arroyo-gray);
    text-decoration: none;
    
    border-radius: var(--arroyo-radius);

    transition:
        background-color .2s ease,
        color .2s ease;
}

.arroyo-footer-menu a:hover {
    color: #fff;
    background-color: var(--arroyo-blue);
}

.arroyo-footer-menu .current-menu-item > a,
.arroyo-footer-menu .current_page_item > a {
    color: #ffffff;
    background-color: var(--arroyo-blue);
}

.arroyo-footer-bottom {
    border-top: 1px dotted #555;
    padding: 18px 0;
    text-align: center;
}

.arroyo-footer-bottom p {
    margin: 0;
    color: #bfc3c7;
    font-size: 13px;
    text-transform: uppercase;
}

.arroyo-footer-contact {
    line-height: 2.1;
}

.arroyo-footer-contact strong {
    color: #ffffff;
    font-weight: 700;
}

.arroyo-footer-phone,
.arroyo-footer-email {
    color: #bfc3c7;
    text-decoration: none;

    transition:
        color .2s ease,
        background-color .2s ease;
}

.arroyo-footer-phone:hover,
.arroyo-footer-email:hover {
    color: #ffffff;
    background-color: var(--arroyo-blue);
    border-radius: var(--arroyo-radius);
    padding: 2px 6px;
}