/* ===== Buchseiten spezifisch ===== */
.book-description {
  padding: 60px 20px;
  max-width: 800px;
  margin: auto;
  background: rgba(0, 0, 50, 0.5); /* leichter Overlay */
  border-radius: 15px;
  text-align: left;
}

.book-description h2 {
  font-size: 1.8rem;
  color: #ffd;
  margin-bottom: 20px;
}

.book-description p {
  font-size: 1.05rem;
  line-height: 1.6;
  color: #eee;
  text-shadow: 0 1px 2px rgba(0,0,0,0.5);
}

.glow-button {
  display:inline-block;
  padding:16px 28px;
  font-size:20px;
  font-weight:bold;
  color:white;
  background:#1e1e2f;
  border:2px solid #00f7ff;
  border-radius:50px;
  text-decoration:none;
  box-shadow:0 0 10px #00f7ff;
  transition:0.3s;
}

.glow-button:hover {
  background:#00f7ff;
  color:#1e1e2f;
  box-shadow:0 0 20px #00f7ff;
}

.amazon-button {
  display:inline-block;
  padding:16px 28px;
  font-size:20px;
  font-weight:bold;
  color:#111;
  background:#ff9900;
  border:2px solid #ff9900;
  border-radius:50px;
  text-decoration:none;
  box-shadow:0 0 12px rgba(255,153,0,0.7);
  transition:0.3s;
}

.amazon-button:hover {
  background:#111;
  color:#ff9900;
  box-shadow:0 0 20px rgba(255,153,0,1);
}


.kids-accordion {
  margin-top:30px;
  max-width:700px;
}

.accordion-item {
  margin-bottom:12px;
}

.accordion-header {
  width:100%;
  text-align:left;
  padding:14px 20px;
  font-size:18px;
  font-weight:bold;
  background: linear-gradient(135deg, #5f2cff, #00c2ff);
  color:white;
  border:none;
  border-radius:25px;
  cursor:pointer;
  box-shadow:0 0 12px rgba(95,44,255,0.7);
  transition:0.3s;
}

.accordion-header:hover {
  background: linear-gradient(135deg, #00c2ff, #5f2cff);
}

.accordion-content {
  max-height:0;
  overflow:hidden;
  transition:max-height 0.4s ease;
  padding:0 16px;
}

.accordion-content p {
  background:#1e1e2f;
  color:#ffffff;
  padding:12px 16px;
  border-radius:20px;
  margin-top:8px;
  font-size:16px;
  line-height:1.4em;
}
