/* General category images */
.responsive-img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
}

/* Hero section */
.hero-section {
  position: relative;
  width: 100%;
  height: 100vh; /* Full viewport height */
  overflow: hidden;
}

.hero-section .hero-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.3); /* dark overlay */
  text-align: center;
  color: white;
  padding: 1rem;
}

.hero-logo {
  max-width: 200px;
  height: auto;
  margin-bottom: 1rem;
}

.hero-slogan {
  font-size: clamp(1.5rem, 3vw, 3rem);
  font-weight: bold;
}

/* Mobile logo scaling */
@media (max-width: 768px) {
  .hero-logo {
    max-width: 120px;
  }
}
