/*Import Fonts*/
@import url('https://fonts.googleapis.com/css2?family=Rye&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Indie+Flower&display=swap');

/* Reset */
* { -moz-box-sizing: border-box; -webkit-box-sizing: border-box; box-sizing: border-box; }

@-ms-viewport { width: device-width; }

html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video { margin: 0; padding: 0; border: 0; font: inherit; font-size: 100%; vertical-align: baseline; }

audio, canvas, video { display: inline-block; *display: inline; *zoom: 1; }

audio:not([controls]) { display: none; height: 0; }

[hidden] { display: none; }

html { line-height: 1; font-size: 100%; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; -webkit-font-smoothing: antialiased; -webkit-text-size-adjust: 100%; }

ol, ul { list-style: none; }

ul ul { font-size: 100%; }

table { border-collapse: separate; border-spacing: 0; }

caption, th, td { font-weight: normal; vertical-align: middle; }

q, blockquote { quotes: none; }

blockquote:before, blockquote:after, q:before, q:after { content: ""; content: none; }

img, a img { border: none; -ms-interpolation-mode: bicubic; }

svg:not(:root) { overflow: hidden; }

article, aside, details, figcaption, figure, footer, header, hgroup, main, nav, section, summary { display: block; }

.clear { clear: both; }

/* BODY */
body {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 16px;
	color: black;
	margin-top: 2.75em;
	margin-bottom: 60px;
	height: 100vh;
	display: flex;
	flex-wrap: wrap;
	background-image: url("../images/background-wood.png");
	background-color: rgb(128,128,128);
	background-size: 100%, auto;
	background-attachment: scroll;
}

/* HEADER */
header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 10;
	text-align: center;
}
.center {
	text-align: center;
}

/* LOGO and NAVIGATION */
.titleContainer {
	max-width: 191px;
	float: left;
}
.titleLogo {
	position: absolute;
 	left: 0px;
  	top: 0px;
  	z-index: 11;
}
nav {
	width: 100%;
	height: 2.25em;
	font-weight: bold;
	padding-top: 4px;
	padding: 0 4px;
	color: rgb(255, 255, 255);
	background-image: linear-gradient(rgb(0, 0, 0), rgb(100, 50, 0), rgb(100, 50, 0), rgb(100, 50, 0), rgb(0, 0, 0));
}
.navigationContainer ul {
	height: 2.25em;
	padding: .5em 0;
	position: relative;
	float: right;
}
.navigationContainer li {
	color: white ;
	border-right-style: solid;
	border-right-color: white;
	border-right-width: 2px;
	display: inline;
	padding: 4px;
	font-size:1.25em;
}
.navigationContainer li a {
	color: white !important;
}
.navigationContainer li:last-child {
	color: white;
	border-right-style: none;
	display: inline;
	padding: 4px;
}
.intro {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	margin: 10px 10px 10px 197px;
	padding: 8px;
	background-image: url("../images/background-parchment.png");
	background-color: rgb(237,221,174);
	background-repeat: no-repeat;
	background-size: 100%;
	border-radius: 10px;
	border: outset rgb(100, 50, 0);
	border-width: 4px;
	font-size: 1.75em;
	font-family: 'Indie Flower', cursive;
	align-items: center;
}
.introMission p {
	text-align: center;
}

/* MAIN */
.mainBody {
	width: 100%;
	padding: 4px;
	margin-top: 115px;
	margin-bottom: 5em;
}
.mainBody p {
	width: 100%;
	padding-bottom: 1em;
}

