* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  background-color: #f5f1e8;
  color: #2f2a24;
  line-height: 1.7;
  font-size: 22px;
}

h1,
h2,
h3,
h4 {
  text-align: center;
}

img {
  display: block;
  max-width: 100%;
}

/* Kopfbereich */

.kopf {
  background-color: #5b4a36;
  color: white;
  text-align: center;
  padding: 40px 20px;
}

.kopf h1 {
  margin: 0;
  font-size: 2.4rem;
}

.kopf h3 {
  margin-bottom: 0;
  font-size: 1.4rem;
}

.kopf p {
  margin: 10px 0 0;
  font-size: 1.1rem;
}

/* Navigation */

.navigation {
  background-color: #e8ddc8;
  text-align: center;
  padding: 14px;
}

.navigation a {
  display: inline-block;
  color: #5b4a36;
  text-decoration: none;
  font-weight: bold;
  margin: 6px 10px;
  padding: 8px 12px;
  border-radius: 8px;
}

.navigation a:hover,
.navigation a.aktiv {
  background-color: #d7c7aa;
}

/* Hauptbereich - Layout wie style(1).css */

.tagesthema {
  max-width: 900px;
  margin: 40px auto;
  padding: 30px;
  background-color: white;
  border-radius: 18px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.12);
}

.tagesthema h2,
.tagesthema h3,
.tagesthema h4 {
  color: #6b563d;
}

.tagesthema > h2 {
  font-size: 2rem;
  margin-top: 0;
}

/* Hauptbild */

.bildbereich {
  margin: 25px 0;
  text-align: center;
}

.bildbereich img {
  width: 100%;
  max-height: 620px;
  object-fit: contain;
  border-radius: 14px;
}

/* Andacht, Audio und Galerie */

.andacht,
.galerie,
.audio {
  margin-bottom: 28px;
  padding: 22px;
  background-color: #faf7f0;
  border-radius: 12px;
  text-align: center;
}

.andacht h2,
.galerie h2,
.audio h3 {
  margin-top: 0;
}

.andacht p {
  margin-bottom: 0;
}

.audio audio {
  width: 100%;
  max-width: 420px;
}

/* Brokate */

.brokate-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.brokat {
  background-color: #fadebf;
  text-align: center;
  padding: 22px;
  border-radius: 14px;
}

.brokat h2 {
  margin-top: 0;
  font-size: 1.35rem;
}

.brokat h3 {
  font-size: 1.05rem;
  font-weight: normal;
}

.brokat h4 {
  margin-bottom: 12px;
}

.brokat img {
  width: 100%;
  height: 360px;
  object-fit: contain;
  background-color: #b19677;
  border-radius: 14px;
  padding: 8px;
  margin-top: 18px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.12);
}

.brokat img:hover {
  transform: scale(1.02);
}

/* Quelle */

.quelle {
  text-align: center;
}

.quelle a {
  color: #5b4a36;
  font-weight: bold;
}

/* Footer */

footer {
  text-align: center;
  margin: 30px 0 50px;
}

.zurueck-button {
  display: inline-block;
  margin: 6px;
  padding: 10px 18px;
  background-color: #fcdbb5;
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-family: Arial, sans-serif;
  font-size: 16px;
}

.zurueck-button:hover {
  background-color: #3f3325;
}

/* Handy */

@media (max-width: 700px) {
  body {
    font-size: 18px;
  }

  .kopf h1 {
    font-size: 1.8rem;
  }

  .tagesthema {
    margin: 25px 12px;
    padding: 20px;
  }

  .navigation a {
    display: block;
    margin: 8px auto;
  }

  .brokate-grid {
    grid-template-columns: 1fr;
  }

  .brokat {
    padding: 18px;
  }

  .brokat img {
    height: auto;
    max-height: 360px;
  }
}
ul{
  list-style: none;
}