/** ==================== Header ====================== **/
header a{
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: black;
    font-size: 1.15rem;
    font-weight: 500;
    text-decoration: none;
}

header span{
    display: flex;
}

header img{
    display: flex;
}


/** ==================== Navigation ====================== **/
nav {
    display: block;
}


@media (min-width: 48.0001em){
    .responsive-menu{
        display: none;
    }


    /** ==================== Header ====================== **/
    header {
        position: fixed;
        top: 0;
        width: 30%;
        height: 90px;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        background-color: var(--light-bg);
        z-index: 20;
        border-bottom: 2px solid black;
    }

    header img{
        width: 200px;
    }

    /** ==================== Navigation ====================== **/
    nav {
        position: fixed;
        top: 0;
        left: 30%;
        width: 70%;
        height: 90px;
        margin: 0;
        background-color: var(--light-bg);
        border-bottom: 2px solid black;
        z-index: 30;
    }

    .nav-list {
        width: 100%;
        height: 100%;
        display: flex;
        justify-content: space-around;
        vertical-align: center;
        align-items: center;
        margin: 0;
        list-style: none;
        padding-inline-start: 0;
    }

    .nav-item{
        font-size: 1.1rem;
        color: var(--light-text-gray);
        font-weight: 400;
        font-family: "Roboto Slab", serif;
    }

    .nav-item-link{
        color: var(--light-text-gray);
        text-decoration: none;
    }

    .nav-item span:hover{
        color: #e8a847;
        cursor: pointer;
    }

    .nav-item-link:hover{
        color: #e8a847;
    }

    .nav-item-link.active{
        color: #e8a847;
    }

    /** ==================== Navigation Dropdown ====================== **/
    .sub-nav-list{
        /* This allows the overlap */
        position: absolute;
        margin-left: -3em;
        margin-top: 1em;
        padding-inline-start: .5em;
        border-radius: 5px;
        background-color: var(--dark-bg);
        list-style: none;
    }

    .sub-nav-item{
        display: block;
        width: 100%;
        z-index: 999;
        padding-top: 1rem;
        padding-right: 1rem;
        padding-bottom: .5rem;
    }

    .sub-nav-item-link{
        display: block;
        text-align:left;
        text-decoration: none;
        font-style: normal;
        font-size: 1.35rem;
        font-weight: 400;
        color: #eeeeee;
    }

    .sub-nav-item-link:hover{
        color: var(--primary);
    }
}