﻿/*Farben: Rot=#8B0000, Grün=#4e6b1d, Gold=#FFD700, Dunkelgold=#8B6508, Blau=#4169E1, Orange=#FF7F24*/
/*text-shadow: black 3px 2px 4px;*/ /*text-decoration: underline;*/

/*Hauptüberschrift*/
p.hu {
	font-family: arial, verdana, sans-serif;
	font-size: 30px;
	font-weight: bold;
	color: black;
	text-align: center;
	text-decoration: underline;
	}

/*Überschrift Groß Mitte*/
p.u1 {
	font-family: arial, verdana, sans-serif;
	font-size: 22px;
	font-weight: bold;
	color: #FF7F24;
	text-align: center;
	text-decoration: underline;
	}

/*Überschrift Klein Mitte*/	
p.u2 {
	font-family: arial, verdana, sans-serif;
	font-size: 20px;
	font-weight: bold;
	color: #FF7F24;
	text-align: left;
	text-decoration: underline;
	}	

/*Überschrift Links*/	
p.u3 {
	font-family: arial, verdana, sans-serif;
	font-size: 20px;
	font-weight: bold;
	color: #FF7F24;
	text-align: left;
	text-decoration: underline;
	}
	
/*Überschrift Super Groß Mitte*/	
p.u4 {
	font-family: arial, verdana, sans-serif;
	font-size: 40px;
	font-weight: bold;
	color: #8B0000;
	text-align: center;
	text-decoration: underline;
	}	

/*Schrift Normal*/
p.s1 {
	font-family: arial, verdana, sans-serif;
	font-size: 18px;
	color: #FFD700;
	text-align: justify;
	}

/*Schrift Fett*/
p.s2 {
	font-family: arial, verdana, sans-serif;
	font-size: 24px;
	font-weight: bold;
	color: #FFD700;
	text-align: center;
	}
	
/*Schrift Fett - Checken ob diese Schrift notwendig ist!*/
p.s2_rot {
	font-family: arial, verdana, sans-serif;
	font-size: 18px;
	font-weight: bold;
	color: white;
	text-align: justify;
	}

/*Schrift Fett & Unterstrichen*/
p.s3 {
	font-family: arial, verdana, sans-serif;
	font-size: 18px;
	font-weight: bold;
	color: #FFD700;
	text-align: justify;
	text-decoration: underline;
	}

/*Schrift Aufzählung*/
p.s4 {
	font-family: arial, verdana, sans-serif;
	font-size: 16px;
	color: #FFD700;
	text-align: left;
	padding-left: 1.5em;
	}

/*Schrift Fett*/
p.s5 {
	font-family: arial, verdana, sans-serif;
	font-size: 18px;
	font-weight: bold;
	color: white;
	text-align: center;
	}

/*Schrift Link*/
p.link {
	font-family: arial, verdana, sans-serif;
	font-size: 16px;
	color: #FFD700;
	text-align: justify;
	}

/*Schrift Footer*/
p.footer {
	font-family: arial, verdana, sans-serif;
	font-size: 12px;
	color: white;
	text-align: center;
	}

/*Schrift Email*/
p.email {
	font-family: arial, verdana, sans-serif;
	font-size: 12px;
	color: white;
	text-align: center;
	}

/*Logo*/
.logo {
	width: 81px;
	height: 54px;
	position: absolute;
    right: 20px;
    top: 20px;
    z-index: +1;
	transition: transform 4s;
}
.logo:hover {transform: matrix(1,0,0,1,-830,0); /*Standard syntax*/
	-webkit-transform: matrix(1,0,0,1,-830,0); /*Safari*/
	-moz-transform: matrix(1,0,0,1,-830,0);
	-ms-transform: matrix(1,0,0,1,-830,0); /*IE 9*/
}

/*Elch*/
.elch_1 {
	width: 160px;
	height: 152px;
	position: absolute;
	right: 0px;
    bottom: 0px;
	z-index: +1;
	transition: transform 2s;
}
.elch_1:hover {transform: rotate(35deg);
	-webkit-transform: rotate(35deg);
	-moz-transform: rotate(35deg);
	-ms-transform: rotate(35deg);
}

