/* Dolly Copp home page — custom styles */

:root {
  --dc-cream: #faf6ee;
  --dc-ink: #2f2a22;
  --dc-green: #3d5a3d;
  --dc-green-dark: #2c4230;
  --dc-gold: #a9884f;
}

body {
  background-color: var(--dc-cream);
  color: var(--dc-ink);
  font-family: 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.hero-block {
  padding-top: 3rem;
  padding-bottom: 1rem;
}

.hero-image {
  max-width: 460px;
  width: 100%;
  border-radius: 4px;
  box-shadow: 0 12px 30px rgba(47, 42, 34, 0.18);
}

.hero-subtitle {
  margin-top: 2rem;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.06em;
  line-height: 1.7;
  color: var(--dc-green-dark);
}

.hero-subtitle span {
  display: block;
}

.ebook-intro {
  text-align: center;
  font-weight: 900;
  font-size: 18px;
  color: var(--dc-ink);
  margin-top: 0.5rem;
}
.ebook-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.25rem;
  margin-top: 1.0rem;
}

.ebook-card {
  flex: 1 1 320px;
  max-width: 360px;
  background: #fff;
  border: 1px solid rgba(169, 136, 79, 0.35);
  border-radius: 8px;
  padding: 1.75rem 1.5rem;
  text-align: center;
  box-shadow: 0 4px 14px rgba(47, 42, 34, 0.06);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.ebook-card:hover {
  box-shadow: 0 10px 24px rgba(47, 42, 34, 0.14);
  transform: translateY(-2px);
}

.ebook-card a.ebook-title {
  display: block;
  font-size: 24px;
  line-height: 1.35;
  font-weight: 700;
  color: var(--dc-green);
  text-decoration: none;
}

.ebook-card a.ebook-title:hover {
  color: var(--dc-green-dark);
  text-decoration: underline;
}

.ebook-tags {
  margin-top: 1rem;
  font-size: 12px;
  letter-spacing: 0.02em;
  line-height: 1.8;
  color: #6b6252;
}

.content-section p {
  color: var(--dc-ink);
}

.page-footer {
  background-color: var(--dc-cream) !important;
  border-top: 1px solid rgba(169, 136, 79, 0.3);
  color: #6b6252;
}
