* {
  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 {
  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-top: 10px;
  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 {
  background-color: #d7c7aa;
}

/* Hauptbereich */

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

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

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

/* Hauptbild */

.bildbereich {
  margin: 25px ;
  padding: 15px;
  text-align: center;
  background-color:#f0ebe2;;
  border-radius: 18px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.12);
  border:2px rgba(36, 35, 35, 0.678) solid; 
}

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

/* Andacht und Galerie */

.andacht,
.galerie
 {
  margin-bottom: 28px;
  padding: 22px;
  background-color: #d7c7aa;;
  border-radius: 18px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.12);
  border:2px rgba(36, 35, 35, 0.678) solid; 
  text-align: center;
}

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

.andacht p {
  margin-bottom: 0;
}

/* Galerie Grid */

.grid-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  background-color: #faf7f0;
}

.grid-container a {
  display: block;
  text-decoration: none;
}

.grid-container img {
  width: 100%;
  height: 260px;
  object-fit: contain;
  background-color: white;
  border-radius: 14px;
  padding: 8px;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.12);
}

.grid-container img:hover {
  transform: scale(1.02);
}

/* Lightbox */

.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.88);
  justify-content: center;
  align-items: center;
  z-index: 999;
}

.lightbox img {
  max-width: 90%;
  max-height: 85%;
  border-radius: 12px;
}

.close,
.prev,
.next {
  position: absolute;
  border: none;
  background: none;
  color: white;
  cursor: pointer;
  font-size: 50px;
  line-height: 1;
}

.close {
  top: 25px;
  right: 35px;
}

.prev {
  left: 25px;
  top: 50%;
  transform: translateY(-50%);
}

.next {
  right: 25px;
  top: 50%;
  transform: translateY(-50%);
}

.close:hover,
.prev:hover,
.next:hover {
  color: #d7c7aa;
}

/* Footer */

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

.zurueck-button {
  display: inline-block;
  margin: 6px;
  padding: 10px 18px;
  background-color: #5b4a36;
  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;
  }

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

  .grid-container img {
    height: auto;
    max-height: 360px;
  }

  .prev {
    left: 10px;
  }

  .next {
    right: 10px;
  }

  .close {
    top: 15px;
    right: 20px;
  }
}
li {
  list-style: none;
}
.brokate{
  background-color: #fadebf;
  text-align:center; 
  
}
.brokate img {
  width: 100%;
  height: 460px;
  object-fit: contain;
  background-color: #b19677;;
  border-radius: 14px;
  padding: 8px;
  margin:20px;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.12);
}
.audio-box {
  max-width: 600px;
  margin: 30px auto;
  padding: 20px;
  background-color: #f5f0e8;
  border-radius: 16px;
  text-align: center;
}

.audio-box audio {
  width: 100%;
  margin-top: 15px;
}