/* ========== site.css ========== */

/* Grundlegendes Layout für alle Buchseiten */
body {
  margin: 0;
  font-family: Garamond, Georgia, serif;
  color: #222;
  background: #fafafa;
}

/* Container */
.wrap {
  max-width: 960px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

/* Header */
header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 1.5rem;
}

header h1 {
  margin: 0;
  font-size: 2rem;
}

/* Navigation oben */
nav.topbar {
  background: #111;
  color: #fff;
  padding: .6rem 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

nav.topbar .logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: bold;
}

nav.topbar .logo img {
  width: 38px; height: 38px;
  border-radius: 50%;
}

nav.topbar .links {
  display: flex;
  gap: 12px;
}

nav.topbar .links a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  border: 1px solid #fff;
  padding: .3em .7em;
  border-radius: 8px;
}

nav.topbar .links a:hover {
  background: #fff;
  color: #111;
}

/* Buttons (z. B. Leseprobe) */
.button {
  display: inline-block;
  padding: .5em 1em;
  border-radius: 6px;
  font-weight: bold;
  text-decoration: none;
}

footer {
  margin-top: 3rem;
  font-size: .9rem;
  color: #777;
  border-top: 1px solid #ccc;
  padding-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  align-items: center;
}

footer a {
  color: inherit;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

footer img.el-logo {
  width: 28px; height: 28px;
  border-radius: 50%;
}
