/* VIDEO */
.video-hero {
  position: relative;
  height: calc(100vh - 95px);
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
  color: white;
}

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

.video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.75) 0%,
    rgba(0, 0, 0, 0.45) 45%,
    rgba(0, 0, 0, 0.15) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-content h1 {
  font-size: clamp(42px, 6vw, 82px);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -3px;
  margin-bottom: 25px;
}

.hero-content p {
  max-width: 620px;
  font-size: 20px;
  line-height: 1.6;
  color: rgba(255,255,255,0.88);
  margin-bottom: 35px;
}

.highlight {
  font-family: 'Satisfy', cursive;
  font-size: 1.1em;
  font-weight: 500;
  color: #ffffff;
  letter-spacing: 1px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.25);
}

@media (max-width: 768px) {
  .video-hero {
    height: auto;
    min-height: 650px;
    padding: 90px 0;
  }

  .hero-content h1 {
    font-size: 42px;
  }

  .hero-content p {
    font-size: 17px;
  }
}