/*

	CIS155 Final Project
	Version: 1

	Author: Joshua Hemphill
	Date: 8/19/2017

	Filename: Main.css
	Supporting files: Home.html,

*/

/* default page element styles */
body {
	width: 100%;
	height: 100vh;
	margin: 0;
	background: black url(Images/seattexture.png) center/10% repeat fixed;
	display: -webkit-flex;
    display: flex;
	flex-flow: column nowrap;
	-webkit-justify-content: space-between;
	justify-content: space-between;
}

main {
	flex: 1 0 auto;
	display: -webkit-flex;
    display: flex;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
	flex-wrap: nowrap;
	flex-flow: column nowrap;
	margin-bottom: auto;
}

main > div.wrapper {
	flex: 0 1 auto;
}

main section {
	flex: 0 1 auto;
	align-self: center;
	margin: 0px;
}

/* Not Mobile */
.hiddenMobile{
	display: none;
}

/* Header styles */
header {
	flex: 0 1 auto;
	display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
	flex-wrap: nowrap;
	width: 100%;
	z-index: 99;
	background: black url(Images/dragonfly_poster2.svg) center top/50% no-repeat;
}
header#home {
	animation-name: OpeningMain;
	animation-timing-function: linear;
	animation-duration: 2s;
}

header > img#logoMain {
	align-self: center;
	width: 20%;
	height: 7em;
	margin: 0px 10px 0px 10px;
}
/* Header Opening Animation */
@keyframes OpeningMain {
	0% {height: 1000px; background: white url(Images/dragonfly_poster2.svg) center/200% no-repeat; box-shadow: inset 0px 0px 300px 400px rgba(0,0,0,1);}
	100% {height: 100px; background: black url(Images/dragonfly_poster2.svg) center top/50% no-repeat;}
}


/* Nav Bar styles */
nav {
	flex: 0 1 auto;
	display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
	flex-wrap: nowrap;
	width: 100%;
	z-index: 99;
	background-color: rgb(132, 183, 135);
	overflow: hidden;
}
nav > img {
	display: none;
}
nav > ul {
	flex: 1 0 auto;
	display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
	flex-wrap: nowrap;
	width: 60%;
	list-style: none;
	text-align: center;
	padding: 0px 0px 0px 0px;
	margin: 0;
	background-color: rgb(132, 183, 135);
}

nav > ul > li {
	width: 10%;
}

nav > ul li a {
	display: inline-block;
	position: relative;
	font-family: Verdana, Geneva, sans-serif;
	padding: 8% 0px 8% 0px;
	text-decoration: none;
	font-size: 0.9em;
	font-weight: lighter;
	text-transform: uppercase;
	font-family: Geneva, sans-serif;
	text-shadow: none;
	line-height: 20px;
	background-color: rgb(132, 183, 135);
	width: 100%;
}

nav > ul > li a:link, nav > ul > li a:visited {
	color: white;
	position: relative;
}

nav > ul li:hover, nav > ul li:active, nav > ul li.currentPage, nav > ul li:hover > a, nav > ul li:active > a, nav > ul li.currentPage > a {
	color : black;
	background: white;
}
nav > ul > li.currentPage {
	color: darkgray;
}

.fix {
	position: fixed;
	top: 0px;
	overflow: visible;
}
/* Nav Bar Dropdown */
nav > ul li ul {
  position: relative;
  display: none;
  text-align: center;
  margin: auto;
}
nav > ul li ul li {
	background-color: rgb(132, 183, 135);
	display: block;
	color: black;
	padding: 5px 20% 5px 20%;
	width: 100%;
	min-width: 50px;
}
nav > ul li ul li:hover, nav > ul li ul li:hover a{
	background-color: lightgray;
}
nav > ul li:hover ul {
	display: block;
	position: absolute;
	align-items: center;
	padding: 0px;
	min-width: 150px;
}


	/* Movie showing slideshow */
/* Slideshow container */
.movieBannerWrapper {
	display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
	flex-wrap: nowrap;
	width: 100%;
	background-color: rgba(94, 94, 94, 0.3);
	flex-flow: row nowrap;
}

.movieBannerSlide {
	display: -webkit-flex;
    display: flex;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
	flex-wrap: nowrap;
	flex-flow: column nowrap;
	margin-top: 5px;
}
.mySlides {
    display: none;
	align-self: center;
	-webkit-justify-content: center;
    justify-content: center;
	flex-wrap: nowrap;
	flex-flow: column nowrap;
	text-decoration: none;
}

/* Next & previous buttons */
.prev, .next {
	align-self: center;
	cursor: pointer;
	position: relative;
	width: auto;
	padding: 16px;
	color: white;
	font-weight: bold;
	font-size: 18px;
	transition: 0.6s ease;
	border-radius: 0 3px 3px 0;
}

