@charset "utf-8";
/* CSS Document ~ CulphoMusic */

*, *::before, *::after {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: Arial, Helvetica, sans-serif;
	animation: fadeInAnimation 2s ease forwards;
}

@keyframes fadeInAnimation {
	0% { opacity: 0; }
	100% { opacity: 1; }
}

.wrapper {
	max-width: 900px;
	margin: auto;
	padding: 0.5%;
}
/* ======== Header/Menu Section ======== */
.header {
	width: 100%;
	height: 145px;
	border: 1px solid #004040;
	padding: 0.5%;
	position: relative;
}

.centered {
	position: absolute;
	left: 3%;
	top: 50%;
	transform: translateY(-50%);
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	font-size: 48px;
	text-shadow: 2px 4px 4px #aaaaaa;
}

.logo img {
	float: right;
	margin: 2px 1%;
	opacity: 0.7;
	max-height: 100%;
}

.navcontainer {
	margin-top: 105px;
	width: 100%;
	height: 40px;
}

.topnav {
	overflow: hidden;
	background-color: #fff;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}

.topnav a {
	font-family: "Arial Black";
	color: #004040;
	text-align: center;
	text-shadow: 2px 4px 4px #aaaaaa;
	padding: 4px 10px;
	text-decoration: none;
	font-size: 14px;
}

.topnav a:not(:first-child) {
	border-left: 2px solid #004040;
}

.topnav a:hover {
	background-color: #f9f9f9;
	color: black;
	text-shadow: none;
	transition: background-color 0.3s ease, color 0.3s ease;
}

.topnav a.active {
	background-color: #04AA6D;
	color: white;
}

.topnav .icon {
	display: none;
	font-size: 20px;
	cursor: pointer;
}

/* ======== Content Section ======== */
.row {
	padding: 5px;
	border-bottom: 1px solid #004040;
	margin-bottom: 3px;
	display: flex;
	flex-wrap: wrap;
}

.column {
	width: 100%;
	padding: 5px;
}

.column img {
	display: block;
	margin: auto;
	max-width: 100%;
	height: auto;
	box-shadow: 5px 5px 5px #888888;
}

.footer {
	padding: 2px;
	font-size: 10px;
	font-style: italic;
	text-align: center;
	opacity: 0.5;
}

.date {
	font-size: 20px;
	font-style: italic;
	font-weight: bold;
}

.event {
	font-size: 22px;
	font-weight: bold;
	margin-left: 20px;
}

.tickets {
	font-size: 16px;
	font-style: italic;
	color: #393;
	font-weight: bold;
}

.bookBTN {
	float: right;
	width: 100px;
	padding: 4px 9px;
	background-color: #004040;
	box-shadow: 5px 5px 5px #888888;
	text-align: center;
	font-style: italic;
	color: white;
	text-decoration: none;
	font-size: 16px;
}
.bookBTN a {
	color:white;
	text-decoration: none;
}
.bookBTN:hover {
	background-color: #008d8d;
}
/* ======== Debug Section ======== */
/*
.wrapper, .header, .navcontainer, .topnav, .row, .column {
	border: 1px solid red;
	padding: 5px;
}
*/
/* ======== Responsive Section ======== */
@media screen and (max-width: 600px) {
	.topnav a {
		display: none;
	}

	.topnav .icon {
		display: block;
	}

	.topnav.responsive a {
		display: block;
		width: 100%;
		border: none;
	}

	.topnav.responsive {
		flex-direction: column;
		align-items: flex-start;
	}
}

.videoWrapper {
	position: relative;
	padding-bottom: 56.25%;
	padding-top: 25px;
	height: 0;
}

.videoWrapper iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}