/*SECTIONS*/
.poster {
	display: flex;
	flex-direction: column;
	flex-wrap: nowrap;
}
.sectionTop {
	background-image: url("../images/background-poster_top.png");
	background-size: 100%;
	background-repeat: no-repeat;
	width: 100%;
	height: 0;
	padding-top: 22.33%;
	max-height: 176px;
	position: relative;
}
.sectionTopTitle{
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	margin-top: 8%;
	text-align: center;
	display: flex;
	flex-direction: column;
	flex-wrap: nowrap;
	justify-content: center;
	align-items: center;
	padding-left: 20px;
	padding-right: 20px;
}
.sectionMiddle {
 	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	align-items: stretch;
}
.sectionMiddleLeft {
	background-image: url("../images/background-poster_left.png");
	background-repeat: repeat-y;
	background-size: 100%;
	width: 62px;
	height: auto;
}
.sectionMiddleCenter {
	background-image: url("../images/background-poster_middle.png");
	background-repeat: repeat-y;
	background-size: 100%;
	width: 652px;
	height: auto;
}
.sectionMiddleCenter iframe{
	border: outset rgb(100, 50, 0);
	border-width: 4px;
	border-radius: 10px;
}
.sectionMiddleRight {
	background-image: url("../images/background-poster_right.png");
	background-repeat: repeat-y;
	background-size: 100%;
	width: 74px;
	height: auto;
}
.sectionBottom {
	background-image: url("../images/background-poster_bottom.png");
	background-repeat: no-repeat;
	background-size: 100%;
	height: 94px;
}

/*MAIN PAGE - AGENDA*/
.mainContainer {
	width: 100%;
	padding: 4px;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: space-evenly;
	align-items: stretch !important;
}
.container {
	width: 10em;
	height: 5em;
	padding: 4px;
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 4px;
	border: 2px solid rgb(100, 50, 0);
	border-radius: 10px;
}
.container h3 {
	margin-top: 0 !important;
	padding-top: 0 !important;
	text-align: center;
}

.containerFood {
	width: 10em;
	height: 5em;
	padding: 4px;
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 4px;
	border: 2px solid rgb(100, 50, 0);
	border-radius: 10px;
	background-color: rgba(255, 255, 255, 0.5);
	opacity: 1;
}
.containerFood h3 {
	margin-top: 0 !important;
	padding-top: 0 !important;
	text-align: center;
}

.containerCooperation {
	width: 18em;
	min-height: 5em;
	height: 12em;
	padding: 4px;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	margin: 4px;
	border: 2px solid rgb(100, 50, 0);
	border-radius: 10px;
}
.event {
	padding-left: 2em;
	display: flex;
	flex-wrap: wrap;
	margin-top: 5px;
	margin-bottom: 5px;
	justify-content: space-between;
}
.event p {
	padding-bottom: .5em;
	padding-left: 1em;
}
.eventPhoto {
	border: outset rgb(100, 50, 0);
	border-width: 4px;
	border-radius: 10px;
}
.date {
	font-family: 'Rye', cursive;
	margin-bottom: .5em;
}
.time{
	text-align: left;
	font-weight: bold;
	color: rgb(100, 50, 0);
}
.location {
	text-align: right;
	font-weight: bold;
	color: rgb(100, 50, 0);
}
.description {
	width: 100%;
	padding-left: 2em;
}

.description img {
	border: outset rgb(100, 50, 0);
	border-width: 4px;
	border-radius: 10px;
	width: 30%;
	margin-left: 10px;
	margin-right: 10px;
	margin-top: 0px;
	margin-bottom: 10px;
	height: auto;
}

/*ACCOMMODATIONS*/
.containerAccommodations {
	width: 18em;
	min-height: 5em;
	height: 8em;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	margin: 4px;
	border: 2px solid rgb(100, 50, 0);
	border-radius: 10px;
}
.containerAccommodations h3 {
	text-align: center;
	padding-bottom: 4px;
}
.containerAccommodations p {
	padding-top: 0px;
	padding-bottom: 0px;
	align-self: center;
	text-align: center;
}
.containerAccommodationsHighlight {
	border: 4px solid rgb(100, 50, 0);
	background-color: rgba(255, 255, 255, 0.5);
	opacity: 1;
}

/*HEADLINER BIOGRAPHY */
.containerBiography {
	width: 100%;
	padding: 4px;
	display: flex;
	flex-direction: row;
	flex-wrap: none;
	justify-content: space-evenly;
	align-items: stretch !important;
}
.containerBiography img{
	border: outset rgb(100, 50, 0);
	border-width: 4px;
	border-radius: 10px;
	width: 30%;
	margin-left: 10px;
	margin-right: 10px;
	margin-top: 0px;
	margin-bottom: 10px;
	height: auto;
}

