/*
main.css

Contains site-wide style information.

Mobile Size Categories:
Style 1 <= 1024px
Style 2 <= 600px

*/

@import url('https://fonts.googleapis.com/css?family=Oswald|PT+Serif|Playfair+Display');

/*
GLOBAL
*/

html {
    height: 100%;
}

body {
    margin: 0;
    height: 100%;
    background-color: #f4f4f4;
}

/*
HEADER
*/

#header
{
    text-align: left;
    width: 100%;
    background: #FFFFFF;
    z-index: 999;
}

/* HPRCC Logo */
.hprcc-logo {
    display: inline-block;
    padding-top: 0.1em;
    padding-left: 0.1em;
}

.nebr-logo {
    float: right;
    right:0;
    text-align: right;
    width:5%;
    margin-right: 0.25em;
}

.hprcc-logo img {
    height: 4em;
    width: 4em;
}

/* 
Navigation Bar
*/
.navbar-horz {
    list-style-type: none;
    margin: auto;
    width: 89%;
    padding: 0;
    margin: 0;
    overflow: hidden;
    background-color: #FFFFFF;
    display: inline-block;
    
    font-family: 'Oswald', sans-serif;
    font-size: 1.5em;
    
}

/* Menu Category Container*/
.navbar-horz li {
    float: left;
    text-align: center;
    width: 20%;
    
}

/* Menu Category Link*/
.dropbtn {
    display: inline-block;
    color: dimgray;
    text-align: center;
    padding: 14px 16px;
    width: 90%;
    text-decoration: none;
}

li a:hover, .dropdown:hover .dropbtn {
    background-color: #679FB5;
    color: white;
}

li.dropdown {
    display: inline-block;
}

/* Menu Dropdown */
.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 999;
    width: 17.2%;
}

.dropdown-content a {
    color: black;
    padding: 14px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
    width: 100%;
    background-color: #f9f9f9;
}

.dropdown-content a:hover {background-color: #f1f1f1; color: black;}

.dropdown:hover .dropdown-content {
    display: block;
}



/*
BODY
*/
#content {
    min-height: 100%;
    margin-bottom: 15px;
    padding-bottom: 4em;
}

/*
#home-hero:hover .hero-overlay-text{
    top: 25%;
}

#home-hero-button {
    opacity: 0;
}

#home-hero:hover .hero-overlay-button{
    opacity: 1;
}
*/

/*
FOOTER
*/
#footer {
    position: relative;
    width: 100%;
    background-color: #FFFFFF;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    bottom: 0;
    margin: auto;
    height: 4em;
    display: inline-block;
}

#footer-text {
    position: absolute;
    top: 40%;
    width: 50%;
    left: 1em;
    vertical-align: middle;
}

#footer a {
    color: #5C9DC0;
}

#footer img {
    float: right;
    height: 4em;
}

.column-data-panel select {
    width: 5em;
}
