* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
}

body {
  font-family: 'Smooch Sans', sans-serif;
  background-image: url(bannergrau.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
  color: white;
}

/* WRAPPER für Sticky Footer */
.page-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* Inhalt soll Seite füllen */
.content {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

#h1, #p1 {
  font-family: 'Smooch Sans', sans-serif;
}

#h1 {
  font-size: 2rem;
  margin: 20px 0;
}

#p1 {
  font-size: 1.3rem;
  line-height: 1.8;
  margin-bottom: 20px;
}

/* Layout Desktop */
.content-container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: auto;
  padding: 50px;
  gap: 50px;
}

.text-section {
  flex: 1;
}

.image-section {
  flex: 1;
  display: flex;
  justify-content: center;
}

#img1 {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 10px;
}

.video-container {
  margin-bottom: 20px;
}

/* HEADER */
.mdl-layout__header {
  background-color: transparent;
  border-bottom: 1px solid white;
  z-index: 1000;
}

.mdl-layout-title {
  font-family: 'Smooch Sans', sans-serif;
  color: white;
  font-size: 28px;
}

.mdl-navigation__link {
  color: white;
  font-size: 22px;
}

.mdl-navigation__link:hover {
  color: black;
}

/* FOOTER */
footer {
  background-color: #111;
}

.footerContainer {
  width: 100%;
  padding: 70px 30px 20px;
}

.socialIcons {
  display: flex;
  justify-content: center;
}

.socialIcons a {
  text-decoration: none;
  padding: 10px;
  background-color: white;
  margin: 10px;
  border-radius: 50%;
}

.socialIcons a i {
  font-size: 2em;
  color: black;
}

.socialIcons a:hover {
  background-color: #111;
  transition: 0.5s;
}

.socialIcons a:hover i {
  color: white;
  transition: 0.5s;
}

.footerNav {
  margin: 30px 0;
}

.footerNav ul {
  display: flex;
  justify-content: center;
  list-style-type: none;
  flex-wrap: wrap;
}

.footerNav ul li a {
  color: white;
  margin: 20px;
  text-decoration: none;
  font-size: 1.3em;
  opacity: 0.7;
  transition: 0.5s;
}

.footerNav ul li a:hover {
  opacity: 1;
}

.footerBottom {
  background-color: #000;
  padding: 20px;
  text-align: center;
}

.footerBottom a {
  color: white;
  margin: 0 10px;
  text-decoration: none;
  font-size: 0.9em;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .content-container {
    flex-direction: column;
    text-align: center;
    padding: 20px;
  }
  #h1 {
    font-size: 1.5rem;
  }

  #p1 {
    font-size: 1rem;
    line-height: 1.6;
  }

  #img1 {
    max-width: 80%;
    margin-top: 20px;
  }

  .footerNav ul {
    flex-direction: column;
  }

  .footerNav ul li {
    margin: 10px 0;
  }

  .socialIcons a {
    padding: 8px;
    margin: 4px;
  }
}
/* NAVIGATION ANPASSUNG FÜR MOBILE */
@media (max-width: 768px) {
  .mdl-layout__header-row {
    justify-content: center; /* Zentriert den Titel */
  }

  .mdl-layout-title {
    text-align: center;
    margin: 0 auto;
  }

  .mdl-navigation {
    display: none; /* Blendet die Navigationslinks aus */
  }
}

