body {
    font-family: 'Merriweather', serif;
  }
  
  h1,
  h2,
  h3,
  h4 {
    font-family: 'Merriweather', serif;
    font-weight: 700; /* Bold for titles */
    margin-top: 1.5em;
    margin-bottom: 0.5em;
  }
  
  h1 {
    font-size: 2.2rem;
  }
  
  h2 {
    font-size: 1.6rem;
  }
  
  p {
    margin-bottom: 1.3em;
  }

  .gallery-home-card {
  overflow: hidden;
  border-radius: 0.75rem;
  background-color: var(--bs-tertiary-bg);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.gallery-home-card:hover {
  transform: translateY(-3px);
}

.gallery-home-image {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.gallery-home-card .card-title {
  color: var(--bs-body-color);
}