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

.hero {
  position: relative;
  width: 100%;
  text-align: center;
}

.hero {
  width: 100%;
  text-align: center;
  position: relative;
}

.hero-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

.hero-img-mobile {
  display: none;
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* Standard: Mobile-Header ausblenden */
.mobile-header {
  display: none;
}

body {
  font-family: Roboto, sans-serif;
  color: #707070;
  margin: 0;
  padding: 0;
  line-height: 1.6;
}

h1 {
  font-size: 1rem;
  margin-bottom: 1rem;
  color: #707070;
}

h2 {
  font-size: 1rem;
  margin-bottom: 1rem;
  color: #FFFFFF;
}

h3 {
  font-size: 1rem;
	margin-bottom: 5px;
  color: #AFC64C;
}

.fliesstext {
	padding:  0 20% 0 20%;
}

.fliesstext-logo img{
	width: 200px;
	margin: 10px 20% 10px 20%;
}
	
.weissschrift {
	color: #fff;
}

.trennlinie {
  width: 90%;
  max-width: 500px;
  height: 2px;
  border: none;
  margin: 15px auto;
}

.strichgruen {
  background-color: #AFC64C;
}

.strichweiss {
  background-color: #FFFFFF;
}

.section-opening {
  text-align: center;
  padding: 3rem 1rem;
}

.section-opening p {
  max-width: 500px;
  margin: 0 auto;
}

.section-contact {
  background-color: #AFC64C;
  color: white;
  text-align: left; /* <- vorher center */
  padding: 3rem 1rem;
}

.contact-inner {
  display: flex;
  flex-direction: column;
  align-items: center; /* Zentriert die Elemente */
  justify-content: center; /* Zentriert den Inhalt */
  margin: 0 auto;
  width: 100%;
}

.contact-item {
  display: flex;
  align-items: center; /* Zentriert vertikal */
  justify-content: flex-start; /* Zentriert horizontal */
  gap: 0.8rem;
  margin-bottom: 1.2rem;
  text-align: center; /* Sicherstellen, dass auch Text zentriert ist */
}

.contact-icon {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
}

.icon {
  width: 20px;
  height: auto;
}

.contact-text {
  text-decoration: none;	
  color: white;
  text-align: left;
  font-size: 1rem;
  line-height: 1.4;
}

.contact-text div {
  display: block;
}

.contact-header {
  text-align: center;
  width: 100%;
}

.second-line {
  margin-left: 0; /* optional: kein zusätzlicher Abstand */
}

.section-note {
  text-align: center;
  padding: 3rem 1rem;
}

.footer {
  background-color: #4a4a4a;
  color: white;
  text-align: center;
  padding: 2rem 1rem;
	margin-top: 20px;
}

.footer-logo img {
  width: 280px;
  margin-bottom: 1rem;
}

.footer-links {
  margin-bottom: 1rem;
}

.footer-links a {
  color: white;
  margin: 0 1rem;
  text-decoration: none;
  font-weight: bold;
}

.footer-social img {
  width: 24px;
  margin: 0 0.5rem;
}

.mobile-header {
  display: none;
}


@media (max-width: 768px) {
  .hero-img {
    display: none;
  }

  .hero-img-mobile {
    display: block;
  }

  .mobile-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem 1rem;
  }

  .mobile-logo {
    width: 50%;
    margin-bottom: 1.5rem;
  }

  .mobile-textblock {
    max-width: 400px;
    width: 100%;
  }

  .mobile-textblock h2 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: #707070;
  }

  .mobile-textblock p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #707070;
  }

  .section-opening {
    text-align: center;
    padding: 3rem 1rem;
  }

  .section-opening p {
    max-width: 500px;
    margin: 0 auto;
  }

  .contact-item {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0.8rem;
    margin-bottom: 1.2rem;
    text-align: left;
  }
	
	.contact-frame {
		
	}
}