/* Base Typography */
body {
  margin: 0;
  font-family: 'Georgia', serif;
  font-size: 18px;
  background-color: #f8f4ef;
  color: #2f2f2f;
  line-height: 1.6;
  padding: 0 ;
}

h1, h2, h3 {
  font-family: 'Helvetica Neue', sans-serif;
  font-weight: 600;
  color: #2f2f2f;
  margin-top: 2rem;
}

.site-title {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 0.25rem;
}

.site-quote {
  text-align: center;
  font-style: italic;
  color: #6a4ea3;
}

/* Navigation */
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  background-color: #4e3f55;
  color: white;
  padding: 1rem;
  margin-bottom: 1rem;
  margin-top: 0px;
}

.nav-title {
  font-family: 'Helvetica Neue', sans-serif;
  font-size: 1.4rem;
  font-weight: bold;
}

.nav-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 1rem;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #dccded;
}

.entry { margin-bottom: 3rem; }
    .meta { font-size: 0.95rem; color: #555; margin-top: 0.5rem; }

/* Layout */
header, footer {
  text-align: center;
  padding-top: 0;
  padding-left: 0;
  padding-right: 0;
  padding-bottom: 1rem;
}

main {
  max-width: 900px;
  margin: 0 auto;
  padding: 1rem;
}

.books {
  margin-top: 3rem;
}

.book-list {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

.book {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  padding: 1rem;
  max-width: 300px;
  flex: 1 1 260px;
}

.book img {
  max-width: 100%;
  border-radius: 4px;
}

.btn {
  display: inline-block;
  margin-top: 1rem;
  background-color: #6a4ea3;
  color: white;
  text-decoration: none;
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.btn:hover {
  background-color: #5a3e93;
}

footer {
  margin-top: 4rem;
  font-size: 0.9rem;
  color: #777;
  text-align: center;
  padding: 2rem 1rem;
  background-color: #f5f2f8;
  border-top: 1px solid #ddd;
}

.footer-tagline {
  margin-top: 1rem;
  font-style: italic;
  color: #a084c4;
}

section.cta {
    text-align: center;
}


@media (max-width: 600px) {
  .book-list {
    flex-direction: column;
    align-items: center;
  }
  .nav {
    flex-direction: column;
    align-items: flex-start;
    margin-top:0;
  }
  .nav-links {
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 0.5rem;
  }
}
