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

.arroyo-site-header {
    background: #fff;
    border-top: 5px solid #222;
    border-bottom: 1px solid #e5e5e5;
}

.arroyo-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 80px;
    gap: 30px;
}

.arroyo-logo {
    display: flex;
    align-items: center;
    flex: 0 0 250px;
}

.arroyo-logo a {
    display: inline-flex;
    align-items: center;
}

.arroyo-logo img,
.custom-logo {
    display: block;
    max-width: 250px;
    max-height: 70px;
    width: auto;
    height: auto;
}

.arroyo-main-nav {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.arroyo-menu {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0;
    list-style: none;
    margin: 0;
    padding: 0;
}

.arroyo-menu > li {
    margin: 0;
    padding: 0;
}

.arroyo-menu > li > a {
    display: flex;
    align-items: center;
    justify-content: center;

    white-space: nowrap;

    padding: 10px 12px;

    color: var(--arroyo-dark);

    font-family: 'Open Sans', Arial, sans-serif;
    font-size: 14px;
    font-weight: 600;

    text-decoration: none;
    text-transform: uppercase;

    border-radius: 4px;

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

/* Hover */
.arroyo-menu > li > a:hover {
    background-color: var(--arroyo-silver-light);
    color: var(--arroyo-green);
}

/* Current Page */
.arroyo-menu > .current-menu-item > a,
.arroyo-menu > .current_page_item > a {
    color: var(--arroyo-green);
}

.arroyo-mobile-toggle {
    display: none;
}