/* Fonts */

@font-face {
	/* Übertitel (z.B. im Banner) */
	font-family: 'etharnig-title';
	src: url('../fonts/Etharnig/Etharnigno12-Roeo.otf') format('opentype');
}

@font-face {
	/* Navigation, Copyright im Footer */
	font-family: 'etharnig';
	src: url('../fonts/Etharnig/Etharnigsc-Bo93.otf') format('opentype');
}

@font-face {
	/* Textschrift */
	font-family: 'timeburner';
	src: url('../fonts/Timeburner/Timeburner-xJB8.ttf') format('truetype');
}

@font-face {
	/* Linkbuttons, Contact & Impressum im Footer */
	font-family: 'timeburner-bold';
	src: url('../fonts/Timeburner/TimeburnerBold-peGR.ttf') format('truetype');
}



/* Titelformatierung */

h1 {
	text-decoration: none;
	font-family: etharnig-title, sans-serif;
	font-size: 30pt;
	margin-top: 0;
	margin-bottom: 30px;
	margin-top: 5px;
}



/* html (für alle Seiten) */

html {
	height: 100%;
	width: 100%;
	background-color: #000000;
}



/* Body (für alle Seiten) */

body {
	margin: 0;
	min-height: 100%;
	display: flex;
	flex-direction: column;
}



/* Header (für alle Seiten) */

header {
	width: 100%;
	height: 180px;
}



/* Logos über der Navigation (für alle Seiten) */

.over_nav {
	display: flex;
	width: 100%;
	flex-direction: row;
}

.over_nav_links {
	display: flex;
	flex: 1;
}

.over_nav_href {
	text-decoration: none;
}

.logo_links_icon {
	display: block;
	width: 80px;
	height: 80px;
	margin-top: 10px;
	margin-left: 10px;
}

.over_nav_mitte {
	display: flex;
	flex: 1;
	justify-content: center;
}

.over_nav_mitte_text {
	display: flex;
	align-items: center;
	margin: 0;
	font-size: 50pt;
	font-family: etharnig, sans-serif;
	text-decoration: none;
	color: #FFC000;
	margin-top: 20px;
}

.over_nav_rechts {
	flex: 1;
}



/* Navigation (für alle Seiten) */

nav ul {
	list-style: none;
	padding: 0;
	display: flex;
	margin: 0;
}

nav ul li {
	flex: 1;
	transition: 0.5s;
	position: relative;
	border-radius: 15px;
	border-width: 2px;
	border-color: transparent;
	cursor: pointer;
}

nav ul li:hover {
	background-color: #FFC000;
	transition: border-color .3s ease-in,background-color .3s ease-in;
}

nav ul li a {
	width: 100%;
	display: block;
	text-align: center;
	color: #FFC000;
	transition: color .3s ease-out;
	text-decoration: none;
	font-family: etharnig, sans-serif;
	font-size: 16pt;
	line-height: 75px;
	cursor: pointer;
}

nav > ul > li > a:hover {
	color: #000000;
	transition: color .3s ease-out;
}



/* Banner unter der Navigation (NUR für Home-Seite) */

.banner_home {
	width: 100%;
	background-image: url('../img/banner.png');
	background-size: cover;
	background-repeat: no-repeat;
	background-attachment: scroll;
	background-position-x: center;
	background-position-y: center;
	height: 480px;
}


/* Banner unter der Navigation (für alle anderen Seiten) */

.banner {
	width: 100%;
	background-image: url('../img/banner.png');
	background-size: cover;
	background-repeat: no-repeat;
	background-attachment: scroll;
	background-position-x: center;
	background-position-y: center;
	height: 480px;
	display: flex;
	align-items: center;
}

.banner_textfeld {
	display: flex;
	flex-direction: column;
	max-height: 250px;
	max-width: 600px;
	margin-left: 100px;
	padding-top: 20px;
	padding-bottom: 20px;
	padding-left: 25px;
	padding-right: 25px;
	background-color: rgba(0, 0, 0, 0.7);
	border: solid 5px rgba(0, 0, 0, 0.8);
	border-radius: 30px;
	color: #ffffff;
}

.banner_text {
	font-size: 12pt;
	font-family: timeburner, sans-serif;
	width: 100%;
	margin: 5px 0px;
}



/* main (für alle Seiten) */

main {
	display: flex;
}



/* main_gesamt für Seiten, welche die 
article in einer Reihe (nebeneinander) 
haben, z.B. Home - row */

