#video-banner {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background: #000;
}

.youtube-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
}

.youtube-container iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-overlay {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
}

.video-content {
  color: #fff;
  max-width: 800px;
}

.video-subtitle {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  font-weight: 300;
}

.video-title {
  font-size: 3rem;
  margin-bottom: 2rem;
  font-weight: bold;
}

.video-button {
  display: inline-block;
  background: white;
  color: #003057;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s;
}

.video-button:hover {
  background: #003057;
  color: white;
}
