/* ===========================
   CELEBRATO EVENTS — videos.css
   =========================== */

/* Video Hero */
.videos-hero {
  position: relative;
  min-height: 55vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 9rem 2rem 4rem;
  overflow: hidden;
}
.videos-hero-video {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.videos-hero-video video {
  width: 100%; height: 100%;
  object-fit: cover;
}
.videos-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(8,8,8,0.88) 0%, rgba(8,8,8,0.65) 50%, rgba(8,8,8,0.88) 100%);
  z-index: 1;
}
.videos-hero-content {
  position: relative;
  z-index: 2;
}

/* MAIN VIDEO GRID */
.videos-section {
  padding: var(--space-xl) 0;
}
.videos-section .container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 2rem;
}
.video-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: var(--space-md);
}
.vid-card {
  border-radius: 10px;
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border);
  transition: all 0.4s;
  display: block;
}
.vid-card:hover {
  border-color: rgba(201,168,76,0.5);
  box-shadow: 0 16px 50px rgba(201,168,76,0.15);
  transform: translateY(-4px);
}
.thumb-container {
  position: relative;
  aspect-ratio: 9/16;
  overflow: hidden;
}
.thumb-container img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.vid-card:hover .thumb-container img { transform: scale(1.04); }
.video-info-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8,8,8,0.85) 0%, rgba(8,8,8,0.2) 50%, transparent 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  transition: background 0.4s;
}
.vid-card:hover .video-info-overlay {
  background: linear-gradient(to top, rgba(8,8,8,0.75) 0%, rgba(8,8,8,0.25) 50%, transparent 100%);
}
.play-circle {
  width: 70px; height: 70px;
  background: rgba(201,168,76,0.9);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  color: #080808;
  padding-left: 5px;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 4px 20px rgba(201,168,76,0.4);
}
.vid-card:hover .play-circle {
  transform: scale(1.2);
  box-shadow: 0 4px 40px rgba(201,168,76,0.6);
}
.video-meta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
}
.v-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--text-primary);
  font-weight: 600;
}
.v-date {
  font-size: 0.78rem;
  color: var(--gold);
  letter-spacing: 0.1em;
}

/* BEHIND THE SCENES */
.bts-section {
  padding: var(--space-xl) 0;
  background: var(--bg-secondary);
  overflow: hidden;
}
.bts-section .container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 2rem;
}
.bts-scroll {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  padding: var(--space-md) 0;
  scrollbar-width: none;
  -ms-overflow-style: none;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}
.bts-scroll::-webkit-scrollbar { display: none; }
.bts-item {
  flex-shrink: 0;
  width: 260px;
  aspect-ratio: 1/1;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  scroll-snap-align: start;
}
.bts-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.bts-item:hover img { transform: scale(1.06); }
.bts-overlay {
  position: absolute; inset: 0;
  background: rgba(201,168,76,0.7);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.4s;
}
.bts-item:hover .bts-overlay { opacity: 1; }
.bts-overlay span {
  font-size: 0.75rem;
  font-weight: 600;
  color: #080808;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  text-align: center;
}

/* FOLLOW SECTION */
.videos-follow {
  padding: var(--space-xl) 0;
  text-align: center;
}
.videos-follow .container {
  max-width: 700px;
  margin: 0 auto;
  padding: 0 2rem;
}
.videos-follow p { color: var(--text-secondary); margin-bottom: 1.25rem; }
.insta-handle-big {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.25rem);
  color: var(--gold);
  font-style: italic;
  display: block;
  margin-bottom: 2rem;
}

/* Responsive */
@media (max-width: 768px) {
  .video-cards-grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
}
@media (max-width: 480px) {
  .video-cards-grid { max-width: 100%; }
}
