/**
 * Lite YouTube Embed CSS
 * Displays thumbnail placeholder until user clicks to play
 * Preserves existing design while reducing initial JS execution
 */

/* Lite YouTube container - matches existing testimonial-video dimensions */
.lite-youtube {
  position: relative;
  display: block;
  width: 100%;
  height: 315px;
  background-color: #000;
  background-position: center center;
  background-size: cover;
  cursor: pointer;
  overflow: hidden;
  border-radius: 8px;
}

/* Maintain aspect ratio for responsive sizing */
.lite-youtube::before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0,0,0,0.4) 0%, transparent 60%);
  z-index: 1;
  pointer-events: none;
}

/* Play button - matches YouTube's native styling */
.lite-youtube .lty-playbtn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 68px;
  height: 48px;
  background: linear-gradient(135deg, #FF0000 0%, #CC0000 100%);
  border-radius: 14px;
  z-index: 2;
  transition: all 0.15s ease;
  box-shadow: 0 4px 20px rgba(255, 0, 0, 0.4);
}

.lite-youtube:hover .lty-playbtn {
  background: #f00;
  transform: translate(-50%, -50%) scale(1.1);
  box-shadow: 0 6px 25px rgba(255, 0, 0, 0.5);
}

.lite-youtube:focus .lty-playbtn {
  outline: 2px solid #fff;
  outline-offset: 2px;
}

/* Play icon triangle */
.lite-youtube .lty-playbtn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) translateX(2px);
  border-style: solid;
  border-width: 11px 0 11px 19px;
  border-color: transparent transparent transparent #fff;
}

/* Loading state indicator */
.lite-youtube.lty-loading .lty-playbtn {
  animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

/* Hidden iframe until activated */
.lite-youtube > iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  border: 0;
}

/* Increased height variant for testimonials */
.lite-youtube.increased-height {
  height: 315px;
}

/* YouTube Shorts container styling (preserves existing design) */
.lite-youtube.youtube-shorts {
  height: 315px;
}

/* Title/caption overlay */
.lite-youtube .lty-title {
  position: absolute;
  bottom: 12px;
  left: 12px;
  right: 12px;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  z-index: 2;
  text-shadow: 0 1px 2px rgba(0,0,0,0.5);
  opacity: 0;
  transition: opacity 0.2s ease;
}

.lite-youtube:hover .lty-title {
  opacity: 1;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .lite-youtube {
    height: 200px;
  }
  
  .lite-youtube.increased-height {
    height: 200px;
  }
  
  .lite-youtube .lty-playbtn {
    width: 54px;
    height: 38px;
    border-radius: 10px;
  }
  
  .lite-youtube .lty-playbtn::before {
    border-width: 9px 0 9px 15px;
  }
}
