/* ============================================================
   VIDEO GALLERY PAGE SPECIFIC STYLES
   ============================================================ */

/* Page Title Section */
.page-title-section {
  background: linear-gradient(135deg, var(--primary) 0%, #2a5fa8 100%);
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
}

.page-title-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 300px;
  height: 300px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
}

.page-title-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 250px;
  height: 250px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
}

.page-title-section h1 {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 15px;
  position: relative;
  z-index: 1;
}

.breadcrumb {
  background: transparent;
  padding: 0;
  margin: 0;
}

.breadcrumb-item {
  color: rgba(255,255,255,0.7);
  font-size: 1rem;
}

.breadcrumb-item a {
  color: var(--gold);
  text-decoration: none;
  transition: var(--transition);
}

.breadcrumb-item a:hover {
  color: var(--white);
}

.breadcrumb-item.active {
  color: var(--white);
}

.breadcrumb-item + .breadcrumb-item::before {
  color: rgba(255,255,255,0.5);
  content: "›";
  font-size: 1.2rem;
}

/* Video Gallery Grid */
.video-gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-bottom: 60px;
}

.video-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.video-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(24,63,114,0.15);
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  background: #000;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.video-info {
  padding: 25px;
}

.video-info h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 12px;
}

.video-info p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 15px;
}

.video-meta {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.video-meta span {
  font-size: 0.8rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}

.video-meta i {
  color: var(--accent);
}

/* More Videos Section */
.more-videos-section {
  margin-top: 20px;
}

.coming-soon-card {
  background: linear-gradient(135deg, #f8f9fa 0%, #eef2f8 100%);
  border-radius: 20px;
  padding: 50px 30px;
  text-align: center;
  border: 2px dashed var(--accent);
}

.coming-soon-card i {
  font-size: 3rem;
  color: var(--accent);
  margin-bottom: 20px;
}

.coming-soon-card h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 12px;
}

.coming-soon-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 25px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.notification-box {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
  max-width: 500px;
  margin: 0 auto;
}

.notification-box input {
  flex: 1;
  padding: 12px 18px;
  border: 1px solid #e0e0e0;
  border-radius: 40px;
  font-family: 'Nunito', sans-serif;
  font-size: 0.9rem;
  transition: var(--transition);
}

.notification-box input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(207,46,46,0.1);
}

.notify-btn {
  background: var(--accent);
  color: var(--white);
  border: none;
  padding: 12px 28px;
  border-radius: 40px;
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition);
}

.notify-btn:hover {
  background: var(--primary);
  transform: translateY(-2px);
}

/* Responsive Styles */
@media (max-width: 992px) {
  .page-title-section {
    padding: 60px 0 40px;
  }
  
  .page-title-section h1 {
    font-size: 2.5rem;
  }
  
  .video-gallery-grid {
    gap: 30px;
  }
  
  .video-info h3 {
    font-size: 1.2rem;
  }
}

@media (max-width: 768px) {
  .page-title-section h1 {
    font-size: 2rem;
  }
  
  .breadcrumb-item {
    font-size: 0.9rem;
  }
  
  .video-gallery-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  
  .video-info {
    padding: 20px;
  }
  
  .video-info h3 {
    font-size: 1.1rem;
  }
  
  .video-info p {
    font-size: 0.85rem;
  }
  
  .coming-soon-card {
    padding: 35px 20px;
  }
  
  .coming-soon-card h4 {
    font-size: 1.3rem;
  }
  
  .coming-soon-card i {
    font-size: 2.5rem;
  }
  
  .notification-box {
    flex-direction: column;
    gap: 10px;
  }
  
  .notification-box input {
    width: 100%;
  }
  
  .notify-btn {
    width: 100%;
  }
}

@media (max-width: 576px) {
  .page-title-section {
    padding: 50px 0 30px;
  }
  
  .page-title-section h1 {
    font-size: 1.6rem;
  }
  
  .video-info {
    padding: 15px;
  }
  
  .video-info h3 {
    font-size: 1rem;
  }
  
  .video-meta {
    gap: 12px;
  }
  
  .video-meta span {
    font-size: 0.7rem;
  }
  
  .coming-soon-card {
    padding: 25px 15px;
  }
  
  .coming-soon-card h4 {
    font-size: 1.1rem;
  }
  
  .coming-soon-card p {
    font-size: 0.85rem;
  }
}