:root{
  --dunkel: #044447;
  --hell: #ECE3D9;
  --grün: #2F7354;
  --blau: #285F7D;
  --lila: #7A65B0;
}

@font-face {
  font-family: 'Bolden';
  font-style: regular;
  font-weight: normal;
  src: local('Bolden'), local('Bolden-Regular'), url(Bolden-Display_Hust.woff) format('woff');
}
@import url('https://fonts.googleapis.com/css2?family=Fira+Sans+Condensed:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Poppins:wght@800&display=swap');

html, body {
	margin: 0;
	padding: 0;
	width: 100%;
	height: 100%;
  font-size: 1em;
  scroll-behavior: smooth;
}

h1, h2, li{
  margin: 0;
  font-family: Bolden;
  font-weight: 100;
}

h1{
  font-size: clamp(3em, 15vw, 10em);
  text-align: center;
  padding-top: 0.5em;
}

h3, h4, h5, h6, p, form{
  font-family: 'Fira Sans Condensed', sans-serif;
  font-weight: 400;
}

.nav{
  margin: 2em 0;
}

ul{
  padding: 0;
}

a li{
  font-size: 2.5em;
  color: var(--hell);
  padding-left: 25px;
  list-style: none;
}

a:hover li{
  background-color: var(--hell);
  color: var(--dunkel);
}

a:hover{
  color: var(--dunkel);
  cursor: pointer;
}

p {
  text-align: left;
  font-size: 1.2em;
}

a {
  text-decoration: none;
}

button {
  font-family: 'Fira Sans Condensed', sans-serif;
  font-weight: 800;
  min-width: 30%;
  font-size: 1.6em;
  border: none;
  padding: 0.4em 2em;
  border-radius: 0.6em;
  text-align: center;
  justify-content: center;
  text-decoration: none;
  display: flex;
  margin: 0 auto;
  cursor: pointer;
}

section{
	min-height: 100vh;
}

section:nth-child(2n) {
  color: var(--dunkel);
}

section:nth-child(2n+1) {
  color: var(--hell);
}

section:nth-child(2n) button {
  color: var(--hell);
  background-color: var(--dunkel);
}

section:nth-child(2n+1) button {
  background-color: var(--hell);
}




#navigation{
  height: 70px;
  width: 100%;
  background-color: var(--dunkel);
  color: var(--hell);
  position: fixed;
  z-index: 100;
}

#navigation h1{
  padding: 0;
  color: var(--hell);
}

.toggle-button {
  position: absolute;
  top: 18px;
  right: 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 37px;
  height: 30px;
  cursor: pointer;
}

.toggle-button .bar {
  height: 5px;
  width: 100%;
  background-color: var(--hell);
  border-radius: 10px;
}

#check {
  display: none;
}

@media (min-width: 800px) {
  #content{
    width: 70%;
    float: right;
  }

  #navigation{
    width: 30%;
    float: left;
    position: fixed;
    min-height: 100vh;
  }

  .toggle-button {
    display: none;
  }
}

.sprachauswahl {
  font-family: 'Fira Sans Condensed', sans-serif;
  font-weight: 800;
  font-size: 1.6em;
  border-width: 5px;
  padding: .2em .4em;
  border-radius: 0.6em;
  border-color: var(--hell);
  color: var(--hell);
  background-color: var(--dunkel);
  text-align: center;
  justify-content: center;
  text-decoration: none;
  display: flex;
  float: left;
  margin: 0 auto;
  cursor: pointer;
}
.sprachauswahl:hover {
  outline: 4px solid;
  outline-color: var(--hell);
  outline-offset: -4px;
}

#sprache{
  position: fixed;
  left: 0%;
  bottom: 0%;
  padding: .6em;
}
@media (max-width: 800px) {
  .sprachauswahl {
    clear: both;
    font-size: 1.1em;
  }
  #sprache{
    position: fixed;
    left: auto;
    bottom: auto;
    right: 17%;
    top:0%;
    font-size: .7em;
  }
}


@media (max-width: 800px) {
  h1{
    padding-top: 80px;
  }

  #navigation .fit{
    width: 200px;
  }

  #navigation .nav{
    min-height: 250px;
    background-color: var(--dunkel);
    margin: 0;
    padding: 30px 0;
    position: fixed;
    width: 100%;
    left: 100%;
    transition: all .5s;
  }

  #check:checked ~ .nav{
    left: 0%;
  }

  #check:checked ~ .toggle-button #bar1{
    transform: translate(0, 12.5px) rotate(45deg);
  }

  #check:checked ~ .toggle-button #bar3{
    transform: translate(0, -12.5px) rotate(-45deg);
  }

  #check:checked ~ .toggle-button #bar2{
    display: none;
  }
}

#start {
  background-color: var(--grün);
  display: flex;
  align-items: center;
  justify-content: center;
  max-height: 100vh;
  overflow: hidden;
}
#start h1 {
  padding: 0;
}

