body { font-family: 'Roboto', sans-serif; }

.hero {
  background-image: url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e?auto=format&fit=crop&w=1600&q=80');
  background-size: cover;
  background-position: center;
  color: white;
  height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-overlay {
  background: rgba(0,0,0,0.5);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-direction: column;
  padding: 20px;
}

.card:hover {
  transform: translateY(-5px);
  transition: all 0.3s ease;
}

.category-badge:hover {
  transform: scale(1.1);
  transition: all 0.3s ease;
}