/**
 * Custom Desktop Menu Styles
 *
 * This stylesheet controls visibility for the custom menu (1280px+) vs Genesis menu.
 * All styling should be added below the visibility controls.
 *
 * @package Matsa Resources 2021
 */

/* Hide custom menu on screens below 1280px */
@media (max-width: 1279px) {
    .matsa-custom-nav {
        display: none !important;
    }
}

/* Hide Genesis menu on screens 1280px and above */
@media (min-width: 1280px) {
    .nav-primary {
        display: none !important;
    }

    .site-header {
        padding-left: 0 !important;
    }

    .site-header .wrap {
        display: flex;
        align-items: center;
    }

    .matsa-menu-bar .matsa-menu-link {
        color: white !important;
        border-color: white;
    }

    body.mega-menu-open .matsa-menu-link {
        color: #A64F25 !important;
        border-color: #A64F25;
    }

    .matsa-menu-bar:has(.matsa-menu-link:hover) .matsa-menu-link:not(:hover) {
        opacity: 0.5;
    }

    .wp-custom-logo .title-area {
        position: relative;
        z-index: 10;
    }

    body.mega-menu-open .title-area img {
        display: none;
    }

    body.mega-menu-open .title-area .custom-logo-link {
        display: block;
        width: 155px;
        height: 138px;
        background-image: url("/wp-content/uploads/matsa-resources-logo.svg");
        background-size: 155px 138px;
        background-repeat: no-repeat;
    }
}
