/* ===== HERO HEADER ===== */

.ekkm-header {
    background: url('/images/headers/header-bg.jpg') center center no-repeat;
    background-size: cover;

    min-height: 180px;

    display: flex;
    align-items: center;

    padding: 20px 40px;

    gap: 30px;
}

.ekkm-logo img {
    display: block;
    height: 120px;
    width: auto;
}

.ekkm-title {
    color: white;
}

.ekkm-title h1 {
    margin: 0;

    font-size: 2.6rem;
    font-weight: bold;

    text-shadow: 0 2px 6px rgba(0,0,0,.8);
}

.ekkm-title p {
    margin-top: .5rem;

    font-size: 1.3rem;

    text-shadow: 0 2px 5px rgba(0,0,0,.8);
}

/* Desktop top menu */

.container-nav .mod-menu > li > a,
.container-nav .mod-menu > li > button,
.container-nav .mod-menu .nav-link {
    color: #fff;
}
.container-nav .mod-menu > li > a:hover,
.container-nav .mod-menu .nav-link:hover {
    color: #f5d67a;
}

/* ==========================================================
   Mobile Menus
========================================================== */

.mobile-menu-button {
    display: none;
}
.desktop-sidebar{
    display:block;
}

.mobile-sidebar{
    display:none;
}

@media (max-width: 768px) {

    .mobile-menu-button {
        display: block;
        width: 100%;

        padding: 12px 16px;
        margin: 10px 0;

        font-size: 18px;
        font-weight: bold;

        background: #8d1f1f;
        color: white;

        border: 0;
        border-radius: 6px;

        cursor: pointer;
    }

    #mainMenuWrapper,
    #sideMenuWrapper {
        display: none;
    }

    #mainMenuWrapper.open,
    #sideMenuWrapper.open {
        display: block;
    }
    .desktop-sidebar{
        display:none;
    }
    
    .mobile-sidebar{
        display:block;
    }

    .mobile-sidebar .card-body a,
    .mobile-sidebar .card-body .nav-link,
    .mobile-sidebar .card-body .mod-menu a {
        color: #212529 !important;
    }
    
    .mobile-sidebar .card-body a:hover,
    .mobile-sidebar .card-body .nav-link:hover {
        color: #8b2025 !important;
    }
    /* ===== Mobil Hero Header ===== */

    .ekkm-header {
    
        min-height: 120px;
        padding: 16px 20px;
    
        gap: 16px;
    
        align-items: center;
        margin-bottom:12px;
    }
    
    .ekkm-logo img {
    
        height: 70px;
        width: auto;
    
        flex-shrink: 0;
    }
    
    .ekkm-title {
    
        flex: 1;
    }
    
    .ekkm-title h1 {
    
        font-size: 2rem;
        line-height: 1.15;
    
        margin: 0;
    }
    .ekkm-title h1{
        font-size:1.2rem;
    }

}

.container-header {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.ekkm-header {
    width: 100%;
}

