/*
    File: /style/templates/header.css
    Author(s): David Sulik
    Description: This is strictly made for the header template at "/templates/header.php".
*/

/* Header Basics */
#header {
    padding: 0 !important;
    display: flex;
    flex-direction: column;
}

#header #navBar {
    width: 100%;

    display: flex;
    flex-direction: row;
    gap: 1rem;

    justify-content: center;
    align-items: center;
}

#header #navBar img {
    margin-right: 1rem;
    height: 125px;
    width: auto;
}

#header #navBar a {
    text-decoration: none;
    color: black;
}

#header #navBar a.selected {
    text-decoration: underline;
}

#header #navBar a:hover {
    text-decoration: underline;
    cursor: pointer;
}

#header #banner {
    background-image: url("/media/Wide\ Shot.jpg");
    background-size: cover;
    background-position: center;

    min-height: 4in;
}

/* Mobile Support */
#header #navBar .link {
    display: initial;
}

#menuBtn {
    display: none;

    padding: 0;
    
    position: absolute;
    top: 1rem;
    right: 1rem;
}

@media screen and (max-width: 900px) {
    #header #navBar {
        margin-bottom: 1rem;
        flex-direction: column;
    }
    
    #header #navBar img { margin-right: 0; }
    #header #navBar .link { display: none; }
    #menuBtn { display: inherit; }
}
