body {
  font-family: 'Poppins', sans-serif;
}
.hero {
  background: url('https://picsum.photos/1920/600?grayscale') no-repeat center center/cover;
  color: white;
  text-shadow: 1px 1px 5px rgba(0,0,0,0.6);
}
.card {
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

/* Added responsive carousel image handling */
.carousel-item img { height: 60vh; object-fit: cover; }
@media (max-width: 768px) { .carousel-item img { height: 40vh; } .carousel-caption { padding: 1rem; } }
.carousel-item .overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.35); }
.carousel-caption h1 { text-shadow: 0 2px 6px rgba(0,0,0,0.6); }
