/* MeisterWartung Video Section Styles - Neu formatiert */
.mw-video-section {
  padding: 90px 0 145px;
  background: #ffffff;
  position: relative;
  overflow: hidden;
}

.mw-video-container-wrapper {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.mw-video-text-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.mw-video-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #1a202c;
}

.mw-video-description {
  font-size: 18px;
  line-height: 1.6;
  color: #4a5568;
  margin-bottom: 0;
}

.mw-video-highlight {
  background: linear-gradient(135deg, #6366F1, #A855F7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.mw-video-wrapper {
  position: relative;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  background: #000;
  aspect-ratio: 16/9;
}

.mw-video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* Video Controls */
.mw-video-controls-container {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 16px;
  z-index: 10;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mw-video-wrapper:hover .mw-video-controls-container {
  opacity: 1;
}

.mw-video-control-btn {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(4px);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  cursor: pointer;
  transition: all 0.2s ease;
}

.mw-video-control-btn:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
}

.mw-fullscreen-control {
  position: absolute;
  bottom: 20px;
  right: 20px;
  z-index: 10;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mw-video-wrapper:hover .mw-fullscreen-control {
  opacity: 1;
}

.mw-volume-control {
  position: absolute;
  bottom: 20px;
  left: 20px;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 8px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mw-video-wrapper:hover .mw-volume-control {
  opacity: 1;
}

.mw-volume-slider {
  width: 80px;
  height: 4px;
  -webkit-appearance: none;
  appearance: none;
  background: rgba(255, 255, 255, 0.3);
  outline: none;
  border-radius: 2px;
}

.mw-volume-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: white;
  cursor: pointer;
}

.mw-volume-slider::-moz-range-thumb {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: white;
  cursor: pointer;
  border: none;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .mw-video-section {
    padding: 60px 0 100px;
  }
  
  .mw-video-title {
    font-size: 28px;
  }
  
  .mw-video-description {
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .mw-video-section {
    padding: 50px 0 80px;
  }
  
  .mw-video-container-wrapper {
    gap: 30px;
  }
  
  .mw-video-title {
    font-size: 24px;
  }
  
  .mw-video-description {
    font-size: 15px;
  }
  
  .mw-video-controls-container {
    bottom: 15px;
    gap: 12px;
  }
  
  .mw-video-control-btn {
    width: 36px;
    height: 36px;
  }
  
  .mw-fullscreen-control {
    bottom: 15px;
    right: 15px;
  }
  
  .mw-volume-control {
    bottom: 15px;
    left: 15px;
  }
}

@media (max-width: 576px) {
  .mw-video-section {
    padding: 40px 0;
  }
  
  .mw-video-container-wrapper {
    gap: 20px;
  }
  
  .mw-video-title {
    font-size: 22px;
    margin-bottom: 15px;
  }
  
  .mw-video-description {
    font-size: 14px;
  }
  
  .mw-video-controls-container {
    bottom: 10px;
    gap: 8px;
  }
  
  .mw-video-control-btn {
    width: 32px;
    height: 32px;
  }
  
  .mw-fullscreen-control {
    bottom: 10px;
    right: 10px;
  }
  
  .mw-volume-control {
    bottom: 10px;
    left: 10px;
  }
  
  .mw-volume-slider {
    width: 60px;
  }
}
