/* Grundlayout */
body {
  margin: 0;
  padding: 0;
  background-color: #fff;
  font-family: Arial, sans-serif;
  text-align: center;
  color: #222;
}

main {
  flex: 1;
  display: flex;
  flex-direction: column;
}



/* Container bleibt normal */
.container {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Header bleibt oben */
header {
  padding: 20px;
}



/* Wartungshinweis */
.wartungshinweis {
  background-color: #fffae6;
  border: 1px solid #f0c040;
  border-radius: 8px;
  max-width: 800px;
  margin: 20px auto 0;
  padding: 20px;
  text-align: left;
}

.hinweis-zeile {
  display: flex;
  align-items: center;
  gap: 15px;
}

.icon {
  font-size: 2em;
  flex-shrink: 0;
}

.hinweis-text h1 {
  color: #b85c00;
  font-size: 1.2em;
  margin: 0 0 5px;
}

.hinweis-text p {
  margin: 0;
  font-size: 1em;
}


.wartungshinweis h1 {
  margin: 0 0 10px 0;
  color: #b85c00;
}

.wartungshinweis p {
  margin: 0;
  font-size: 1em;
}

/* Kontaktbereich */
.kontakt {
  padding: 10px;
  font-size: 1.1em;
}

.kontaktdaten {
  margin-top: 10px;
}

/* Logo-Styling */
.logo {
  max-width: 300px; /* vorher 400px */
  height: auto;
  margin: 10px auto 5px; /* engerer Abstand oben/unten */
  display: block;
}

/* Footer-Styling */
footer {
  margin-top: auto;
  padding: 20px 0;
  font-size: 0.9em;
  background-color: #f8f8f8;
}

footer a {
  color: #000;
  text-decoration: none;
  margin: 0 10px;
}

footer a:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 600px) {
  .wartungshinweis {
    padding: 15px;
    font-size: 0.95em;
  }

  .logo {
    max-width: 100%;
  }
}

/* Wrapper für mittigen Bereich */
.kontakt-wrapper {
  flex: 1; /* nimmt den verfügbaren Platz zwischen Header und Footer */
  display: flex;
  justify-content: center;      /* horizontal */
  align-items: center;          /* vertikal */
  padding: 20px;
}


/* für mobile Ansicht seitlich Abstand */
@media (max-width: 600px) {
  .wartungshinweis {
    padding: 15px;
    font-size: 0.95em;
    margin: 10px;
  }

  .kontakt-wrapper {
    padding: 20px 15px; /* Abstand zu den Seiten */
  }

  .kontakt {
    width: 100%;
  }

  .logo {
    max-width: 90%;
  }

  .hinweis-zeile {
    flex-direction: column;
    text-align: center;
  }

  .hinweis-text h1 {
    font-size: 1.1em;
  }

}
