.hero {
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}

.hero-content {
  margin: 30px 0 0 35px;
  position: relative;
  z-index: 1;
  text-align: left;
  color: var(--text-light);
  max-width: 1200px;
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 16px;
  line-height: 1.2;
}

.hero p {
  font-size: 1.5rem;
  margin-bottom: 32px;
  color: #e5e5e5;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-buttons .btn {
  font-size: 20px;
}

@media (max-width: 992px) {
  .hero {
    height: 100vh;
  }
}

@media (max-width: 768px) {
  .hero {
    height: 100vh;
    background-attachment: scroll;
  }
  .hero h1 {
    font-size: 2.5rem;
  }
  .hero p {
    font-size: 1.1rem;
  }
  .hero-buttons {
    flex-direction: column;
    gap: 12px;
  }
  .btn {
    width: 100%;
    text-align: center;
  }
}
@media (max-width: 560px) {
  .hero-content { margin: 20px 0 0 20px; }
  .hero h1 { font-size: 2.2rem; }
  .hero p { font-size: 1rem; }
  .hero-buttons .btn { font-size: 0.95rem; padding: 12px 20px; }
}
@media (max-width: 420px) {
  .hero h1 { font-size: 1.9rem; line-height: 1.25; }
  .hero p { font-size: 0.95rem; }
}