.hero-section {
  background: url('../assets/hero-bg.jpg') center center / cover no-repeat;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 2rem;
  text-align: center;
  position: relative;
  color: #2c2c2c;
  background-attachment: fixed;
  background-size: cover;
  background-repeat: no-repeat;
}

.hero-section::after {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.35); /* Lighter overlay — better clarity */
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.hero-title {
  font-size: 4rem;
  font-weight: 800;
  margin-bottom: 1rem;
  font-family: 'Georgia', serif;
  color: #222;
}

.hero-subtitle {
  font-size: 1.5rem;
  font-weight: 400;
  color: #734c00;
  margin-bottom: 2rem;
  font-family: 'Segoe UI', sans-serif;
}

.hero-button {
  padding: 1rem 2rem;
  font-size: 1.2rem;
  font-weight: bold;
  background: #f9c74f;
  border: none;
  border-radius: 12px;
  box-shadow: 0 6px 14px rgba(0,0,0,0.1);
  color: #222;
  cursor: pointer;
  transition: all 0.3s ease;
}

.hero-button:hover {
  background: #f8961e;
  color: white;
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.2rem;
  }

  .hero-button {
    font-size: 1rem;
    padding: 0.8rem 1.6rem;
  }
}
