/* Hero Section Styles */
.hero {
  height: 100vh;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--color-text-inverse);
}

.video-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  padding: var(--space-2) 0;
  background-image: url('https://images.pexels.com/photos/6447217/pexels-photo-6447217.jpeg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.video-container video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.6) 0%,
    rgba(0, 0, 0, 0.4) 60%,
    rgba(0, 0, 0, 0.7) 100%
  );
}

.hero-content {
  max-width: 80rem;
  padding: 0 var(--space-3);
  margin-top: var(--space-6);
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: 5.6rem;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: var(--space-3);
  text-shadow: 0 0.2rem 0.4rem rgba(0, 0, 0, 0.4);
}

.hero h1 span {
  color: var(--color-secondary);
  display: block;
  font-size: 0.9em;
}

.hero p {
  font-size: 2rem;
  margin-bottom: var(--space-4);
  text-shadow: 0 0.1rem 0.2rem rgba(0, 0, 0, 0.3);
  max-width: 60rem;
  margin-left: auto;
  margin-right: auto;
}

.hero .btn-primary {
  padding: var(--space-2) var(--space-4);
  font-size: 1.8rem;
  letter-spacing: 0.05rem;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .hero h1 {
    font-size: 4.8rem;
  }

  .hero p {
    font-size: 1.8rem;
  }
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 4rem;
  }

  .hero p {
    font-size: 1.6rem;
  }
}

@media (max-width: 576px) {
  .hero h1 {
    font-size: 3.2rem;
  }

  .hero-content {
    padding: 0 var(--space-2);
  }
}