/* Video Gallery Styles */
.video-gallery-section {
  margin-bottom: 30px;
}

/* Full Width Video Styles */
.full-width-video-container {
  margin-bottom: 25px;
  width: 100%;
}

.video-wrapper {
  position: relative;
  width: 100%;
  cursor: pointer;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0,0,0,0.2);
  transition: transform 0.3s ease;
}

.video-wrapper:hover {
  transform: translateY(-5px);
}

.video-thumb {
  width: 100%;
  height: auto;
  display: block;
}

.video-play-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0,0,0,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease;
}

.video-wrapper:hover .video-play-overlay {
  background-color: rgba(0,0,0,0.5);
}

.video-play-btn {
  width: 80px;
  height: 80px;
  background-color: rgba(255, 0, 0, 0.8);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 30px;
  transition: all 0.3s ease;
}

.video-wrapper:hover .video-play-btn {
  background-color: rgba(255, 0, 0, 1);
  transform: scale(1.1);
}

.video-caption {
  font-size: 16px;
  font-weight: 500;
  margin-top: 10px;
  color: #333;
  text-align: center;
}

/* Video Player Container */
.video-player-container {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0,0,0,0.9);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.video-player-wrapper {
  position: relative;
  width: 100%;
  max-width: 1000px;
}

.close-video-btn {
  position: absolute;
  top: -40px;
  right: 0;
  background: none;
  border: none;
  color: white;
  font-size: 30px;
  cursor: pointer;
  outline: none;
  z-index: 10000;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .video-play-btn {
    width: 60px;
    height: 60px;
    font-size: 24px;
  }
  
  .video-caption {
    font-size: 14px;
  }
}

@media (max-width: 576px) {
  .video-play-btn {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }
  
  .video-caption {
    font-size: 13px;
  }
}