/* Position the "next button" to the right */
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover, .next:hover {
  background-color: rgba(0,0,0,0.8);
}

/* Caption text */
.captionText {
  color: white;
  font-size: 15px;
  width: 100%;
  text-align: center;
  text-decoration: none;
}

/* Star Rating */
.mySlides p {
	color: gold;
	margin: 0;
	font-size: 1em;
	text-align: center;
	text-decoration: none;
}

/* The dots/bullets/indicators */
.dot {
  cursor:pointer;
  height: 8px;
  width: 30px;
  margin: 0;
  background-color: #bbb;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active, .dot:hover {
  background-color: #717171;
}

/* Fading animation */
.fade {
  -webkit-animation-name: fade;
  -webkit-animation-duration: 1.5s;
  animation-name: fade;
  animation-duration: 1.5s;
}

@-webkit-keyframes fade {
  0% {opacity: .1; filter: brightness(0%);}
  100% {opacity: 1; filter: brightness(100%) contrast(100%);}
}

@keyframes fade {
  0% {opacity: .1; filter: brightness(0%);}
  100% {opacity: 1; filter: brightness(100%) contrast(100%);}
}

/* pictures */
.mySlides img {
	height: 100px;
	width: 80px;
	align-self: center;
}

		/* Page Content Area Styles */

	/* Home Content Styles */
/* About Section */
section#About {
	width: 50%;
	background-color: rgb(132, 183, 135);
	padding: 1.5%;
	display: -webkit-flex;
    display: flex;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
	align-items: center;
	flex-wrap: nowrap;
	flex-flow: column nowrap;
	padding-top: 20px;
	padding-bottom: 20px;
}
section#About * {
	color: white;
	text-shadow: -1px 1px 5px black;
	margin: 10px;
	text-align: center;
	font-family: Verdana, Geneva, sans-serif;
}
/* Button for modal Form Styles  */
button#myBtn {
	width: 40%;
	padding: 10px;
	margin: auto;
	margin-bottom: 10px;
	border: 1px solid gray;
	background-color: inherit;
}
button#myBtn:hover, button#myBtn:active {
	background-color: white;
}

/* Pricing Section */
section#homePriceTable {
	width: 100%;
	background-color: white;
	padding: 10px;
}
section#homePriceTable > * {
	width: 50%;
	text-align: center;
	margin: auto;
	border-collapse: collapse;
	font-family: Arial, Verdana, sans-serif;
	padding: 1.5%
}
.hPriceTable * {
	padding: 5px;
}
.hPriceAdmissions {
	width: 35%;
}
.hPricePhantom {
	width: 3%;
}
.hPriceTable td#hPricePhanC div {
	width: 1px;
	height: 370px;
	border-right: 2px solid rgb(183, 183, 183);
	margin: 0px 8px 0px 0px;
}
.hPriceTable {
	width: 100%;
}
.hPriceFood, .hPriceFoodEnd {
	border-bottom: 1px dotted gray;
}

.hPriceDisclaimer {
	font-size: 0.8em;
}
.hPriceTable > thead tr th {
	border-bottom: 3px solid rgb(183, 183, 183);
	color: maroon;
}
section#homePriceTable .normallyHidden {
	display: none;
	width: 90%;
}
section#homePriceTable .priceTiny {
	font-size: 0.8em;
}
section#homePriceTable .normallyHidden h5 {
	margin: 10px;
	font-size: 1em;
}

/* modal Form Styles  */
.modal {
	display: none;
	position: fixed;
	z-index: 100;
	padding-top: 100px;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	overflow: auto;
	background-color: rgb(0,0,0);
	background-color: rgba(0,0,0,0.4);
	font-family: Arial, Verdana, sans-serif;
}
form#popupForm {
	width: 50%;
	margin: auto;
	background-color: rgb(132, 183, 135);

}
form#popupForm legend {
	padding: 5px;
	font-weight: bold;
}
form#popupForm div {
	width: auto;
	text-align: center;
	margin: 20px;
}
form#popupForm div > * {
	width: 40%;
}
form#popupForm fieldset {
	border: none;
}
form#popupForm fieldset * {
	padding: 5px;
	font-weight: bold;
}
/* The Close Button */
.close {
    color: gray;
    float: right;
	font-family: Arial, Verdana, sans-serif;
    font-size: 28px;
    font-weight: bold;
	top: -10px;
	padding-right: 15px;
	padding-top: 5px;
}

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

input.formControl {
	height: 50px;
	width: 200px;
	background: linear-gradient(rgb(112, 178, 110), rgb(170, 202, 199) 60%, rgb(112, 178, 110));
	margin-top: 5%;
	margin-bottom: 5%;
}

