
/* === HEADERFIX: Strukturierter Header mit Top-Bar & zentriertem Logo/Text === */

/* Grundlayout */
html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  font-family: Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
}

main {
  flex: 1;
  text-align: center;
  padding: 2rem 1rem;
}

/* Header gesamt */
.header {
  width: 100%;
  background-color: #FFA300;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 1rem;
}

/* Obere Leiste: Logo links, Tel rechts */
.header-top {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 1rem;
}

.header-top img {
  height: 50px;
}

.icon-telefon {
  display: flex;
  align-items: center;
  font-size: 1rem;
  color: white;
}

.icon-telefon i {
  font-size: 1.2rem;
  margin-right: 0.5rem;
}

.icon-telefon a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

/* Hauptbereich im Header: zentriertes Logo & Texte */
.header-main {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-top: 1rem;
}

.header-main img {
  max-width: 200px;
  border-radius: 50%;
  margin-bottom: 1rem;
}

.header-main h1 {
  font-size: 2rem;
  font-weight: 600;
  margin: 0.5rem 0;
}

.header-main p {
  font-size: 1rem;
  margin: 0;
}

/* Footer */
.footer {
  width: 100%;
  min-height: 100px;
  background-color: #FFA300;
  color: white;
  text-align: center;
  font-weight: lighter;
  padding: 1rem;
  margin-top: auto;
}

.footer a {
  color: white;
  text-decoration: none;
}

/* Typografie */
h2 {
  font-size: 1.4rem;
  font-weight: 500;
  margin-bottom: 0.8rem;
  text-align: center;
}

p {
  font-size: 1rem;
}
