
* {
	box-sizing: border-box;
}

html {
	height: 100%;
}

body {
	background-color: black;
	color: white;
	text-align: center;
	font-family: 'Lato', sans-serif;
	background-image: url('https://getreelcinemas.com//wp-content/uploads/2015/02/Background-Narrow.jpg');
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}

header {
	text-align: center;
	color: white;
}

.explanation {
	margin-top: 50px;
	font-size: 19px;
	padding: 20px;
}

button {
	background-color: darkred;
	border: solid 2px black;
	color: white;
	padding: 15px;
	border-radius: 5px;
}

button:hover {
	transition: .3s;
	transform: scale(1.2);
	cursor: pointer;
}

.explanation button {
	margin-top: 15px;
}

/*****************************************
Form Elements
*******************************************/
form button {
	margin: 20px 0px;
	margin-top: 30px;
}

form {
	margin-top: 60px;
}

h2.choose-genre, h2.choose-location {
	padding-left: 15px;
	padding-right: 15px;
	font-size: 22px;
}

.submit {
	font-size: 18px;
}

.user-input [type='radio'] {
	opacity: 0;
	position: absolute;
	z-index: -1;
}

.genre-radio-button {
	display: inline-block;
	padding-top:15px;
	padding-bottom:15px;
	padding-left: 10px;
	padding-right: 10px;
	background-color: #1485CC;
	margin: 5px;
	min-width: 100px;
	border-radius: 10%;
	vertical-align: middle;
	color: black;
}

.genre-radio-button span, .zipcode-chosen span {
	font-size: 3em;
}

.zipcode-chosen {
	cursor: default;
}

.zipcode-chosen p {
	margin:0px;
}

.genre-radio-button:hover, .genre-radio-button > * {
	cursor: pointer;
}

.genre-selected {
	border: solid yellow 3px;
	pointer-events: none;
}

.chosen-zip-wrapper input {
	margin-left: 5px;
}

/*****************************************
Form Elements after user inputs chosen
*******************************************/
.inputs-chosen {
	display: inline-block;
	vertical-align: text-top;
	padding-left: 20px;
	padding-right: 20px;
}

.edit{
	margin-top: 15px;
}

.zipcode-chosen {
	display: inline-block;
	padding-top:15px;
	padding-bottom:15px;
	padding-left: 10px;
	padding-right: 10px;
	background-color: #1485CC;
	margin: 5px;
	min-width: 100px;
	border-radius: 10%;
	color: black;
	border: solid yellow 3px;
	height: 109px;
	vertical-align: middle;
}

.edit, .submit{
	display: block;
	margin-left: auto;
	margin-right: auto;
}

/*****************************************
Results Elements
*******************************************/
.movie-results, .restaurant-results {
	border-radius: 5%;
	height: 280px;
	overflow:hidden;
	text-align: center;
	margin: 5px;
	padding-bottom: 0px;
	margin-bottom: 0px;
	background-color: #0971B2;
	cursor: pointer;
}

.movie-results h4, .restaurant-results h4 {
	margin-top: 10px;
	margin-bottom: 10px;
}

.movie-results img {
	vertical-align: center;
	max-width: 88%;
	max-height: 85%;

}

.movie-result-section, .restaurant-result-section {
	width:45%;
	display: inline-block;
	max-width: 300px;
	vertical-align: top;
}

.results-section {
	margin: 5px;
	height: 900px;
	overflow: auto;
}

.result-selected {
	border: 3px solid yellow;
}

.select-error {
	color: black;
	background-color: white;
	border: 2px solid red;
	padding: 3px;
	display: inline-block;
}

.find-out-more {
	margin-bottom: 40px;
}

.restaurant-image {
	max-width: 75%
}

/*****************************************
Modal
*******************************************/

.modal {
    display: none;
    position: fixed;
    z-index: 1; 
   	left:0;
   	top:0;
    width: 100%; 
    height: 100%; 
    overflow: auto; 
    background-color: rgb(0,0,0);
    background-color: rgba(0,0,0,0.4); 
}

.modal-content {
    background-color: white;
    color: black;
    margin: 15% auto; 
    padding: 20px;
    border: 1px solid #888;
    width: 80%; 
}

.close {
    color: #4F4F4F;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

.modal h3{
	border: black solid 3px;
	padding-top: 3px;
	padding-bottom: 3px;
	background-color: #1485CC;
	color: white;
	margin-top: 40px;
}

.modal h4 {
	text-decoration: underline;
}

p.theatreName{
	margin: 7px;
}

p.showtimeTime {
	display: inline-block;
	background-color: lightgray;
	margin-left: 3px;
	margin-right: 3px;
	border-radius: 20%;
	margin-top: 1px;
	margin-bottom: 1px;
	padding: 5px;
	border: solid black 1px;
	font-size: .75em;
}

.restaurant-hours{
	display: block;
}

/*****************************************
Media Queries
*******************************************/

/*Mobile Landscape*/
@media only screen and (min-width: 321px) and (max-width: 732px) and (orientation: landscape) {
	header {
		margin-top: 5px;
	}

	form {
		margin-top: 0px;
	}

	.explanation{
		margin-top: 0px;
	}

	.movie-results, .restaurant-results {
	min-height: 330px;
	}
	
}


/*Medium Laptop View*/
@media only screen and (min-width: 545px) {
	.explanation {
		margin-top: 25px;
		padding: 60px;
		font-size: 25px;
	}

	h1 {
		font-size: 2.5em;
		margin-top: 15px;
	}

	.chosen-section {
		margin-top: 0px;
	}
	
	form {
		margin-top: 90px;
	}

	.movie-results, .restaurant-results {
		border-radius: 5%;
		height: 330px;
		overflow:hidden;
		text-align: center;
		margin: 5px;
		padding-bottom: 0px;
		margin-bottom: 0px;
	}

	.genre-radio-button span, .zipcode-chosen span {
		font-size: 4em;
	}

	.zipcode-chosen {
		height: 127px;
	}

	.chosen-zip-wrapper input {
		margin-top: 20px;
		margin-bottom: 20px;
	}
}

/*Wide Laptop View*/
@media only screen and (min-width: 882px) {
	.explanation {
		margin-top: 25px;
	}

	h1 {
		margin-top: 15px;
		font-size: 3em;
	}
		
	.explanation p {
		padding-left: 150px;
		padding-right: 150px;
		margin-bottom: 30px;
	}

	.genre-radio-button span, .zipcode-chosen span {
		font-size: 6em;
	}

	.zipcode-chosen {
		height: 164px;
		width: 122px;
	}

}












