.hero-section {
  position: relative;
  width: 100%;
  height: 100vh;
  background: url('/assets/images/hero.jpg') no-repeat center center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-overlay {
  background: rgba(0, 0, 0, 0.6); /* dark overlay for white text contrast */
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-content {
  text-align: center;
  color: #fff;
  max-width: 700px;
  padding: 20px;
}

.hero-content h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #ffffff;
}

.hero-content h1 span {
  color: #000000; /* Black accent for brand name */
  background: #ffffff;
  padding: 0 8px;
  border-radius: 4px;
}

.hero-tagline {
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 15px;
  color: #f0f0f0;
}

.hero-desc {
  font-size: 1rem;
  margin-bottom: 25px;
  line-height: 1.6;
  color: #e0e0e0;
}

.hero-btn {
  background: #000000;
  color: #ffffff;
  padding: 12px 28px;
  text-decoration: none;
  border-radius: 4px;
  font-weight: 600;
  transition: 0.3s;
  border: 2px solid #ffffff;
}

.hero-btn:hover {
  background: #ffffff;
  color: #000000;
}