/*CONTACT*/
.contactBioInfoLabel{
	width: 20%;
}
.contactBioInfoSpace {
	width: 10%;
	text-align:center;
}
.contactBioInfoSpace img {
	color: rgb(100, 50, 0);
	filter: invert(100%);
	width:60%;
}
.contactBioInfoData {
	width: 70%;
}
.contactContainer {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	padding: 0 4px;
}
.contactSocialContainer {
	width: 50%;
}
.facebook {
	width: 3em;
	height: 3em;
	margin-right: 8px;
	background-color: rgb(60, 90, 153);
	border-radius: 10px;
}

/*FOOTER*/
.footerContainer {
	width: 100%;
	height: 50px;
	background-image: linear-gradient(rgb(0, 0, 0), rgb(100, 50, 0), rgb(100, 50, 0), rgb(100, 50, 0), rgb(0, 0, 0));
	padding: 4px;
	position: fixed;
	bottom: 0;
	left: 0;
	display:flex;
	z-index: 10;
}
.socialMedia {
	text-align:left;
	padding: 4px;
	width: 45%;
}
.socialMedia img {
	height: 30px;
	width: 30px;
}
.copyright {
	width: 55%;
	padding: 1em;
	color: white;
	text-align:right;
	font-size: .8em;
}

/*GENERAL TAGS*/
img, embed, object, video {
	max-width: 100% !important;
}
h1 {
	font-family: 'Rye', cursive;
	font-size: 1.5em;
	font-weight: bold;
	margin-top: 8px;
	padding-top: 4px;
}
h2 {
	font-size: 1.25em;
	color: black;
	border-top: 4px solid rgb(100, 50, 0);
	margin-top: 8px;
	padding-top: 4px;
}
h3 {
	font-size: 1em;
	font-weight: bold;
}
h4 {
	font-size: 1em;
	font-style: italic;
	padding-top: 4px;
}
.color {
	color: rgb(100, 50, 0);
}
a, button {
	min-height: 48px;
	min-width: 48px;
}
a:link {
	text-decoration: none;
	color: inherit;
}
a:visited {
	text-decoration: none;
	color: inherit;
}
a:hover {
	text-decoration: underline;
}
a:active {
	text-decoration: none;
}
.removeTopMargin {
	margin-top: 0px !important;
}
.removeBottomMargin {
	margin-bottom: 0px !important;
}
.rightAlign {
	text-align:right;
}
.topAlign {
	vertical-align:top;
}
.textBold {
	font-weight: bold;
}
.hidden {
	display:none;
}

/*MOBILE DEVICE RESIZE*/
/* Mobile - M+ */
@media screen and (max-width: 599px) {
	body {
		font-size: .7em;
	}
	.navigationContainer li {
		font-size:1em;
	}
	.titleLogo {
		width: 131px;
		height: auto;
	}
	.intro {
		margin-left: 139px;
		font-size: 1em;
	}
	.mainBody {
		margin-top: 80px;
	}
}
/* Mobile - S */
@media screen and (max-width: 350px) {
	.titleLogo {
		width: 85px;
		height: auto;
	}
	.intro {
		margin-left: 93px;
		padding: 6px;
		font-size: .8em;
	}
	.mainBody {
		margin-top: 50px;
	}
	h1{
		font-size: .8em;
	}
}
/* Tablet */
@media screen and (min-width: 600px) {

	.footerContainer {
		height: 55px;
	}
	.intro {
		margin-left: 197px;
		font-size: 1em;
	}
}
@media screen and (max-width: 725px) {
	h1 {
		font-size: 1.25em;
	}
}
/* Laptop */
@media screen and (min-width: 800px) {
	body {
		width: 800px;
		margin-left: auto;
		margin-right: auto;
	}
	.intro {
		font-size: 1.5em;
	}
}