/* Hero Section Styles */
.hero {
  height: 100vh;
  min-height: 600px;
  background-color: var(--gray-light);
  position: relative;
  display: flex;
  align-items: center;
  padding-top: 70px;
  overflow: hidden;
}

.hero-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.hero-content {
  width: 50%;
  padding-right: 40px;
}

.hero-title {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 18px;
  margin-bottom: 32px;
  color: var(--gray-dark);
}

.hero-buttons {
  display: flex;
  gap: 16px;
}

.hero-video {
  width: 50%;
  position: relative;
  padding-top: 28.125%; /* 16:9 aspect ratio */
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.hero-video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: var(--border-radius);
}

@media (max-width: 992px) {
  .hero-container {
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }

  .hero-content {
    width: 100%;
    padding-right: 0;
    margin-bottom: 40px;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-video {
    width: 100%;
    padding-top: 56.25%; /* 16:9 aspect ratio */
  }
}

@media (max-width: 768px) {
  .hero {
    height: auto;
    padding: 120px 0 60px;
  }

  .hero-title {
    font-size: 36px;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 12px;
    align-items: center;
  }

  .hero-buttons .btn {
    width: 100%;
    max-width: 300px;
  }
}