/* ==========================================================
   Premium Video Section
   ========================================================== */

.bt-video-section {
  padding-bottom: 100px;
  background-color: var(--white-color, #ffffff);
}

.bt-video-wrapper {
  position: relative;
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  background-color: #000;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
}

.bt-video-thumbnail-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  transition: opacity 0.3s ease;
}

.bt-video-thumbnail-container figure {
  width: 100%;
  height: 100%;
  margin: 0;
}

.bt-video-thumbnail {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bt-video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(25, 35, 36, 0.4); /* Primary color #192324 with opacity */
  z-index: 3;
  transition: background 0.3s ease;
}

.bt-video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background-color: #7c877f; /* Accent color */
  color: #ffffff;
  border: none;
  z-index: 4;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  padding-left: 6px;
  box-shadow: 0 0 0 0 rgba(124, 135, 127, 0.5);
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.bt-video-play-btn::before {
  content: "";
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  border-radius: 50%;
  border: 1px solid rgba(124, 135, 127, 0.5);
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.4s ease;
}

.bt-video-wrapper:hover .bt-video-overlay {
  background: rgba(25, 35, 36, 0.2);
}

.bt-video-wrapper:hover .bt-video-play-btn {
  transform: translate(-50%, -50%) scale(1.05);
  background-color: #192324; /* Primary color */
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.bt-video-wrapper:hover .bt-video-play-btn::before {
  opacity: 1;
  transform: scale(1.1);
}

.bt-video-iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 1;
}

@media (max-width: 768px) {
  .bt-video-section {
    padding-bottom: 50px;
  }
  .bt-video-play-btn {
    width: 70px;
    height: 70px;
    font-size: 20px;
    padding-left: 4px;
  }
}