input.formControl:hover, input.formControl:active {
	box-shadow: 0px 0px 4px 2px black inset;
}

/* Location Section */
section#Location {
	width: 50%;
	background-color: rgb(132, 183, 135);
	padding: 1.5%;
}
section#Location * {
	color: white;
	text-shadow: -1px 1px 5px black;
	margin: 10px;
	text-align: center;
	line-height: 2;
	font-family: Verdana, Geneva, sans-serif;
}
section#Location iframe {
	margin: 0;
	box-shadow: -3px 3px 10px 1px black;
}
section#Location > h5 {
	margin-bottom: 20px;
}

	/* Movies Content Styles */
/* Main Slide Section */
.mainMovie > div {
	display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
	flex-wrap: nowrap;
	flex-flow: column nowrap;
	width: 50%;
	margin-top: 5px;
	display: none;
	margin: auto;
	background-color: white;
	padding: 1%;
}
.mainMovie > div > * {
	margin: 8px;
	align-self: center;
}
.mainMovie {
	display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
	flex-wrap: nowrap;
	flex-flow: row nowrap;
	margin-top: 5px;
	width: 100%;
	background-color: rgba(0, 0, 0, 0.2);
}
.mainMovie > a {
	font-size: 2em;
	padding: 30px;
}
/* Facebook comments Section */
.fbSection {
	width: 50%;
	background-color: white;
}

	/* Gallery Content Styles */
/* Main Slide Section */
.gallerySection figure.mySlidesM > img {
	width: 100%;
}
.gallerySection figure.mySlidesM > figcaption {
	bottom: 2px;
	margin: auto;
	text-align: center;
	background-color: maroon;
	color: white;
	font-size: 1em;
	font-weight: bolder;
}
.gallerySection figure.mySlidesM {
	width: 50%;
	font-family: Verdana, Geneva, sans-serif;
}
	/* Prices Content Styles */
/* Rental Dropdown */
#rentalDropdown {
	background-color: rgb(122, 173, 135);
	width: 50%;
	padding: 1.5%;
}
section#rentalDropdown * {
	color: white;
	text-shadow: -1px 1px 5px black;
	margin: 10px;
	text-align: center;
	line-height: 2;
	font-family: Verdana, Geneva, sans-serif;
}
#rentalDropdown .PriceDropButton a {
	text-shadow: none;
	background-color: rgba(0, 0, 0, 0.3);
	font-size: 2em;
	text-decoration: none;
	padding: 10px 20px 10px 20px;
	border-radius: 50%;
	transition: 0.6s ease;
}
#rentalDropdown .PriceDropButton a:hover, #rentalDropdown .PriceDropButton a:active {
	background-color: rgba(0, 0, 0, 0.7);
}
#rentalDropdown .PriceDropContent {
	display: none;
	text-align: center;
}
#rentalDropdown .PriceDropShow {
	display: -webkit-flex;
    display: flex;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
	flex-wrap: nowrap;
	flex-flow: column nowrap;
}
.PriceDropContent ul {
	display: table;
	text-align: center;
	width: 60%;
	padding: 0px;
	align-self: center;
}

	/* About Content Styles */
#FAQs {
	text-align: center;
	margin: 0 auto;
	width: 100%;
	background-color: white;
	padding-bottom: 1%;
}
/* FAQs Section */
.faqRow {
	display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
	flex-wrap: nowrap;
	flex-flow: row nowrap;
}
.faqColumn {
	display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
	flex-flow: column nowrap;
	width: 26.5%;
}
.faqQuestion {
	margin: 10px;
	background-color: rgb(132, 183, 135);
	padding: 10px;
	border-radius: 15px;
	font-family: Verdana, Geneva, sans-serif;
	line-height: 2em;
}
/* History Section */
section#History {
	width: 100%;
	text-align: center;
	background: white;
	padding: 10px;
	padding-bottom: 20px;
}
section#History > h2 {
	margin: 10px;
	padding: 10px;
	border-radius: 15px;
	font-family: Verdana, Geneva, sans-serif;
	line-height: 2em;
}
.historyScroll {
	height: 770px;
	overflow: scroll;
}
div.histColumn {
	width: 26.5%;
}
div.histColumn2 {
	height: 400px;
	overflow: scroll;
}
div.histColumn2, div.histColumn3 {
	border: 2px solid black;
}

	/* Schedule Page Styles */
