/* ============================================
   videos.css — Videos Page Styles
   ============================================ */

.videos-hero {
  padding: 12rem 4rem 6rem;
  background: var(--dark);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.videos-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 50% at 50% 50%, rgba(232,93,117,0.12), transparent 70%);
}

.videos-hero .section-label { justify-content: center; color: var(--gold); }
.videos-hero .section-label::before { background: var(--gold); }
.videos-hero .section-title { color: var(--cream); }

.videos-grid-section {
  background: var(--dark);
  padding: 0 4rem 8rem;
}

.videos-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.video-card {
  position: relative;
  cursor: none;
}

.video-card:hover .video-thumb-inner { transform: scale(1.03); }

@media (hover: none), (pointer: coarse) {
  .video-card {
    cursor: pointer;
  }
}

.video-thumb {
  aspect-ratio: 9/16;
  position: relative;
  overflow: hidden;
  margin-bottom: 1.25rem;
  background: #17030a;
}

.video-thumb video,
.video-thumb iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.video-thumb-inner {
  width: 100%;
  height: 100%;
  transition: transform 0.6s ease;
}

.video-thumb-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,241,245,0.34);
  flex-direction: column;
  gap: 1rem;
}

.video-thumb-placeholder .big-icon {
  width: 54px;
  height: 38px;
  border: 2px solid currentColor;
  border-radius: 6px;
  opacity: 0.34;
  position: relative;
}

.video-thumb-placeholder .big-icon::before {
  content: '';
  position: absolute;
  inset: -10px 7px auto;
  height: 12px;
  border: 2px solid currentColor;
  border-bottom: 0;
  border-radius: 5px 5px 0 0;
  transform: rotate(-6deg);
}

.video-thumb-placeholder .big-icon::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-35%, -50%);
  border-style: solid;
  border-width: 8px 0 8px 14px;
  border-color: transparent transparent transparent currentColor;
}

.video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  border: 1.5px solid rgba(255,255,255,0.6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(4px);
  transition: all 0.3s;
  cursor: pointer;
  z-index: 2;
  pointer-events: all;
}

.video-card:hover .video-play-btn {
  background: rgba(255,255,255,0.15);
  transform: translate(-50%, -50%) scale(1.1);
}

.video-play-btn::after {
  content: '';
  border-style: solid;
  border-width: 9px 0 9px 18px;
  border-color: transparent transparent transparent white;
  margin-left: 4px;
}

.video-meta-label {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

.video-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 300;
  color: var(--cream);
  margin-bottom: 0.4rem;
}

.video-info {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.7;
  margin-bottom: 0.75rem;
}

.video-desc {
  font-size: 0.8rem;
  line-height: 1.75;
  color: rgba(255,241,245,0.44);
  font-weight: 300;
}

/* Upload instruction box */
.video-add-note {
  max-width: 1200px;
  margin: 4rem auto 0;
  padding: 2.5rem;
  border: 1px dashed rgba(217,154,168,0.35);
  color: rgba(255,241,245,0.38);
  font-size: 0.8rem;
  line-height: 2;
  letter-spacing: 0.05em;
}

.video-add-note strong { color: var(--gold); opacity: 0.7; }

@media (max-width: 900px) {
  .videos-grid { grid-template-columns: 1fr; }
  .videos-grid-section { padding: 0 2rem 6rem; }
  .videos-hero { padding: 10rem 2rem 4rem; }
}
