/* Hero section container */
.vt-hero-container {
  position: relative;
  width: 100%;
  height: calc(100vh - 100px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}

/* Background video */
.vt-hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

/* Overlay */
.vt-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: -1;
}

/* Content styling */
.vt-hero-content {
  font-family: Arial, Helvetica, sans-serif;
  max-width: 800px;
  padding: 0 20px;
  position: relative;
  z-index: 1;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.vt-hero-title {
  font-size: 3.5rem;
  margin-bottom: 20px;
  font-weight: bold;
}

.vt-hero-subtitle {
  color: #dddddd;
  text-align: center;
  font-size: 1rem;
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.vt-hero-cta {
  display: inline-block;
  background-color: white;
  color: black;
  padding: 12px 24px;
  text-decoration: none;
  border-radius: 50px;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
  text-shadow: none;
}

.vt-hero-cta:hover {
  color: #f0f0f0;
  background-color: limegreen;
  transform: scale(1.05);
}

/* Responsive adjustments */
@media screen and (max-width: 768px) {
  .vt-hero-title {
    font-size: 2.5rem;
  }

  .vt-hero-subtitle {
    font-size: 1.2rem;
  }
}