.homehero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 120px 7% 80px;
}

.homehero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.homehero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 40%, rgba(122, 14, 14, 0.45), transparent 35%),
    linear-gradient(90deg, rgba(0,0,0,0.82), rgba(0,0,0,0.55), rgba(0,0,0,0.28));
}

.homehero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  animation: heroFadeUp 1s ease both;
}

.homehero-kicker {
  color: #f2c14e;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 800;
  margin-bottom: 16px;
}

.homehero h1 {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(2.5rem, 7vw, 3rem);
  font-weight: 500;
  line-height: 0.95;
  letter-spacing: 1px;
  margin-bottom: 24px;
  text-shadow: 0 8px 30px rgba(0,0,0,0.55);
}

.homehero-description {
  max-width: 650px;
  font-size: 1.15rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.9);
  margin-bottom: 34px;
}

.homehero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.homehero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 28px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  transition: 0.25s ease;
}

.homehero-btn.primary {
  background: linear-gradient(135deg, #d4a017, #f4c95d);
  color: #1b1200;
  box-shadow: 0 16px 35px rgba(212, 160, 23, 0.28);
}

.homehero-btn.secondary {
  border: 1px solid rgba(255,255,255,0.35);
  color: #fff;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(8px);
}

.homehero-btn:hover {
  transform: translateY(-3px);
}

@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(34px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .homehero {
    padding: 120px 24px 70px;
    text-align: left;
  }

  .homehero-description {
    font-size: 1rem;
  }

  .homehero-btn {
    width: 100%;
  }
}
