/* ================================================
   Die Oase Blog – Gemeinsame Stile (style.css)
   ================================================ */

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

/* BODY */
body {
  font-family: Arial, sans-serif;
  background-image: url(background.jpg); /* color: #e8eef4 */
  color: #333;
}

/* HEADER */
header {
  background-color: #b8cfe8;
  padding: 24px 32px;
  border-bottom: 2px solid #9ab8d8;
}

header h1 {
  font-size: 2rem;
  color: #1a3a5c;
  letter-spacing: 1px;
}

header h1 a {
  color: #1a3a5c;
  text-decoration: none;
}

header p.untertitel {
  font-size: 1rem;
  color: #3a5a7c;
  margin-top: 4px;
}

/* LAYOUT */
.seiteninhalt {
  display: flex;
  flex-direction: row-reverse;
  max-width: 1100px;
  margin: 24px auto;
  gap: 24px;
  padding: 0 16px;
}

/* SEITENLEISTE */
aside.seitenleiste {
  width: 220px;
  flex-shrink: 0;
}

aside.seitenleiste nav {
  background-color: #d4e4f0;
  border: 1px solid #b0cce0;
  border-radius: 4px;
  padding: 16px;
}

aside.seitenleiste nav h2 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #3a5a7c;
  margin-bottom: 12px;
  border-bottom: 1px solid #b0cce0;
  padding-bottom: 6px;
}

aside.seitenleiste nav ul {
  list-style: none;
}

aside.seitenleiste nav ul li {
  padding: 5px 0;
  border-bottom: 1px solid #c4d8e8;
  font-size: 0.9rem;
}

aside.seitenleiste nav ul li:last-child {
  border-bottom: none;
}

aside.seitenleiste nav ul li a {
  color: #1a3a5c;
  text-decoration: none;
}

aside.seitenleiste nav ul li a:hover {
  text-decoration: underline;
}

aside.seitenleiste nav .rubrik {
  font-size: 0.8rem;
  font-weight: bold;
  color: #3a5a7c;
  padding: 8px 0 3px 0;
  border-bottom: none;
}

aside.seitenleiste nav .unterrubrik {
  font-size: 0.8rem;
  color: #5a7a9a;
  font-style: italic;
  padding: 4px 0 2px 0;
  border-bottom: none;
}

aside.seitenleiste nav ul li.indent a {
  padding-left: 10px;
  font-size: 0.88rem;
}

/* HAUPTFENSTER (Seiten mit weißer Karte) */
main.hauptfenster {
  flex: 1;
  background-color: #ffffff;
  border: 1px solid #c8d8e4;
  border-radius: 4px;
  padding: 32px;
}

/* BIBELVERS */
.bibelvers {
  background-color: #f0f6fb;
  border-left: 3px solid #7aaac8;
  padding: 10px 14px;
  margin: 10px 0;
  font-style: italic;
  font-size: 0.92rem;
  color: #2a4a6c;
}

/* GEBET */
.gebet {
  background-color: #f7f9fb;
  border: 1px dashed #b0cce0;
  border-radius: 3px;
  padding: 14px;
  margin: 14px 0;
  font-style: italic;
  font-size: 0.93rem;
  line-height: 1.7;
}

/* DOWNLOAD-LINK */
.download-link {
  margin-top: 28px;
  padding-top: 16px;
  border-top: 1px solid #dde8f0;
}

.download-link a {
  display: inline-block;
  padding: 8px 18px;
  background-color: #7aaac8;
  color: #fff;
  text-decoration: none;
  border-radius: 3px;
  font-size: 0.9rem;
}

.download-link a:hover {
  background-color: #5a8ab0;
}

/* QUELLENHINWEIS */
.quellenhinweis {
  font-size: 0.82rem;
  color: #7a9ab8;
  margin-top: 20px;
}

/* EINFACHE SEITEN (Impressum, Disclaimer, etc.) */
.inhalt {
  background-color: #ffffff;
  border: 1px solid #c8d8e4;
  border-radius: 4px;
  padding: 36px;
}

.inhalt h2 {
  font-size: 1.4rem;
  color: #1a3a5c;
  margin-bottom: 20px;
}

.inhalt h3 {
  font-size: 1.0rem;
  color: #1a3a5c;
  margin: 20px 0 8px 0;
}

.inhalt p {
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 8px;
}

.inhalt a {
  color: #1a3a5c;
}

.zurueck {
  margin-bottom: 16px;
  font-size: 0.9rem;
}

.zurueck a {
  color: #3a5a7c;
  text-decoration: none;
}

.zurueck a:hover {
  text-decoration: underline;
}

/* FOOTER */
footer {
  background-color: #b8cfe8;
  border-top: 2px solid #9ab8d8;
  text-align: center;
  padding: 16px 32px;
  font-size: 0.85rem;
  color: #3a5a7c;
  margin-top: 32px;
}

footer a {
  color: #1a3a5c;
  text-decoration: none;
  margin: 0 8px;
}

footer a:hover {
  text-decoration: underline;
}
