/**
 * Sub Hero Video styles
 */

.sub-hero-video {

  .video-container {
    max-width: 900px;
    margin: 0 auto;
  }
  
  .video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
  }
  
  /* Styles for the custom thumbnail */
  .video-thumbnail {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    
    img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      position: absolute;
      top: 0;
      left: 0;
    }
    
    .play-button-overlay {
      position: relative;
      z-index: 3;
      transition: transform 0.2s ease;
    }
    
    &:hover .play-button-overlay {
      transform: scale(1.1);
    }
    
    /* Responsive sizing for the play button */
    @media (max-width: 768px) {
      .play-button-overlay svg {
        width: 80px;
        height: 80px;
      }
    }
    
    @media (max-width: 576px) {
      .play-button-overlay svg {
        width: 60px;
        height: 60px;
      }
    }
  }
  
  /* Styles for the YouTube iframe container */
  .youtube-iframe-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    
    iframe {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}
