/* ==========================================================
   HEADER
   Schuhhaus Minnich
========================================================== */


/* ----------------------------------------------------------
   HEADER
---------------------------------------------------------- */

.site-header{

    position:sticky;

    top:0;

    z-index:9999;

    background:#ffffff;

    border-bottom:1px solid #ececec;

    box-shadow:0 2px 12px rgba(0,0,0,.05);

}


/* ----------------------------------------------------------
   CONTAINER
---------------------------------------------------------- */

.site-header .container{
    max-width:1500px;
    padding:0 24px;
}


/* ----------------------------------------------------------
   HEADER-INHALT
---------------------------------------------------------- */

.header-inner{

    display:flex;

    align-items:center;

    justify-content:space-between;

    height:78px;

    gap:42px;

}


/* ----------------------------------------------------------
   LOGO
---------------------------------------------------------- */

.site-logo{

    flex:0 0 auto;

    display:flex;

    align-items:center;

    text-decoration:none;

}

.site-logo img{

    height:60px;

}


/* ----------------------------------------------------------
   NAVIGATIONSBEREICH
---------------------------------------------------------- */

.main-navigation{

    flex:1;

    display:flex;

    justify-content:center;

    align-items:center;

}


/* ----------------------------------------------------------
   TELEFONBUTTON
---------------------------------------------------------- */

.phone-button{

    flex: 0 0 auto;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 8px;

    min-width: 140px;

    height: 42px;

    padding: 0 18px;

    border: 2px solid #d49a00;

    border-radius: 999px;

    background: #fff;

    color: #333;

    font-size: 15px;

    font-weight: 700;

    text-decoration: none;

    white-space: nowrap;

    line-height: 1;

    transition: all .25s ease;

}

.phone-button:hover{

    background:#d49a00;

    color:#fff;

}

.phone-button:hover{

    background:#c99a2a;

    color:#fff;

}


/* ----------------------------------------------------------
   HAMBURGER
---------------------------------------------------------- */

.menu-toggle{

    display:none;

    border:none;

    background:none;

    padding:0;

    font-size:34px;

    color:#333;

    cursor:pointer;

}
/* ==========================================================
   NAVIGATION
========================================================== */

.main-menu{

    display:flex;

    align-items:center;

    justify-content:center;

    gap:22px;

    margin:0;

    padding:0;

    list-style:none;

}

.main-menu li{

    margin:0;

    padding:0;

}

.main-menu a{

    font-weight:700;

}


/* Hover */

.main-menu a:hover{

    color:#d49a00;

}


/* Goldene Linie */

.main-menu a::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-8px;

    width:0;

    height:2px;

    background:#d49a00;

    transition:.25s ease;

}

.main-menu a:hover::after{

    width:100%;

}


/* Aktive Seite */

.current-menu-item>a,
.current_page_item>a,
.current_page_parent>a{

    color:#d49a00;

}

.current-menu-item>a::after,
.current_page_item>a::after,
.current_page_parent>a::after{

    width:100%;

}
/* ==========================================
   MOBILE NAVIGATION
   ========================================== */

@media (max-width: 700px){

    .header-inner{
        width:100%;
        max-width:100%;
        box-sizing:border-box;
        padding:8px 12px;
        display:flex;
        align-items:center;
        justify-content:space-between;
        gap:8px;
    }

    .site-logo{
        flex:1 1 auto;
        min-width:0;
        max-width:48%;
    }

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

    .phone-button{
        flex:0 1 auto;
        font-size:14px;
        padding:8px 12px;
        white-space:nowrap;
    }

    .menu-toggle{
        display:block;
        flex:0 0 auto;
        width:44px;
        height:44px;
        padding:0;
        border:0;
        background:none;
        font-size:30px;
        line-height:44px;
        text-align:center;
        color:#333;
    }

}