
/* === CLEAN FIX: Header, Footer, Typografie === */

/* 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-Inhalt streckt sich, Footer bleibt unten */
main {
  flex: 1;
  text-align: center;
  padding: 2rem 1rem;
}

/* Header */
.header {
  width: 100%;
  min-height: 100px; /* gleiche Höhe wie Footer */
  background-color: #FFA300;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 1rem;
}

.header_logo {
  height: 60px;
}

.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;
}

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

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

/* Typografie */
h1 {
  font-size: 2rem !important;
  font-weight: 600;
  margin-bottom: 1rem;
  text-align: center;
}

h2 {
  font-size: 1.4rem !important;
  font-weight: 500;
  margin-bottom: 0.8rem;
  text-align: center;
}

p {
  font-size: 1rem;
}
