/* 
==================================================
  RESET
==================================================
*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* 
==================================================
  BODY-BASIS
==================================================
*/
body {
  font-family: 'Open Sans', sans-serif;
  background-color: #000; /* Hintergrundfarbe der Seite, wie auf der Startseite */
  color: #fff; /* Weiße Schrift, wie auf der Startseite */
  line-height: 1.6;
  margin: 0;
  padding: 0;

  /* Schwarzer Rahmen um alles */
  border: 2px solid #000;
}

/* 
==================================================
  PARALLAX-HINTERGRUND
==================================================
*/
.page-container {
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  overflow: hidden;
  z-index: -1; /* Hintergrund hinter allen Inhalten */
}

.page-back {
  width: 120%;
  height: 120%;
  position: absolute;
  top: -10%;
  left: -10%;
  background-image: url('images/backgroundimage.jpg'); 
  background-size: cover;
  background-position: center;
  filter: blur(1px);
  -webkit-filter: blur(1px);
  transition: margin 0.1s ease-out;
}

/* 
==================================================
  MAIN / CONTENT
==================================================
*/
main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  text-align: center;
}

.content-section {
  background-color: #fff; /* Weiße Sektionen */
  color: #333; /* Dunkle Schrift für Kontrast */
  padding: 40px;
  padding-left: 60px; /* Mehr Abstand auf der linken Seite */
  padding-right: 60px; /* Mehr Abstand auf der rechten Seite */
  border-radius: 6px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px; /* Abstand zwischen den Sektionen */
}

/* 
==================================================
  HEADER / LOGO
==================================================
*/
header {
  position: relative;
  background-color: #fff;  /* Weißer Hintergrund für den Header */
  color: #000;            /* Schwarzer Text */
  padding: 20px;
  margin-bottom: 20px;
  text-align: center;
}

.header-logo {
  position: absolute;
  top: 20px;   /* Abstand vom oberen Rand des Headers */
  right: 20px; /* Abstand vom rechten Rand des Headers */
  width: 120px; /* Logo etwas kleiner, anpassbar */
  height: auto;
}

/* 
==================================================
  NAV (RÜCK-LINK)
==================================================
*/
nav {
  margin-top: 10px;
}
.return-link {
  color: #000;
  text-decoration: none;
  border: 1px solid #000;
  padding: 5px 10px;
  border-radius: 15px;
  transition: background-color 0.3s;
}
.return-link:hover {
  background-color: #000;
  color: #fff;
}

/* 
==================================================
  FOOTER
==================================================
*/
footer {
  text-align: center;
  padding: 20px;
  background-color: #fff;
  color: #333;
  margin-top: 20px;
  border-top: 1px solid #ddd;
}

/* 
==================================================
  RESPONSIVE DESIGN
==================================================
*/
@media (max-width: 600px) {
  main {
    padding: 10px;
  }

  .content-section {
    padding: 15px;
  }

  /* Logo noch etwas kleiner auf sehr schmalen Geräten */
  .header-logo {
    width: 50px;
  }
}