.main_gesamt_row {
	width: 100%;
	margin-top: 100px;
	display: flex;
	font-size: 12pt;
	font-family: timeburner, sans-serif;
	flex-direction: row;
	justify-content: space-evenly;
}



/* main_gesamt für Seiten, welche die 
article in einer Säule (übereinander) 
haben, z.B. Shops - column */

.main_gesamt_column {
	width: 100%;
	margin-top: 100px;
	display: flex;
	font-size: 12pt;
	font-family: timeburner, sans-serif;
	flex-direction: column;
	justify-content: space-evenly;
}



/* main_gesamt für Seiten, welche die 
article in einer Säule (übereinander) 
und ein kleineres margin haben, 
about, contact & impressum - column */

.main_gesamt_column_smallmargin {
	width: 100%;
	margin-top: 50px;
	display: flex;
	font-size: 12pt;
	font-family: timeburner, sans-serif;
	flex-direction: column;
	justify-content: space-evenly;
}



/* article im main */

.article {
	display: flex;
	flex-direction: column;
}

.article_shops {
	display: flex;
	flex-direction: row;
	justify-content: center;
}

.picture {
	width: 400px;
	border-radius: 30px;
}

.article_left {
	display: flex;
	flex-direction: column;
	margin-right: 30px;
}

.article_right {
	display: flex;
	margin-left: 30px;
}

.article_right_platzhalter {
	display: flex;
	width: 400px;
	height: 400px;
}

