﻿/* Set widths on the form inputs since otherwise they're 100% wide */
input,
select,
textarea {
    max-width: 280px;
}

/**
rgba(207,3,96,.6)
**/

body {
    font-family: 'Raleway', sans-serif;
}

.body-content {
    padding-top: 120px;
}

.hero-visible .body-content {
    padding-top: 0;
}

.header-wrap {
    position: absolute;
    top: 0;
    left: 0;
    height: 120px;
    width: 100%;
    padding: 20px 50px 0 50px;
    z-index: 5;
    overflow: hidden;
    background-image: none;
    background-color: rgba(207,3,96,1);
}

.hero-visible .header-wrap {
    background-color: transparent;
    background-image: linear-gradient(180deg,rgba(207,3,96,.6) 20%,rgba(207,3,96,0) 100%);
}

.header {
    margin-left: auto;
    margin-right: auto;
}

@media screen and (min-width: 980px) {
    .header {
        width: 1200px;
    }
}

.hero-visible .hero-wrap {
    display: block;
    visibility: visible;
}

.hero-wrap {
    display: none;
    visibility: hidden;
    position: relative;
    width: 100%;
    height: 800px;
    overflow: hidden;
}

.hero-media {
    width: 100%;
    height: 100%;
    background-image: url('../images/hero.jpg');
    background-position: center;
    background-size: cover;
}

.front-welcome {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.front-welcome-text {
    display: block;
    font-size: 5rem;
    font-weight: 600;
    color: white;
    padding: 20px;
    border: 2px solid white;
}

.front-welcome-text p {
    margin: 0;
    padding: 0;
    line-height: 5rem;
}

.brand {
    display: block;
    width: 250px;
    height: 100px;
    float: left;
}

.brand path {
    fill: white;
}

.desktop-navigation {
    margin-top: 15px;
    float: right;
}

.navigation {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

.navigation li {
    float: left;
}

.navigation li a {
    display: block;
    text-align: center;
    padding: 12px 16px;
    text-decoration: none;
    color: white;
    font-family: inherit;
    font-weight: 600;
    font-size: 2rem;
    transition: color .2s ease-in-out, background-color .2s ease-in-out;
}

.navigation li a:hover {
    color: rgba(207,3,96,1);
    background-color: white;
}

#calendar table {
    width: 100%;
    border-spacing: 0;
    table-layout: fixed;
}

#calendar thead tr th {
    background-color: transparent;
    color: rgba(207,3,96,1);
    font-size: 2rem;
    font-weight: 600;
    background-color: rgba(0,0,0,.05);
    padding: .5em;
    overflow: hidden;
    vertical-align: middle;
    text-align: center;
}

#calendar tbody tr {
    border-bottom: 1px solid rgba(207,3,96,1);
}

#calendar tbody tr:last-child {
    border-bottom: none;
}

#calendar tbody tr:nth-child(2n+1) {
    background: rgba(207,3,96,.1);
}

#calendar tbody tr td {
    position: relative;
    text-align: center;
    vertical-align: middle;
    height: 128px;
    border-left: 1px solid rgba(207,3,96,1);
    padding: 5px;
}

#calendar tbody tr td:first-child {
    border-left: none
}

#calendar .event {
    display: block;
    font-size: 1.5rem;
    font-weight: 600;
    color: rgba(207,3,96,1);
    padding: 5px;
    border: 1px solid rgba(207,3,96,1);
    background-color: rgba(207,3,96,.2);
}

#calendar .date {
    position: absolute;
    top: 5px;
    left: 5px;
    width: 26px;
    height: 26px;
    display: block;
    border-radius: 100%;
    font-size: 1.5rem;
    font-weight: 600;
    color: white;
    background-color: rgba(207,3,96,1);
    text-align: center;
    vertical-align: middle;
    line-height: 22px;
}

#calendar .date.today {
    color: rgba(207,3,96,1);
    background-color: white;
    border: 2px solid rgba(207,3,96,1);
}

#calendar .date.inactive {
    color: white;
    background-color: rgba(0,0,0,.2);
}