/* ===== VIDEO SECTION ===== */
.video-section {
  padding: 90px 0;
  background: #fff;
}

/* Video Card */
.video-card {
  cursor: pointer;
  margin-bottom: 30px;
}

.video-thumb {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.08);
}

.video-thumb img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.video-card:hover img {
  transform: scale(1.08);
}

/* Play Button */
.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 65px;
  height: 65px;
  background: rgba(84,33,32,0.9);
  border-radius: 50%;
}

.play-btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-40%, -50%);
  border-style: solid;
  border-width: 12px 0 12px 18px;
  border-color: transparent transparent transparent #EEC35D;
}

/* Title */
.video-title {
  margin-top: 15px;
  font-size: 17px;
  font-weight: 600;
  color: #542120;
  text-align: center;
}

/* ===== POPUP ===== */
.video-popup {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.video-popup.active {
  display: flex;
}

.video-popup-content {
  position: relative;
  width: 90%;
  max-width: 900px;
  background: #000;
  border-radius: 12px;
  overflow: hidden;
}

.video-popup-content iframe {
  width: 100%;
  height: 500px;
  border: none;
}

/* Close Button */
.video-close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 32px;
  background: none;
  border: none;
  color: #EEC35D;
  cursor: pointer;
  z-index: 10;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .video-thumb img {
    height: 200px;
  }

  .video-popup-content iframe {
    height: 280px;
  }
}
