.hero {
  position: relative;
  width: 100%;
  height: 450px;
  overflow: hidden;
  font-family: Arial, sans-serif;
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(55%);
}

.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #ffffff;
  padding: 0 20px;
}

.hero-content h1 {
  font-size: 48px;
  margin: 0;
  font-weight: 700;
  letter-spacing: 1px;
}

.hero-content p {
  font-size: 20px;
  margin: 15px 0 25px;
}

.hero-btn {
  display: inline-block;
  padding: 14px 35px;
  background: linear-gradient(45deg, #ff7a00, #ffb347);
  color: white;
  text-decoration: none;
  font-size: 18px;
  font-weight: 600;
  border-radius: 30px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
  transition: 0.3s ease;
}

.hero-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.35);
}