/*Animiertes Logo*/
.logo_animiert {
	width: 140px;
	height: auto;
	position: absolute;
    left: -47px;
    top: 75px;
    z-index: +1;
	transition: transform 2s;
}
.logo_animiert:hover {transform: matrix(2,0.5,-0.5,2,50,50);
	-webkit-transform: matrix(2,0.5,-0.5,2,50,50);
	-moz-transform: matrix(2,0.5,-0.5,2,50,50);
	-ms-transform: matrix(2,0.5,-0.5,2,50,50);
}

/*Animiertes Bild rechts oben*/
.bild_ro {
	width: 120px;
	height: 80px;
	background-color: #8B6914;
    border: 2px solid #8B6914;
    border-radius: 16px;
   	/*padding: 2px;*/
    margin: 8px;
	position: absolute;
	right: 55px;
    top: 80px;
    z-index: +1;
	transition: transform 0.5s;
	transform: rotate(20deg);
}
.bild_ro:hover {transform: scale(2, 2);
	-webkit-transform: scale(2, 2);
	-moz-transform: scale(2, 2);
	-ms-transform: scale(2, 2);
}

/*Produktfoto*/
figure {
    background-color: #8B6508;
    width: 285px;
    height: auto;
	float: left;
    padding: 0em 0em 0.5em 0em;
    margin: 9px;
	border: 1px solid #FFD700;
	border-radius: 20px;
    box-shadow: 10px 0px 20px white;
	/*transform: rotate(0deg);*/
	transition: transform 0.2s;
}
figure:hover {transform: scale(1.02, 1.02);
	-webkit-transform: scale(1.02, 1.02);
	-moz-transform: scale(1.02, 1.02);
	-ms-transform: scale(1.02, 1.02);
}
figure img {
    width: 100%;
    height: auto;
	border-radius: 20px;
}
figcaption {
    font-family: 'Rock Salt', cursive;
	font-size: 10px;
    color: #FFD700;
    padding-top: 0.5em;
    line-height: 1.2em;
    text-align: center;
}

/*Collage*/
.img-collage {
	position: relative;
	background-color: #FFD700;
	width: 600px; /*432px;*/
    height: 400px; /*288px;*/
	padding: 0em 0em 0em 0em;
    margin: 9px;
	border: 1px solid #FFD700;
	border-radius: 20px;
    box-shadow: 10px 0px 20px white;
	font-family: arial, verdana, sans-serif;
    font-size: 30px;
	font-weight: bold;
	text-align: center;
}

/*Foto hover klein horizontal*/
.foto_hover_k_h {
	width: 270px; 
	height: 180px; /*2/3 von width*/
	background-color: #4e6b1d;
    border: 2px solid black;
    border-radius: 10px; /*width dividiert durch 9*/
    /*padding: 1px;*/
    margin: 9px;
	transition: transform 0.5s;
}
.foto_hover_k_h:hover {transform: scale(1.05, 1.05);
	-webkit-transform: scale(1.05, 1.05);
	-moz-transform: scale(1.05, 1.05);
	-ms-transform: scale(1.05, 1.05);
}

/*Foto hover groß horizontal*/
.foto_hover_g_h {
	width: 854px; 
	height: 569px; /*2/3 von width*/
	background-color: #4e6b1d;
    border: 5px solid black;
    border-radius: 50px; /*width dividiert durch 9*/
    /*padding: 2px;*/
    /*margin: 12px;*/
	transition: transform 0.5s;
}
.foto_hover_g_h:hover {transform: scale(1.05, 1.05);
	-webkit-transform: scale(1.05, 1.05);
	-moz-transform: scale(1.05, 1.05);
	-ms-transform: scale(1.05, 1.05);
}

/*Fotogröße*/
.foto_fix {
	width: 900px; 
	height: 600px; /*2/3 von width*/
	border-radius: 100px; /*width dividiert durch 9*/
}

