/* Hero Video Background - Dark Theme */
.hero-video-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 0;
  opacity: 1;
}

.hero-video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  z-index: 1;
}

.hero-section {
  position: relative;
  overflow: hidden;
}

.hero-container {
  position: relative;
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 2;
}

/* Ensure text is readable over video */
.hero-title,
.hero-description {
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8), 0 2px 10px rgba(0, 0, 0, 0.6);
  color: #ffffff;
}

.hero-title {
  color: #ffffff;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8), 0 2px 10px rgba(0, 0, 0, 0.6);
}

.profile-photo-container {
  position: relative;
  z-index: 3;
}

.profile-photo {
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

/* Buttons enhancement */
.hero-actions .btn {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

/* Mobile optimization for video */
@media (max-width: 768px) {
  .hero-video {
    min-width: 100%;
    min-height: 100%;
    opacity: 1;
  }
  
  .hero-video-overlay {
    background: transparent;
  }
}