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

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background-color: #fff;
  color: #333;
}

ul {
  list-style-type: disc; /* Bullet Points */
  padding-left: 2.0rem;  /* Einrückung */
  margin-bottom: 1.1rem;
font-size: 1.1rem;
}

ol {
  list-style-type: decimal; /* 1. 2. 3. */
  padding-left: 2.0rem;
  margin-bottom: 1.1rem;
font-size: 1.1rem;
}

/* Hervorhebung ganzer Absätze */
.highlight-box {
  background-color: #f8f9fa;
  border-left: 6px solid #a62336;
  padding: 1em;
  margin: 1em 0;
  font-size: 1.05em;
}

/* Hero-Bereich */
.hero {
  position: relative;
  text-align: center;
  color: white;
}

.hero-image {
  width: 100%;
  height: 60vh;
  object-fit: cover;
  filter: brightness(70%);
}

.hero-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.hero h1 {
  font-size: 3.0rem;
  line-height: 1.2; /* oder z.B. 1.5 oder 130% */
  margin-bottom: 1rem;
}

.hero-button {
  display: inline-block;         /* wichtig für die korrekte Umrahmung */
  text-align: center;            /* zentriert den mehrzeiligen Text */
  word-break: break-word;        /* sorgt dafür, dass lange Wörter umgebrochen werden */
  white-space: normal;           /* erlaubt Umbrüche innerhalb des Textes */
  padding: 0.75rem 1.5rem;
  background-color: #a62336;
  font-size: 1.2rem;
  color: white;
  text-decoration: none;
  border-radius: 10px;
  font-weight: bold;
  transition: background-color 0.3s;
}

.hero-button:hover {
  background-color: #e65c00;
}

/* Content */
.content {
  padding: 2rem 1rem;
  max-width: 900px;
  margin: 0 auto;
}

.content section {
  margin-bottom: 3rem;
}

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

p {
  font-size: 1.1rem;
}

/* Kleinen Umbruch, wie bei <br>, jedoch sauberer Code */
/* Wird dann in html so angewendet: <p class="empty">&nbsp;</p>*/
p.empty {
  margin: 0.5rem 0;
}

/* Statt leere <p>-Tags mit &nbsp;, verwende besser: */
/* Wird dann in html so angewendet: <div class="empty"></div>*/
.empty {
  margin: 2rem 0;
}

/* Bilder im Content */
.inline-image {
  display: block;
  margin: 1rem auto;
  max-width: 100%;
  height: auto;
  border-radius: 15px;
}

/* ----Begin------------ */
/* Text und Bild im Content nebeneinander*/
.text-mit-bild {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Reihenfolge bei großem Bildschirm: Bild links */
.text-mit-bild img {
  order: 0;
  width: 150px;               /* Bildgröße anpassen */
  height: auto;              /* Seitenverhältnis beibehalten */
}

/* Reihenfolge bei großem Bildschirm: Text rechts */
.text-mit-bild p {
  order: 1;
}

/* Ab hier: kleines Gerät – Bild rechts */
@media (max-width: 767px) {
  .text-mit-bild {
    flex-direction: row; /* bleibt gleich, Reihenfolge ändert sich */
  }

  .text-mit-bild img {
    order: 1;
  width: 150px;               /* Bildgröße anpassen */
  height: auto;              /* Seitenverhältnis beibehalten */
  }

  .text-mit-bild p {
    order: 0;
  }
}
/* ----Ende------------ */

/* FAQ - Fragen in fett */
dt {
  font-weight: bold;
  margin-top: 1em;
}

/* FAQ - Antworten eingerückt */
dd {
  margin-left: 1em;
  margin-bottom: 1em;
}


/* Footer */
footer {
  background-color: #f4f4f4;
  text-align: center;
  padding: 1rem;
  font-size: 1.1rem;
  color: #555;
}

.footer-button {
  padding: 0.2rem 0.5rem;
  background-color: #f4f4f4;
  color: #555;
  text-decoration: none;
  border-radius: 5px;
  font-weight: light;
  transition: background-color 0.3s;
}

.footer-button:hover {
  background-color: #bbb;
}

/* Address im Footer */
address {
  font-style: normal; /* standardmäßig ist <address> kursiv – hier deaktiviert */
  font-size: 1.1rem;   /* oder z. B. 14px */
  color: #555;         /* Etwas helleres Grau als Standard-Schwarz (dezent im Footer) */
  line-height: 1.5;	/* Verbessert die Lesbarkeit */
  margin-top: 1rem;	/* Abstand nach oben */
}
