/* ============================================================
   VIDEOS PAGE — ADDITIONAL STYLES
   ============================================================ */

.videos-page { background: var(--clr-bg); }

/* ── VIDEOS HERO ─────────────────────────────────────────── */
.videos-hero {
  position: relative;
  z-index: 1;
  height: 55vh;
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 2rem;
  overflow: hidden;
  background: radial-gradient(ellipse at top, #2d0a00 0%, #0d0500 60%);
}
.videos-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 
    radial-gradient(circle at 20% 50%, rgba(192,57,43,0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 30%, rgba(212,160,23,0.1) 0%, transparent 50%);
}
.videos-hero-content {
  position: relative;
  z-index: 2;
  animation: heroFadeIn 1s ease both;
}
.videos-hero-title {
  font-family: var(--ff-display);
  font-size: clamp(2.5rem, 7vw, 5rem);
  line-height: 1.1;
  margin-bottom: 0.75rem;
  color: var(--clr-cream);
}
.videos-hero-title em { color: var(--clr-gold); }
.videos-hero-sub {
  font-family: var(--ff-heading);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--clr-text);
}

/* ── VIDEOS SECTION ──────────────────────────────────────── */
.videos-section {
  position: relative;
  z-index: 1;
  padding: 5rem 0;
  background: var(--clr-bg);
}
.videos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  margin-top: 0.5rem;
}

/* ── VIDEO CARD ──────────────────────────────────────────── */
.video-card {
  background: var(--clr-surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(212,160,23,0.1);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.video-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.5), 0 0 30px rgba(212,160,23,0.15);
}
.video-card.featured {
  grid-column: span 3;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  align-items: stretch;
  border-color: rgba(212,160,23,0.25);
}

.video-thumb-wrap {
  position: relative;
  overflow: hidden;
  min-height: 220px;
}
.video-card.featured .video-thumb-wrap { min-height: 360px; }

.video-bg-preview {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  transition: transform 0.5s ease;
}
.video-card:hover .video-bg-preview { transform: scale(1.05); }

.video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(13,5,0,0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.35s;
}
.video-card:hover .video-overlay { background: rgba(13,5,0,0.25); }

.play-btn {
  width: 70px; height: 70px;
  border-radius: 50%;
  background: rgba(192,57,43,0.85);
  border: 3px solid rgba(255,255,255,0.5);
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
  backdrop-filter: blur(6px);
  color: white;
}
.play-btn:hover {
  background: var(--clr-gold);
  transform: scale(1.12);
  border-color: var(--clr-gold);
}
.play-icon { font-size: 1.4rem; margin-left: 4px; }

.video-tag {
  position: absolute;
  top: 1rem; left: 1rem;
  background: var(--clr-gold);
  color: var(--clr-bg);
  font-family: var(--ff-body);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: 100px;
}

.video-info {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.video-info h3 {
  font-family: var(--ff-heading);
  font-size: 1.4rem;
  color: var(--clr-cream);
  margin-bottom: 0.5rem;
}
.video-info p {
  color: var(--clr-text-muted);
  font-size: 0.9rem;
  line-height: 1.65;
}

/* ── VIDEO MODAL ─────────────────────────────────────────── */
.video-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 3000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s;
}
.video-modal-backdrop.open { opacity: 1; pointer-events: all; }

.video-modal {
  position: fixed;
  inset: 0;
  z-index: 3001;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s;
}
.video-modal.open { opacity: 1; pointer-events: all; }

.video-modal-inner {
  position: relative;
  width: 100%;
  max-width: 900px;
  background: var(--clr-surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 2px solid rgba(212,160,23,0.3);
  box-shadow: 0 30px 80px rgba(0,0,0,0.8);
  animation: lbZoomIn 0.4s ease both;
}
.modal-video {
  width: 100%;
  max-height: 80vh;
  display: block;
  background: #000;
}
.video-modal-close {
  position: absolute;
  top: 1rem; right: 1rem;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(0,0,0,0.6);
  color: white;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  z-index: 10;
  border: 1px solid rgba(255,255,255,0.2);
  transition: background 0.3s;
}
.video-modal-close:hover { background: var(--clr-red); }

/* ── VIDEOS CTA ──────────────────────────────────────────── */
.videos-cta {
  position: relative;
  z-index: 1;
  padding: 6rem 2rem;
  background: radial-gradient(ellipse at bottom, #2d0a00, #0d0500);
  border-top: 1px solid rgba(212,160,23,0.1);
}

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 1024px) {
  .videos-grid { grid-template-columns: 1fr 1fr; }
  .video-card.featured {
    grid-column: span 2;
    grid-template-columns: 1fr;
  }
  .video-card.featured .video-thumb-wrap { min-height: 280px; }
}

@media (max-width: 640px) {
  .videos-grid { grid-template-columns: 1fr; }
  .video-card.featured { grid-column: span 1; }
}
