﻿

/* [ON BIG SCREEN] */
/* (A) WRAPPER */
#hamnav {
    display: inline-block;
    position: fixed;
    top: 11px;
    left: 10px;
    width: 200px;
    background: #000;
}

/* (B) HORIZONTAL MENU ITEMS */
#hamitems {
    display: flex;
}

    #hamitems a {
        flex-grow: 1;
        flex-basis: 0;
        padding: 15px 30px;
        color: white;
        text-decoration: none;
        text-align: center;
    }

        #hamitems a:hover {
            background: #049EE1;
        }

/* (C) HIDE HAMBURGER */
#hamnav label, #hamburger {
    display: none;
}



/* [ON SMALL SCREENS] */
@media screen and (max-width: 930px) {
    /* (A) BREAK INTO VERTICAL MENU */
    #hamitems a {
        box-sizing: border-box;
        display: block;
        width: 200px;
        border-top: 1px solid #333;
    }
    /* (B) SHOW HAMBURGER ICON */
    #hamnav label {
        display: inline-block;
        color: white;
        background: #049EE1;
        font-style: normal;
        font-size: 2.0em;
        padding: 3px 7px 11px 7px;
    }

    /* (C) TOGGLE SHOW/HIDE MENU */
    #hamitems {
        display: none;
    }

    #hamnav input:checked ~ #hamitems {
        display: block;
    }
    
}