* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
  color: #000;
	font-family: Arial, sans-serif;
	font-size: 1em;
}

html {
  scroll-behavior: smooth;
  scroll-snap-type: y mandatory;
}
a {
  text-decoration: none;
  color: #000050;
}
a:hover {
  color: #c6dc06;
  text-shadow: 1px 1px 4px #000;
}
p {
  margin: 4px 0;
	line-height: 1.4;
}
h1 {
  margin: 0 0 10px 0;
  color: #c6dc06;
  text-shadow: 1px 1px 4px #000;
	font-size: 1.6em;
}
h2 {
  margin-top: 5px;
}
small {
  font-size: 10px;
}


.red {
  color: #800;
}
.green {
  color: #080;
}

/* Navigation */
nav {
  display: flex;
  align-items: stretch;
  gap: 30px;
	position: fixed;
  margin: 20px 10px 0px 80px;
  padding: 10px 20px;
  width: 50vw;
  max-width: 600px;
  background: #fffa;
	border-radius: 5px;
	letter-spacing: 1.6;
	z-index: 1000;
}

/* Abschnitte */
section {
  display: flex;
  flex-direction: row;
  align-items: start;
  width: 100vw;
  height: 100vh;
  scroll-snap-align: start;
  overflow: scroll;
/*  background: #888;*/
  background: url('images/studio1_large.jpg');
  background-size: cover;       /* Deckt gesamten Viewport ab */
  background-position: center;  /* Zentriert das Bild */
  background-repeat: no-repeat; /* Kein Wiederholen */
  background-attachment: fixed; /* Optional: Parallax-Effekt */
}
section div {
  width: 50vw;
  max-width: 600px;
  height: calc(100% - 120px);
  padding: 20px;
  margin: 90px 10px 10px 80px;
  background: #fffc;
	border-radius: 5px;
  overflow: scroll;
}
#start {
}
#datenschutz div {
}
#datenschutz ul {
  margin-left: 15px;
	line-height: 1.2;
}
footer {
  margin: 20px 0 0 0;
  width: 200px;
  font-size: 10px;
  color: #333;
  border-top: 1px dashed #333;
}


form.kontakt input {
  display: block;
  width: 100%;
  padding: 5px;
}
form.kontakt input[type="submit"] {
  cursor: pointer;
}
form.kontakt textarea {
  display: block;
  width: 100%;
  height: 150px;
  padding: 5px;
}



/*_________________________________________________________________________________________________________________ Media Screen */

@media only screen and (max-width: 1280px) {
  section {
    background: url('images/studio1_medium.jpg');
    background-size: cover;       /* Deckt gesamten Viewport ab */
    background-position: center;  /* Zentriert das Bild */
    background-repeat: no-repeat; /* Kein Wiederholen */
    background-attachment: fixed; /* Optional: Parallax-Effekt */
  }
}

@media only screen and (max-width: 800px) {
  nav {
 /*   display: flex;
    align-items: stretch;
    gap: 30px;
	  position: fixed;*/
    margin: 20px 0px 0px 00px;
    padding: 10px 20px 10px 60px;
    width: 100vw;
    max-width: inherit;
/*    background: #fffa;*/
	  border-radius: 0;
/*	  z-index: 1000;*/
  }
  section {
    background: url('images/studio1_small.jpg');
    background-size: cover;       /* Deckt gesamten Viewport ab */
    background-position: center;  /* Zentriert das Bild */
    background-repeat: no-repeat; /* Kein Wiederholen */
    background-attachment: fixed; /* Optional: Parallax-Effekt */
  }
  section div {
    width: 100vw;
    max-width: inherit;
/*    height: calc(100% - 120px);
    padding: 20px;*/
    margin: 90px 60px 10px 60px;
/*    background: #fffa;
  	border-radius: 5px;
    overflow: scroll;*/
  }
}

@media only screen and (max-width: 800px) {
  nav {
 /*   display: flex;*/
    align-items: center;
    justify-content: center;
    gap: 10px;
/*	  position: fixed;*/
    margin: 20px 0px 0px 00px;
    padding: 10px 10px 10px 10px;
    width: 100vw;
    max-width: inherit;
/*    background: #fffa;*/
	  border-radius: 0;
/*	  z-index: 1000;*/
  }
  section div {
    width: 100vw;
    max-width: inherit;
/*    height: calc(100% - 120px);
    padding: 20px;*/
    margin: 90px 20px 10px 20px;
/*    background: #fffa;
  	border-radius: 5px;
    overflow: scroll;*/
  }
}

