html body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  margin: 0;
  padding: 0;
  background: url('../img/wood.jpg') repeat center center fixed;
  background-size: cover;
  color: #f5f5dc;
}
.card {
  background-color: rgba(139, 69, 19, 0.50);
  background-size: cover;
  color: #f5f0e6;
  border: none;
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
  border-radius: 12px;
}
.card:hover {
  background-color: rgba(139, 69, 19, 0.75);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6);
}

.card h3 {
  font-family: 'Georgia', serif;
  font-weight: bold;
  color: #f5f0e6; /* Beige */
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
}

p {
  font-size: 1.05rem;
  color: #f5f0e6; /* Beige */
}

header {
  height: 15vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.lead.highlight {
  background-color: rgba(0, 0, 0, 0.5);
  padding: 0.5rem 1rem;
  border-radius: 1rem;
  display: inline-block;
}
.author-img-wrapper-mobile {
  display: none;
  margin-top: 1rem;
  text-align: center;
}

@media (max-width: 767.98px) {
  .author-img-wrapper-mobile {
    display: block;
  }
  .author-img-wrapper {
    display: none;
  }
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: #8b4513;
  border-radius: 50%;
}

.carousel-item img {
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.card-title {
  font-size: 1.25rem;
  font-weight: bold;
  color: #f5f0e6;
}

.card ul li {
  margin-bottom: 0.4rem;
}

.badge {
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  padding: 0.4em 0.75em;
  border-radius: 0.5rem;
}

