/* By: Julian Travis, 2019 /*
/* Main Style */

/* Orange Color Scheme: #fa8d00 */

#homeBg {
	height: 100%;
	width: 100%;
	min-width: 1000px;
	position: fixed;
	z-index: -2;
	filter: blur(10px);
	background-repeat: no-repeat;
}

#homeBg2 {
	height: 100%;
	width: 100%;
	min-width: 1000px;
	position: fixed;
	z-index: -3;
	background-repeat: no-repeat;
}

#blackOverlay {
	background-color: black;
	height: 100%;
	width: 100%;
	min-width: 1000px;
	position: fixed;
	z-index: -1;
	opacity: 0.4;
}

/* Event Banner */
/* Currently set to Christmas Banner */
#eventBanner {
    height: 400px;
    width: 100%;
    position: absolute;
    margin-left: auto;
    margin-right: auto;
    left: 0;
    right: 0;
    text-align: center;
    background-image: url("/image/holidayBanner.png");
}

.eventBannerTitle {
    font-size: 100px;
    color: white;
    text-align: center;
    text-shadow: 0px 0px 20px black;
    font-family: 'Open Sans', sans-serif;
    padding-top: 25px;
}

/* Mobile Background */
/* Makes the picture fit to a 4k screen max height, with a scaled width */
@media screen and (max-width: 1000px) {
	#homeBg {
	    height: 2160px;
	    width: 2880px;
	}
	
	#homeBg2 {
	    height: 2160px;
	    width: 2880px;
	}
	
	#eventBanner {
        height: 400px;
        width: 1000px;
        position: absolute;
        margin-left: auto;
        margin-right: auto;
        left: 0;
        right: 0;
        text-align: center;
    }
    
    .eventBannerTitle {
        font-size: 90px;
        color: white;
        text-align: center;
        text-shadow: 0px 0px 20px black;
        font-family: 'Open Sans', sans-serif;
        padding-top: 40px;
    }
}

#topBar {
	box-shadow: 0px 0px 20px black;
}

#homeLogo {
	width: 100px;
	height: 100px;
	margin-bottom: -25px;
}

.homeContentContainer {
	padding-top: 70px;
	width: 800px;
	padding-bottom: 40px;
}

.bigTitle {
	font-size: 65px;
}

.smallTitle {
	font-size: 35px;
	color: white;
	text-align: left;
}

.bodyText {
	font-size: 20px;
	color: white;
	text-align: left;
}

.creditText {
	color: white;
}

#hdiv {
	background-image: linear-gradient(to right, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.75), rgba(255, 255, 255, 0));
}

#hdivBlack {
	background-image: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0));
	border: 0;
	height: 1px;
}

.payButton {
    font-family: 'Open Sans', sans-serif;
    font-size: 25px;
    color: white;
    text-transform: uppercase;
    border-style: solid;
    border-width: 5px;
}

#buttonWrapper {
    padding-top: 40px;
    padding-bottom: 30px;
    /*width: 400px;*/
}

#buttonWrapperLink {
    text-decoration: none;
    transition: 0.3s;
}

#buttonWrapperLink:hover {
    opacity: 0.7;
}

/* PHP Forms */

#phpForm input {
    border: none;
    font-family: 'Open Sans', sans-serif;
    font-size: 20px;
    margin-top: -10px;
}

#phpForm textarea {
    border: none;
    font-family: 'Open Sans', sans-serif;
    font-size: 20px;
    margin-top: -10px;
}

#phpForm #submit_button {
    background: none;
    padding: 10px 0 10px 0;
    font-size: 25px;
    color: white;
    text-transform: uppercase;
    border-width: 5px;
    border-style: solid;
    width: 200px;
    transition: 0.3s;
}

#phpForm #submit_button:hover {
    opacity: 0.7;
    cursor: pointer;
}

/* -------------------------------------------------------------------------- */
/* Modal Style */

/* Modal Content (div) */
.modal-content {
	background-color: white;
	padding: 5px 20px 20px 20px;
	border-radius: 0px; /* Was 5px, but changed to 0 for style consistency */
}