/* ========================================
   VIDEO PAGE STYLES
   ======================================== */

.video-hero {
  padding: calc(var(--header-plus-bar-mobile) + 3rem) 0 4rem;
  text-align: center;
  background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-darker) 100%);
}

@media (min-width: 768px) {
  .video-hero {
    padding: calc(var(--header-plus-bar) + 3.5rem) 0 4rem;
  }
}

.video-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 700;
  margin: 1rem 0 0.5rem;
  background: linear-gradient(135deg, var(--text-primary) 0%, var(--accent-gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Featured Video Section */
.video-featured {
  padding: 3rem 0;
  background: var(--bg-darker);
}

.featured-video {
  position: relative;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.featured-video iframe {
  display: block;
  aspect-ratio: 16 / 9;
  height: auto;
  border-radius: 12px;
}

/* Video Grid Section */
.video-grid-section {
  padding: 3rem 0 4rem;
  background: var(--bg-darker);
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.video-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background: var(--bg-card);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.video-embed {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 Aspect Ratio */
}

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

/* Responsive Video Grid */
@media (max-width: 1200px) {
  .video-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 900px) {
  .video-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .video-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .video-grid-section {
    padding: 2rem 0 3rem;
  }
}

/* Spotify Section */
.video-spotify {
  padding: 4rem 0;
  background: var(--bg-dark);
}

.video-spotify .section-header {
  text-align: center;
  margin-bottom: 2rem;
}

.video-spotify .section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 600;
  margin-top: 0.5rem;
}

.video-spotify .spotify-embed {
  max-width: 800px;
  margin: 0 auto;
  border-radius: 12px;
  overflow: hidden;
}

/* CTA Section */
.video-cta {
  padding: 4rem 0;
  text-align: center;
  background: linear-gradient(135deg, var(--bg-darker) 0%, var(--bg-dark) 100%);
}

.video-cta h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.video-cta p {
  color: var(--text-secondary);
  margin-bottom: 2rem;
}

.video-cta .cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.video-cta .btn-primary {
  background: var(--accent-blue);
  color: var(--bg-dark);
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.video-cta .btn-primary:hover {
  background: var(--accent-gold);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(211, 175, 55, 0.3);
}

.video-cta .btn-outline {
  background: transparent;
  color: var(--text-primary);
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  border: 2px solid var(--accent-gold);
  text-decoration: none;
  transition: all 0.3s ease;
}

.video-cta .btn-outline:hover {
  background: var(--accent-gold);
  color: var(--bg-dark);
}

/* Responsive */
@media (max-width: 768px) {
  .video-hero {
    padding: 7rem 0 3rem;
  }

  .video-featured {
    padding: 2rem 0;
  }

  .featured-video iframe {
    height: 300px;
  }

  .video-spotify {
    padding: 3rem 0;
  }
}
