.hero {
  position: relative;
  width: 100%;
  height: 80vh;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 0 4% 80px 4%;
  background-size: cover;
  background-position: center top;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(15,16,20,0.2) 0%, rgba(15,16,20,0) 40%, rgba(15,16,20,1) 100%);
  z-index: 1;
}

.hero-info {
  position: relative;
  z-index: 10;
  max-width: 650px;
  width: 100%;
}

.hero-info h1 {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 15px;
  line-height: 1.1;
  color: #fff;
  text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.hero-btn {
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  background: #E50914;
  color: #fff;
  cursor: pointer;
  border: none;
  transition: transform 0.2s;
}

.hero-btn:hover {
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .hero { 
    height: 60vh; 
  }
  .hero-info h1 { 
    font-size: 2rem; 
  }
}