.article_right_text {
	max-width: 400px;
	max-height: 400px;
	display: flex;
	color: #ffffff;
	align-items: center;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.article_right_text > p {
	width: 100%;
}


/* link button unter den Bildern */

.link_button {
	width: 100%;
	display: flex;
	justify-content: center;
}

.link_button_icon {
	display: inline-block;
	border-style: solid;
	border-radius: 10px;
	border-width: 2px;
	color: #FFC000;
	text-decoration: none;
	border-color: #FFC000;
	transition: border-color .3s ease-out,color .3s ease-out,background-color .3s ease-out;
	width: 100px;
	text-align: center;
	padding-right: 35px;
	padding-left: 35px;
	padding-top: 19px;
	padding-bottom: 18px;
	margin-top: 30px;
	margin-bottom: 100px;
	font-family: timeburner-bold, sans-serif;
	cursor: pointer;
}

.link_button_icon:hover {
	color: #000000;
	background-color: #FFC000;
	border-color: transparent;
	transition: border-color .3s ease-in,color .3s ease-in,background-color .3s ease-in;
}



/* article in den About, Contact & Impressum Seiten */

.ab-co-im_title {
	display: flex;
	width: 100%;
	justify-content: center;
	color: #FFC000;
	font-family: etharnig-title, sans-serif;
	font-size: 37.5pt;
}

.ab-co-im_title > p {
	margin-top: 0;
}

.ab-co-im_title_2 {
	display: none;
	flex-direction: column;
	width: 100%;
	justify-content: center;
	color: #FFC000;
	font-family: etharnig-title, sans-serif;
	font-size: 37.5pt;
}

.ab-co-im_title_2 > p {
	text-align: center;
}

.ab-co-im_title_2-oben {
	margin: 0;
}

.ab-co-im_title_2-unten {
	margin-top: 0;
}

.ab-im_textfeld {
	display: flex;
	width: 100%;
	justify-content: center;
	color: #FFC000;
}

.ab-im_text {
	display: flex;
	width: 100%;
	justify-content: center;
	flex-direction: column;
	border: 2px solid #FFC000;
	border-radius: 30px;
	padding: 30px;
	margin-top: 0;
	margin-bottom: 40px;
	margin-left: 20%;
	margin-right: 20%;
}

.im_text {
	text-align: center;
}

.ab-im_text > p {
	margin: 10px;
}

.ab_signatur {
	font-family: etharnig, sans-serif;
	font-size: 16pt;
}

.contact_textfeld {
	display: flex;
	width: 100%;
	justify-content: center;
	color: #FFC000;
	margin-bottom: 50px;
}

.contact_text_oleft {
	display: flex;
	max-width: 615px;
}

.contact_text {
	display: flex;
	width: 450px;
	height: 450px;
	flex-direction: column;
	border: 2px solid #FFC000;
	border-radius: 30px;
	padding: 30px;
	margin-top: 0;
	margin-bottom: 40px;
	margin-left: 50px;
	margin-right: 50px;
	text-align: center;
}

.contact_text > p {
	margin: 10px;
}

.co-im_ueberschrift {
	font-family: etharnig, sans-serif;
	font-size: 25pt;
}

.co-im_block {
	display: flex;
	flex-direction: column;
}

.im_link > a {
	color: #FFC000;
	text-decoration: none;
	transition: 0.2s;
	opacity: 1;
}

.im_link > a:hover {
	transition: 0.2s;
	opacity: 0.5;
}

.w3c_valide {
	border: none;
	width: 88px;
	height: 31px;
}

.contact_text_oright {
	display: flex;
	max-width: 615px;
}

.map {
	display: flex;
	width: 510px;
	height: 510px;
	justify-content: center;
	border: 2px transparent;
	border-radius: 30px;
	padding: 0;
	margin-top: 0;
	margin-bottom: 40px;
	margin-left: 50px;
	margin-right: 50px;
}

.map_iframe {
	width: 100%;
	height: 100%;
	margin: 0;
	border: 2px solid #FFC000;
	border-radius: 30px;
}

.contact_undertitle {
	display: flex;
	width: 100%;
	justify-content: center;
	color: #ffffff;
	font-family: timeburner, sans-serif;
	font-size: 15pt;
	text-align: center;
	line-height: 1.6;
}

.contact_undertitle > p {
	max-width: 60%;
}



/* Kontaktformular (NUR für Contact Seite) */

.kontaktformular {
	display: flex;
	width: 100%;
	justify-content: center;
	margin-bottom: 40px;
}

form {
	display: flex;
	flex-direction: column;
	width: 70%;
	margin: 0;
}

select {
	margin-top: 3%;
	height: 50px;
	padding: 1%;
	font-family: timeburner, sans-serif;
	font-size: 12pt;
	border: 2px solid #FFC000;
	border-radius: 10px;
	background-color: transparent;
	color: #FFC000;
	cursor: pointer;
}

select > option {
	background-color: #000000;
}

input {
	height: 30px;
	background-color: transparent;
	color: #ffffff;
	border: 2px solid #FFC000;
	margin-top: 3%;
	padding: 1%;
	border-radius: 10px;
	opacity: 1;
	font-family: timeburner, sans-serif;
	font-size: 12pt;
}

::placeholder {
	color: #FFC000; 
}

textarea {
	height: 80px;
	margin-top: 3%;
	background-color: transparent;
	border: 2px solid #FFC000;
	padding: 2%;
	border-radius: 10px;
	color: #ffffff; 
	opacity: 1;
	font-family: timeburner, sans-serif;
	font-size: 12pt;
	resize: vertical;
}

.submitbutton {
	  width: 100%;
	  display: flex;
	  justify-content: center;  
}

.submitbutton_icon {
	background-color: transparent;
	color: #FFC000;
	border: 2px solid #FFC000;
	font-family: timeburner-bold, sans-serif;
	transition: border-color .3s ease-out,color .3s ease-out,background-color .3s ease-out;
	cursor: pointer;
	width: 170px;
	height: 58px;
	padding-right: 35px;
	padding-left: 35px;
	padding-top: 19px;
	padding-bottom: 18px;
	margin-top: 3%;
	margin-bottom: 0;
}

.submitbutton_icon:hover {
	color: #000000;
	background-color: #FFC000;
	border-color: transparent;
	transition: border-color .3s ease-in,color .3s ease-in,background-color .3s ease-in;
}



/* Footer (für alle Seiten) */

footer {
	height: 200px;
	background-color: #BABABA;
	border-top: 2px solid #FFC000;
	display: flex;
	align-items: center;
	flex-direction: column;
}

.footer_oben {
	width: 100%;
	display: flex;
	flex: 4;
	justify-content: space-between;
	align-items: flex-end;
}

.footer_olinks {
	font-size: 15pt;
	font-family: timeburner-bold, sans-serif;
	margin-left: 65px;
	display: flex;
	flex-direction: column;
}

.footer_olinks > a {
	color: #000000;
	text-decoration: none;
}

.footer_olinks_contact {
	margin-bottom: 10px;
	transition: 0.2s;
	opacity: 1;
}

.footer_olinks_contact:hover {
	transition: 0.2s;
	opacity: 0.5;
}

.footer_olinks_impressum {
	margin-top: 10px;
	transition: 0.2s;
	opacity: 1;
}

.footer_olinks_impressum:hover {
	transition: 0.2s;
	opacity: 0.5;}

.footer_orechts {
	margin-right: 50px;
	display: flex;
	flex-direction: row;
}

.social-button {
	width: 50px;
	height: 50px;
	color: #FFC000;
	text-decoration: none;
	margin: 0 15px;
	border-radius: 50%;
	border-style: solid;
	cursor: pointer;
}

.social-button:hover {
	transform: scale(1.1);
}

.social-button:hover > .fb {
	background-color: #3B5998;
}

.social-button:hover > .ig {
	background: #f09433; 
	background: -moz-linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); 
	background: -webkit-linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%); 
	background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%); 
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f09433', endColorstr='#bc1888',GradientType=1 );
}