.blumen-bild1 {
  position: absolute;
  top: 0px;
  left: 20%;
  width: 80%;
  height: 30vh;
  overflow: hidden;
  background-image: url(../bilder/lila-blumen2.gif);
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: cover;
}

.blumen-bild2 {
  position: absolute;
  bottom: 0px;
  left: 20%;
  width: 80%;
  height: 30vh;
  overflow: hidden;
  background-image: url(../bilder/lila-blumen.gif);
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
}

@media (max-width: 800px) {
  .blumen-bild1 {
    top: 0px;
    left: 0px;
    width: 100%;
  }

  .blumen-bild2 {
    bottom: 0px;
    left: 0px;
    width: 100%;
  }
}

#shop {
  background-color: var(--hell);
}

.b-grün:hover, #shop button:hover {
  color: var(--dunkel);
  background-color: var(--hell);
  outline: 4px solid;
  outline-color: var(--dunkel);
  outline-offset: -4px;
}

#portfolio {
  background-color: var(--blau);
}

#portfolio button{
  color: var(--blau);
}

.b-blau:hover, #portfolio button:hover {
  color: var(--hell);
  background-color: var(--blau);
  outline: 4px solid;
  outline-color: var(--hell);
  outline-offset: -4px;
}

#uebermich {
  background-color: var(--hell);
}

.uebermich-content {
  overflow: auto;
  position: relative;
  display: flex;
  justify-content: center;
}

.uebermich-text {
  display: block;
  float: left;
  width: 40%;
  margin: 0;
  padding: 0 5%;
}

#unterschrift {
  height: 5vh;
  min-height: 30px;
  float: left;
  margin: 0 10px 20px 10px;
}

.ich {
  display: block;
  float: left;
  background-image: url(../bilder/DSC06169.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 40%;
  aspect-ratio: 1/1;
  margin: 1em;
}

@media (max-width: 800px) {
  .uebermich-text, .ich{
    clear: both;
    width: 80%;
  }
  .uebermich-text {
    margin: 0 5%;
  }
  .ich{
    margin-left: 10%;
    margin-right: 10%;
  }

  .uebermich-content {
    display: block;
    text-align: center;
    justify-content: center;
  }
}

#kontakt {
  background-color: var(--lila);
}

#kontakt div{
  background-color: var(--lila);
}

#kontakttext{
  padding: 2em 7.5% 1em 7.5%;
}

#kontakt h3 {
  font-size: 1.3em;
}

#kontakt h3 a{
  padding: 0.3em;
  font-weight: 800;
  color: var(--hell);
}
#kontakt h3 a:hover{
  padding: 0.3em;
  font-weight: 800;
  color: var(--lila);
  background-color: var(--hell);
}

#kontakt button{
  color: var(--lila);
}

.b-lila:hover, #kontakt button:hover {
  color: var(--hell);
  background-color: var(--lila);
  outline: 4px solid;
  outline-color: var(--hell);
  outline-offset: -4px;
}

input{
	font-family: 'Fira Sans', sans-serif;
  font-weight: 500;
	font-size: 1em;
  color: var(--lila);
	margin-bottom: 2%;
	border-radius: 20px;
	border: 4px solid;
  border-color: var(--hell);
  background-color: var(--hell);
	outline: none;
  padding: 10px;
}

input:focus{
  border: 4px solid;
  border-color: var(--dunkel);
}

#div {
  width: 70%;
  margin: auto;
}

footer{
  background-color: var(--dunkel);
  min-height: 5em;
  padding: 0.4em;
  font-size: 0.6em;
  letter-spacing: 0.1em;
  text-align: center;
}

footer a{
  display: inline-block;
}

footer a li{
  padding-right: 20px;
}



.platz{
  min-height: 1px;
}



.banner-shop{
  padding: 7vh 0;
  overflow: hidden;
}

.bannerbild-shop {
  background: url("../bilder/shop.jpg") repeat-x;
  zoom: 0.72;
  -moz-transform: scale(0.72);
  height: 500px; /* Bildhöhe */
  width: 10000px; /* Bildbreite*2 */
  animation: slide 120s linear infinite;
}

.banner-portfolio {
  padding: 7vh 0;
  overflow: hidden;
}

.bannerbild-portfolio {
  background: url("../bilder/portfolio.jpg") repeat-x;
  zoom: 0.72;
  -moz-transform: scale(0.72);
  height: 500px; /* Bildhöhe */
  width: 10000px; /* Bildbreite*2 */
  animation: slide 120s linear infinite;
}

@keyframes slide {
  0% {
    transform: translate(0);
  }
  100% {
    transform: translate(-8000px); /* The image width */
  }
}

/*********IMPRESSUM**********/
#impressum{
  background-color: var(--hell);
  color: var(--dunkel);
}
