@import 'common.css';
@import url(//fonts.googleapis.com/css?family=Arimo:400,700,400italic,700italic);
@import url(//fonts.googleapis.com/css?family=Open+Sans:400italic,700italic,800italic,400,700,800);


/* HEADER STYLES */
#branding-container {
    background: #272727;
    border-bottom: solid 1px #fe5c00;
    color: #fff;
    position: absolute;
    left: 0;
    width: 100%;
    height: 90px;
}

#site-identifier {
    position: relative;
}

#logo {
    float: left;
    margin-right: 1.5em;
    overflow: hidden;
    position: relative;
    z-index: 100;
}

#logo img {
    height: auto;
    margin-top: -15px;
    width: 91px;
}

#site-banner {
    background-color: transparent;
    padding-right: 15px;
    padding-left: 15px;
    position: initial;
    height: 90px;
}

#site-branding {
    display: none;
}

#osu-branding {
    display: table-cell;
    overflow: hidden;
    vertical-align: middle;
}

#osu-branding a {
    color: #fff;
    display: block;
    font-family: "Arimo", "Open Sans", "Arial", sans-serif;
    font-size: 1.5em;
    font-style: italic;
    font-weight: 700;
    line-height: 1em;
    padding: 0.6em;
    padding-right: 10px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0px;
}

#mobile-wordmark {
    background-color: #fe5c00;
}

#mobile-menu-button button {
    border: 1px solid #000;
}

#mobile-menu-button button:hover {
    border: 1px solid #fe5c00;
    background-color: transparent;
}

#mobile-menu-button .icon-bar {
    background-color: #fe5c00;
}

.mobile-nav {
    border-top: none;
    background-color: transparent;
    z-index: 10;
}

#header-elements {
    margin-top: 5px;
    text-align: right;
}

#quicklinks {
    padding: 0px;
}

#quicklinks ul {
    display: inline-block;
    margin: 0;
    padding: 0;
}

#quicklinks li {
    font-size: 0.857em;
    float: left;
    list-style: none;
    margin-right: 7px;
}

#quicklinks li a {
    color: #ccc;
    text-decoration: none;
}

#quicklinks li a:hover {
    text-decoration: underline;
}

#site-search {
    margin-top: 10px;
    max-height: 35px;
    overflow: hidden;
}

.navbar {
    background-color: #000;
    border-radius: 0;
}

#top-nav {
    padding-left: 113px;
    background-color: #000;
    height: 36px;
}

#top-nav ul li a {
    color: #fff;
    text-decoration: none;
    line-height: 36px;
    padding-top: 0;
    padding-bottom: 0;
}

#top-nav ul li a:hover {
    background-color: transparent;
    color: #fe5c00;
}

.sidebar {
    margin-top: 20px;
}

@media (max-width: 768px) {
    header .navbar-header {
        display:none;
    }

    #site-banner {
        padding: 0;
        height: auto;
    }

    #branding-container {
        position: relative;
        height: auto;
    }
}

@media (max-width: 992px) {
    #site-identifier {
        display: table-cell;
        /*float: none;*/
        vertical-align: middle;
    }

    #top-nav {
        display: none;
    }

    /* Template default uses collapse only at xs we use it at sm */
    #mobile-menu-button .navbar-toggle {
        display: block;
    }

    /* Mobile nav styling */
    .mobile-nav {
        background-color: #000;
    }

    .mobile-nav.collapse {
        display: none;
    }

    .mobile-nav.collapse.in {
        display: block;
    }

    #header-elements {
        margin-top: 0px;
        text-align: left;
    }

    #quicklinks {
        margin: 1em 0;
    }

    #quicklinks li {
        font-size: 1em;
        margin-right: 12px;
    }

    .mobile-nav nav li {
        float: none;
    }

    .mobile-nav nav li a {
        color: #fff;
    }

    .mobile-nav nav li a:hover {
        background-color: transparent;
        color: #fe5c00;
    }

    #site-search {
        border-bottom: solid 1px #555;
        max-height: initial;
        padding-bottom: 15px;
    }
}

@media (min-width: 768px) {
    header {
        height: 90px;
    }

    #site-identifier {
        height: 90px;
        padding-left: 7px;
    }

    #osu-branding {
        height: 90px;
        padding: 0;
    }
}

@media (min-width: 992px) {
    #logo {
        z-index: 40px;
    }

    #logo img {
        height: auto;
        margin-top: -5px;
        width: 99px;
    }

    #header-elements {
        display: block;
    }

    #header-elements nav {
        display: none;
    } 
}

/* BODY/CONTENT STYLES */

body {
    background: url('../images/bg_dark.jpg') 50% 50% no-repeat;
    background-size: cover;
    background-attachment: fixed;
    background-color: #ccc;
    z-index: -10;

    font-family: "Open Sans", "Arial", sans-serif;
}

@media (max-width: 991px) {
    body {
        background: #ccc;
    }
}

.btn-primary {
    background-color: #fe5c00;
    border-color: #cc4c00;
    color: #000000;
}

.btn-primary:hover,
.btn-primary.hover,
.btn-primary:active,
.btn-primary.active,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.disabled.focus,
.btn-primary.disabled.active,
.btn-primary.disabled.hover,
.btn-primary.disabled:focus,
.btn-primary.disabled:active,
.btn-primary.disabled:hover,
.btn-primary[disabled].focus,
.btn-primary[disabled].active,
.btn-primary[disabled].hover,
.btn-primary[disabled]:focus,
.btn-primary[disabled]:active,
.btn-primary[disabled]:hover {
    background-color: #cc4c00;
    border-color: #993900;
    color: #000000;
}

.btn-primary:active:focus,
.btn-primary.active.focus,
.btn-primary.active:focus,
.btn-primary:active.focus {
	background-color: #d4d4d4;
	color: #333;
	border-color: #8c8c8c;
}

.form-control {
    border-color: #cc4c00;
}

table.table thead tr {
    background: #fe5c00;
    border: 1px solid #fe5c00;
    color: #fff;
}

table.table tbody {
    border: 1px solid #ccc;  
}

/* FOOTER STYLES */
footer {
    border: 1px solid #ccc;
    border-top: none;
    margin-bottom: 0px;
}

#footer-heading {
    background: #fe5c00;
    color: #fff;
    font-family: "Arimo", "Open Sans", "Arial", sans-serif;
    font-size: 1.143em;
    font-style: italic;
    font-weight: 700;
    padding: 5px 15px;
    text-transform: uppercase;

}

#footer-arrow {
    background: url('../images/f-arrow.png') no-repeat #272727 15px 0;
    height: 20px;
    margin-bottom: -20px;
}

#footer-logo {
    padding-top: 15px;
}

#footer-logo img {
    height: 100px;
    margin-top: 15px;
}

#branding-bottom {
    background-image: linear-gradient(to bottom right, #ff7500, #fa5400);
    text-align: center;
}

#copyright-full {
    color: #fff;
    font-size: 1em;
    font-weight: bold;
    padding: 15px;
}


@media (min-width: 768px) {
    footer {
        margin-bottom: 10px;
    }

    #footer-heading {
        font-size: 1.5em;
        padding: 0 15px;
    }

    #copyright-full {
        background: #272727;
        text-align: right;
    }
}