/* Schedule Page Header */
section.cinemaSchedHead {
	margin-bottom: 0px;
}
section.cinemaSchedHead h1 {
	font-size: 2.2em;
}
/* Schedule Section */
section.scheduleSect {
	width: 100%;
	text-align: center;
	background: white;
}
section.scheduleSect h3 {
	font-family: "BenchNine",Verdana, Geneva, sans-serif;
}
div.scheduleWrap {
	width: 50%;
	display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
	flex-flow: row wrap;
	margin: auto;
}
ul.posterList {
	list-style: none;
	padding: 0px;
}
ul.posterList > li {
	padding: 0px;
}
.poster {
	margin: 10px;
}
/* Calendar Section */
iframe.mobileCal {
	display: none;
}

	/* Footer Styles */
footer {
	flex-shrink: 0;
	color: white;
	text-align: center;
	margin-top: 10px;
	width: 100%;
	background: black;
	border-top: 3px outset rgb(132, 183, 135);
}

.footerColumns {
	margin: 10px auto 10px auto;
	width: 80%;
	color: white;
	border-collapse: collapse;
	font-family: Arial, Verdana, sans-serif;
}
.footerColumns a:visited {
	color: rgb(105, 46, 139);
	text-decoration: none;
}

.footerColumns a:active, .footerColumns a:hover, .footerColumns a:link {
	color: rgb(55, 55, 238);
	text-decoration: none;
}
table.footerColumns tbody td {
	padding: 5px;
}

.footerColumnGroup1 {
	border-right: 2px solid gray;
	width: 29%;
}
.footerColumnGroup2 {
	width: 29%;
}
td#socialColumn img {
	width: 10%;
	margin: 5px;
}
.footerColumnGroup3 {
	border-left: 2px solid gray;
	width: 42%;
}

/* Mobile Styles */
@media screen and (max-width: 768px) {
	div.phantomFootCover {
		height: 450px;
	}
	body {
		background: none;
	}
/* Fix header */
	header {
		background-size: cover;
		animation: none;
	}
	header > img#logoMain {
		width: 60%;
	}
/*collapse and and navicon to nav bar */
	nav > ul {
		display: none;
	}
	nav > button.mobileChange {
		display: block;
		border: none;
		width: 20%;
		background-color: rgb(132, 183, 135);
		margin: 2px;
		margin-right: 80%;
	}

	nav {
		background-color: rgb(132, 183, 135);
		flex-wrap: wrap;
	}

	.navActive {
		display: -webkit-flex;
	    display: flex;
	    -webkit-justify-content: flex-start;
	    justify-content: flex-start;
		flex-wrap: nowrap;
		flex-flow: column nowrap;
		width: 100%;
		padding-top: 20px;
		padding-bottom: 40px;
	}
	.navActive a {
		padding: 7%;
		font-size: 1.4em;
		width: 85%;
		margin: auto;
	}
	.navActive ul, .navActive > li {
		margin: 0 auto;
		width: 45%;
		align-self: center;
		text-align: center;
	}
	.navActive ul {
		display: block;
		position: relative;
		bottom: 0px;
		padding: 0px;
	}
	.navActive ul a {
		width: 90%;
	}
	.navActive ul, .navActive ul * {
		text-align: center;
		margin: 0 auto;
		width: 100%;
		padding-top: 2px;
		padding-bottom: 2px;
		font-style: italic;
		font-size: 1em;
	}
	.fix {

	}

/* Movie slide banner */
.movieBannerWrapper {
	background-color: rgba(94, 94, 94, 0.6);
}

/* Reorder Footer */
	.footerColumnGroup1, .footerColumnGroup2, .footerColumnGroup3 {
		border: none;
		width: 100%;
	}
	footer thead th {
        display: none;
    }

    footer td {
        display: block;
    }

    footer.footerColumns td[data-th]:before  {
        content: attr(data-th);
		display: block;
		font-weight: bold;
    }

/* Home content */
	.hPriceTableWrapper {
		display: none;
	}
	section#homePriceTable div.normallyHidden {
		display: block;
	}
	section#homePriceTable h4 {
		width: 98%;
	}
	section#About {
		width: 100%;
		margin: 0;
	}
	section#homePriceLoca, section#Location {
		width: 100%;
		margin: 0;
	}
/* Movie Page Content */
	.mainMovie > div.mySlidesM {
		width: 100%;
	}
	.mainMovie > a {
		position: absolute;
		top: 70%;
		z-index: 99;
		padding: 10px;
		color: black;
	}
	.fbSection {
		width: 100%;
	}
/* Gallery Page Content */
	.gallerySection > a {
		top: 50%;
		text-shadow: 0px 0px 5px white;
	}
/* Prices Page Content */
	section#rentalDropdown {
		width: 100%;
	}
/* About Page Content */
	div.faqRow {
		flex-flow: column nowrap;
	}
	div.faqColumn {
		width: 100%;
	}
/* Schedule Page Content */
	iframe.desktopCal {
		display: none;
	}
	iframe.mobileCal {
		display: block;
	}
}
