/* YouTube villa video gallery — UdaipurVilla.in */
.uv-video-section {
  padding: 64px 0;
  background: var(--lux-bg-elevated, #16161a);
  border-top: 1px solid var(--lux-border, rgba(201, 169, 97, 0.25));
}

.uv-video-section .lux-section-header h2 {
  font-family: var(--font-display, Georgia, serif);
  color: var(--lux-gold, #c9a961);
}

.uv-video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 340px), 1fr));
  gap: 28px;
  margin-top: 32px;
}

.uv-video-card {
  background: var(--lux-bg-card, #1c1c22);
  border: 1px solid var(--lux-border, rgba(201, 169, 97, 0.25));
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}

.uv-video-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}

.uv-video-wrap {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  background: #000;
}

.uv-video-wrap iframe,
.uv-video-wrap .uv-video-facade {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.uv-video-facade {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  background-color: #111;
}

.uv-video-facade img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.85;
}

.uv-play-btn {
  position: absolute;
  width: 68px;
  height: 48px;
  background: rgba(201, 0, 0, 0.9);
  border-radius: 12px;
  border: none;
  cursor: pointer;
  z-index: 2;
  transition: background 0.2s;
}

.uv-play-btn:hover {
  background: #c00;
}

.uv-play-btn::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-35%, -50%);
  border-style: solid;
  border-width: 10px 0 10px 18px;
  border-color: transparent transparent transparent #fff;
}

.uv-video-caption {
  padding: 16px 18px 20px;
}

.uv-video-caption h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--lux-text, #f5f3ef);
  margin: 0 0 8px;
  line-height: 1.4;
}

.uv-video-caption p {
  font-size: 0.875rem;
  color: var(--lux-text-muted, #a8a4a0);
  margin: 0;
  line-height: 1.55;
}

.uv-video-caption a.uv-yt-link {
  display: inline-block;
  margin-top: 10px;
  font-size: 0.8rem;
  color: var(--lux-gold, #c9a961);
  text-decoration: none;
}

.uv-video-caption a.uv-yt-link:hover {
  text-decoration: underline;
}

.uv-video-featured {
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 300px), 1fr));
}

@media (max-width: 640px) {
  .uv-video-section {
    padding: 48px 0;
  }
}