.social-button:hover > .tw {
	background-color:#1da1f2;
}

.social-button_icon {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background-color: #ffffff;
}

.footer_unten {
	width: 100%;
	display: flex;
	flex: 2;
	font-size: 12pt;
	font-family: etharnig, sans-serif;
	align-items: center;
	justify-content: center;
}

.copyright {
	margin: 0;
}



/* Responsive */

@media screen and (max-width: 1220px) {

	.contact_text {
		width: 350px;
		height: 350px;
	}

	.map {
		width: 410px;
		height: 410px;
	}

}

@media screen and (max-width: 1040px) {

	.contact_textfeld {
		flex-direction: column;
		align-items: center;
	}

}

@media screen and (max-width: 900px) {

	h1 {
		font-size: 22pt;
		margin-bottom: 15px;
	}
	
	header {
		height: 406px;
	}

	.over_nav_links {
		display: none;
	}

	.over_nav_rechts {
		display: none;
	}

	nav ul {
		flex-direction: column;
	}

	nav > ul > li:first-child + li + li {
		display: none;
	}

	nav > ul > li:first-child + li + li + li {
		display: none;
	}

	.banner_home {
		height: 300px;
	}

	.banner {
		height: 300px;
		justify-content: center;
	}

	.banner_textfeld {
		max-height: 280px;
		max-width: 500px;
		margin: 0;
	}

	.banner_text {
		font-size: 10pt;

	}

	.main_gesamt_row {
		flex-direction: column;
	}

	.article {
		align-items: center;
	}

	.article_shops {
		flex-direction: column;
		align-items: center;
	}

	.article_left {
		margin-right: 0;
	}

	.article_right {
		margin-left: 0;
	}

	.article_right_platzhalter {
		width: 400px;
		height: 300px;
	}

	.article_right_text {
		justify-content: flex-start;
		text-align: center;
	}
	
	.link_button_icon {
		margin-bottom: 50px;
	}

	.ab-im_text {
		margin-left: 15%;
		margin-right: 15%;
	}

}

@media screen and (max-width: 750px) {

	.banner_home {
		height: 200px;
	}

	.banner {
		height: 200px;
	}

	.banner_textfeld {
		display: none;
	}

	form {
		width: 80%;
	}

}

@media screen and (max-width: 600px) {

	.main_gesamt_row {
		font-size: 10pt;
	}

	.main_gesamt_column {
		margin-top: 50px;
	}

	.picture {
		width: 300px;
	}

	.article_right_platzhalter {
		display: none;
	}

	.link_button_icon {
		margin-bottom: 80px;
	}

	.ab-co-im_title {
		display: none;
	}

	.ab-co-im_title_2 {
		display: flex;
	}	

	.ab-im_text {
		padding: 15px;
		margin-left: 10%;
		margin-right: 10%;
	}

	.contact_text {
		width: 250px;
		height: 250px;
	}

	.map {
		width: 310px;
		height: 310px;
	}

	footer {
		height: 260px;
	}

	.footer_oben {
		flex-direction: column;
		justify-content: center;
		align-items: center;
	}

	.footer_olinks {
		width: 100%;
		margin-left: 0px;
		margin-top: 20px;
		margin-bottom: 20px;
	}

	.footer_olinks_contact {
		text-align: center;
	}

	.footer_olinks_impressum {
		text-align: center;
	}

	.footer_orechts {
		margin-right: 0;
		margin-top: 10px;
		margin-bottom: 0px;
	}

}

@media screen and (max-width: 450px) {

	header {
		height: 392px;
	}

	.over_nav_mitte_text {
		font-size: 40pt;
	}

	.contact_text {
		width: 250px;
		height: 250px;
		margin-right: 25px;
		margin-left: 25px;
	}

	.contact_text_oright {
		display: none;
	}

}

@media screen and (max-width: 370px) {

	.over_nav_mitte_text {
		font-size: 30pt;
	}

	.contact_text {
		padding: 15px;
		margin-left: 15px;
		margin-right: 15px;
		width: 200px;
		height: 200px;	
	}

}