/* Books section */
.books-section {
  padding: 60px 0;
  margin: 60px 0;
  text-align: center;
}
.books-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
  max-width: 1250px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 40px;
}
.book-card {
  border: 1px solid rgba(99, 46, 10, 0.1);
  border-radius: 8px;
  background: var(--soft-white);
  overflow: hidden;
  transition: all 0.3s ease;
}
.book-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
}
.book-cover {
  width: 100%;
  height: 300px;
  position: relative;
}
.book-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.book-details-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 12px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0));
}
.overlay-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.2rem;
  color: var(--soft-white);
  margin: 0 0 4px;
}
.overlay-author {
  color: rgba(255, 253, 252, 0.9);
  font-size: 0.95rem;
  margin: 0 0 6px;
}
.overlay-description {
  color: rgba(255, 253, 252, 0.9);
  font-size: 0.9rem;
  margin: 0;
}
@media (max-width: 768px) {
  .books-grid {
    grid-template-columns: 1fr;
  }
}
