/* ============================
   videos.css — Travel Videos Page
   ============================ */

/* ---- Hero (reuse photos-hero) ---- */
.photos-hero {
  position: relative;
  height: 45vh; min-height: 320px;
  display: flex; align-items: center; justify-content: center;
  background: url('https://images.unsplash.com/photo-1547981609-4b6bfe67ca0b?w=1600') center/cover no-repeat;
  overflow: hidden;
}
.photos-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(200,16,46,0.82), rgba(10,20,60,0.88));
}
.photos-hero-content {
  position: relative; z-index: 2;
  text-align: center; color: #fff;
  padding: 0 20px;
}
.photos-breadcrumb {
  font-size: 0.85rem; opacity: 0.85; margin-bottom: 16px;
}
.photos-breadcrumb a { color: rgba(255,255,255,0.85); text-decoration: none; }
.photos-breadcrumb a:hover { color: #FFD700; }
.photos-breadcrumb i { margin: 0 8px; font-size: 0.7rem; }
.photos-hero-content h1 {
  font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 700;
  text-shadow: 0 4px 24px rgba(0,0,0,0.4);
  margin-bottom: 12px;
}
.photos-hero-content p { font-size: 1.05rem; opacity: 0.9; }

/* ---- Videos Grid ---- */
.videos-section { padding: 80px 0; background: #0a0a0a; }
.videos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.video-card {
  background: #1a1a1a; border-radius: 12px;
  overflow: hidden; cursor: pointer;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.video-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(200,16,46,0.25);
}
.video-thumb {
  position: relative;
  aspect-ratio: 16/9; overflow: hidden;
}
.video-thumb img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.45s ease;
}
.video-card:hover .video-thumb img { transform: scale(1.08); }
.play-btn-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.45);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.35s ease;
}
.video-card:hover .play-btn-overlay { opacity: 1; }
.play-btn-overlay i { font-size: 3rem; color: #fff; }
.video-info { padding: 16px 18px; }
.video-info h3 {
  color: #fff; font-size: 1rem; font-weight: 600;
  margin-bottom: 6px; line-height: 1.4;
}
.video-info p { color: #999; font-size: 0.82rem; }
.video-duration {
  position: absolute; bottom: 8px; right: 8px;
  background: rgba(0,0,0,0.75); color: #fff;
  font-size: 0.75rem; padding: 2px 8px; border-radius: 4px;
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .videos-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 640px) {
  .photos-hero { height: 35vh; min-height: 240px; }
  .videos-grid { grid-template-columns: 1fr; }
}
