@charset "UTF-8";
/* CSS Document */

/* Generelle Angaben */

* {
    margin: 0;
    padding: 0;
}

/* Make HTML 5 elements display block-level for consistent styling */ 
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
    display: block;
}

/* 
	apply a natural box layout model to all elements, but allowing components to change 
	http://www.paulirish.com/2012/box-sizing-border-box-ftw/
*/
html {
  box-sizing: border-box;
}

*, *:before, *:after {
  box-sizing: inherit;
}


html {
  overflow-y: scroll;
}


hr {
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px solid #ccc;
    margin: 1em 0;
    padding: 0;
}



/* Body Background */

body {
	
  font-family: 'Quicksand', sans-serif;
  font-size: 14px;
  color: #000;
  background-color: #8fbe78; /*#8fbe78;*/

  /* gruen-blau-Verlauf */
/*   background-image: url(../img/haus_impressum.png), linear-gradient(135deg, rgba(48,142,105,1) 0%,rgba(48,142,105,0.97) 3%,rgba(108,172,114,0.75) 25%,rgba(143,190,120,0.69)  38%,rgba(1 */50,196,137,0.6) 59%,rgba(154,200,147,0.61) 72%,rgba(125,186,180,0.63) 91%,rgba(111,179,196,0.63) 100%); */

}



/* Typography */

/* 
  Silbentrennung 
  siehe: https://css-tricks.com/almanac/properties/h/hyphenate/
  wichtig ist das lang-Attribut im <html> Tag!!! Auf die Sprache achten!!
*/

body {
-webkit-hyphens: auto;
   -moz-hyphens: auto;
        hyphens: auto;

}

h1,
h2,
h3,
strong {
  font-weight: 800;
  margin: 0;
}

h1,
h2 {
  font-family: 'Quicksand', sans-serif;
  font-size: 30px;
  letter-spacing: 0.1em;
  /*padding-left: 10px;  Warum padding-left?? */ 
}


h3 {
  font-size: 20px;
  padding: 20px 0;
  text-transform:uppercase;
  font-weight: 500;
}

p {
  font-family: Arial, Helvetica, sans-serif;
  color:#000;
  font-size:14px;
  line-height: 1.4em;
  letter-spacing: 0.2em;
}


p.impressum-text {
  font-family: 'Quicksand', sans-serif;
  font-size:14px;
  padding-right: 10px;
  padding-bottom: 20px;
}


/* Typographie / Container / Boxen */

h2.container {
  padding: 30px 0;
  text-align: center;
  text-transform: uppercase;
}


#positions-box {
 /* width: 600px;
  margin: auto;*/
  padding: 0 10px 0 20px;
  /*padding-left: 100px;*/
}


/* Linie unten */
hr {
  border-top: 1px solid #000;
  margin-top: 5%;
  margin-left: 1%;
  margin-right: 1%;
}



/* Responsive Bilder */
img {
/*   width: 100%;  */ /* Achtung Achtung: wurde herausgenommen. width bezoeht sich auf den Eltern Container des Bildes */
  max-width: 100%; /* max-width bezieht sich auf das Bild selber*/
  height: auto;
}






/* Style von Links allgemein */

a:hover,
a:focus {
 text-decoration: underline;
}
a:active{
  color:#F36;
}


/* 
  style alle Links deren href mit 'tel' beginnt.
  (Smartphones formatieren Telefonnummern automatisch als Link 
 */
a[href^=tel] {
  color: #000;
}



/* Menü - Nav allgemein */

nav {
  text-align: center;
}

nav a {
  font-size: 20px;
  padding: 10px;
  color: #000;
  text-decoration: none;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
nav a:hover,
nav a:focus,
nav a:active {
 text-decoration: underline;
 /*border-bottom: 2px solid #000;*/
 color:#b4d16d;
}



/* header impressum */
.header-content {
  width: 90%;
  margin: 10px auto;
  /*margin: 10px auto;*/
  text-align: center;
}


/* page sections */
.page-section {
  position: relative; /* Achtung Achtung: Elternelement von Button */
}




/* Footer */

footer {
  display:block;
  width: 98%;
}

footer p {
  float:right;
}

p.impressum-text {
  font-family: 'Quicksand', sans-serif;
  font-size:12px;
  padding-right: 10px;
  padding-bottom: 20px;
}

.impressum-text a {
	color:#000;
}


hr {
  border-top: 1px solid #000;
  margin-left: 1%;
  margin-right: 1%;
}


@media only screen and (min-width : 768px) { 

/* Typographie */
h2.container {
  padding: 50px 0 10px 0;
  text-align: center;
  /*font-size: 30px;*/
}

p {
  line-height: 1.6em;
  letter-spacing: 0.3em;
}



/*
#impressum-box {
  position: relative;
  margin-top: 50px;
  width: 600px;
  margin: auto;
  padding-left: 100px;
}
*/

#impressum_agb {
  position: relative;
 /* margin-top: 50px;*/

 /* border: 1px solid #ccc;*/

}

#impressum_image {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  background-image:url(../img/haus_impressum2.png);
  background-repeat: no-repeat;
 /* background-position: 40% 50%;*/
  background-position: 10% 50%;
 
/*  background-size: auto 100%;
*/}

#positions-box {
  width: 600px;
  margin: auto;
  padding-bottom: 50px;
 /* padding: 0 10px;*/
  /*padding-left: 100px;*/
}

/* Menü */
nav {
  text-align: right;
  /*margin-right: 50px;*/ 
  margin-right: 150px;
  margin-bottom: 20px; 
}
#menu, #menu.open {
  display: block;
}

#burger {
  display: none;
}

#menu li {
  display: block;
  padding: 10px;
}

/*#menu li {
  display: inline-block;
}*/

#menu li a {
  font-family: 'Quicksand', Arial, Helvetica, sans-serif;
  font-size: 20px;
  color: #000;
  text-decoration: none;
  text-transform:uppercase;
}


/* Style von Menü Links */
#menu li a {
  text-decoration: none;
  color: #000;
}

#menu li a:hover,
a:focus {
  text-decoration: underline;
  color: #000;
}




/* Page Section */

.page-section {
/*   min-height: 100vh ; */
  position: relative; /* Achtung Achtung: Elternelement von Button */
}

.header-content {
  width: 70%;
 /* min-height: 22vh;*/ 
  min-height: 18vh; 
  /*margin-bottom: 50px;*/
 /* max-width: 650px;*/
 /* min-height: 50vh; 
  margin: 10px auto;
  padding: 0 0 0px;
  text-align: center;*/
}


/*footer */
footer {
  /*width: 90%;*/
}

/* Typography footer */

footer p {
  font-family: 'Quicksand', sans-serif;
  font-size: 14px;
  padding-right: 10px;
  padding-top: 20px;
  padding-bottom: 20px;
}

}




/* Breakpoint Desktop */

@media only screen and (min-width : 1350px) { 



/* Typographie */
h2.container { 
  font-size: 40px; 
  font-weight: 500;
}






/* ********************************** */


}