/*Box-auto orange mit schwarzen Punkterahmen*/
.box_auto {
	position: relative;
	height: auto;
	max-width: 100px;
	border: 3px dotted black;
	border-radius: 5px;
	background-color: orange; 
	padding: 5px;
	font-family: arial, verdana, sans-serif;
	font-size: 10px;
	font-weight: bold;
	text-align: center; 
	z-index: +1;
}

/*Box für Webseitenlinks*/
.page_link {
	margin: auto;
    box-sizing: content-box;    
    min-width: 300px;
	width: 100px;
    height: 100%;
    padding: 5px;    
    border: 5px double black;
	border-radius: 30px;
	background-color: #FFD700;
	font-family: arial, verdana, sans-serif;
    font-size: 30px;
	text-align: center;
}

/*Box für DSGVO-Link*/
.page_link_dsgvo {
	position: absolute;
    right: 247px;
    top: 75px;
   	margin: auto;
    box-sizing: content-box;    
	width: 148px;
    height: 15px;
    padding: 2px;    
    border: 5px double black;
	border-radius: 5px;
	background-color: #FFD700;
	font-family: arial, verdana, sans-serif;
    font-size: 14px;
	font-weight: bold;
	text-align: center;
}

/*Box für Staffelpreise*/
.page_link_staffelpreise {
	position: absolute;
    left: 420px;
    top: 75px;
    margin: auto;
	box-sizing: content-box;    
   	width: 100px;
    height: 15px;
    padding: 2px;    
    border: 5px double black;
	border-radius: 5px;
	background-color: #FFD700;
	font-family: arial, verdana, sans-serif;
    font-size: 14px;
	font-weight: bold;
	text-align: center;
}

/*Box für Youtubevideos*/
.box_youtube {
	width: 910px;
    padding: 27px;    
    /*border: 1px solid yellow;
	border-radius: 20px;*/
}

/*Box für Fotos*/
.box_fotos {
	width: 910px;
    padding: 17px;    
    /*border: 1px solid yellow;
	border-radius: 20px;*/
}

/*Box für Text - Frage ob das überhaupt benötigt wird?*/
.box_text {
	font-family: arial, verdana, sans-serif;
	font-size: 18px;
	font-weight: bold;
	color: #FF7F24;
	text-align: center;
}

/*Box für Design*/
.box_center {
	text-align: center;
}

/*Iframe für Youtube*/
.youtube {
	width: 854px;
	height: 480px;
	border: 2px solid black;
}

/*Container1 = Zentriert*/
.container1 {
	margin: auto;
}

/*Automatische Slideshow*/
* {box-sizing: border-box;}
body {font-family: Verdana, sans-serif;}
.mySlides {
	display: none;
	border: 2px solid black;
}
img {vertical-align: middle;}

/* Slideshow container */
.slideshow-container {
	max-width: 1000px;
	position: relative;
	margin: auto;
}

/* Caption text */
.text {
	font-family: arial, verdana, sans-serif;
	font-size: 22px;
	font-weight: bold;
	color: #FF7F24;
	padding: 8px 12px;
	position: absolute;
	bottom: 8px;
	width: 100%;
	text-align: center;
}

/* Number text (1/12, ...) */
.numbertext {
	font-family: arial, verdana, sans-serif;
	font-size: 22px;
	font-weight: bold;
	color: #FF7F24;
	padding: 8px 12px;
	position: absolute;
	top: 0;
}

/* The dots/bullets/indicators */
.dot {
	height: 15px;
	width: 15px;
	margin: 0 2px;
	background-color: #bbb;
	border-radius: 50%;
	display: inline-block;
	transition: background-color 0.6s ease;
}

.active {
	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 {
	from {opacity: 0.4} 
	to {opacity: 1}
}

@keyframes fade {
	from {opacity: 0.4} 
	to {opacity: 1}
}

/* On smaller screens, decrease text size */
@media only screen and (max-width: 300px) {
	.text {font-size: 11px}
}