/* DVC Advertisement page */

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background-color: #f3f2ee;
  color: #111111;
}

.hero-title {
  font-family: 'Bricolage Grotesque', 'Plus Jakarta Sans', sans-serif;
  font-size: 3.4rem;
  font-weight: 600;
  letter-spacing: -2px;
  line-height: 1.05;
  color: #0d0d0d;
}

.hero-description {
  font-size: 1.1rem;
  max-width: 640px;
  line-height: 1.5;
  color: #333333;
}

.badge-pill {
  display: inline-flex;
  align-items: center;
  background-color: #333333;
  color: #e2e2e2;
  font-size: 0.85rem;
  font-weight: 500;
  padding: 8px 18px;
  border-radius: 50px;
  line-height: 1;
}

.badge-pill .red-dot {
  margin-right: 2px;
}

.back-pill-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #333333;
  color: #e2e2e2;
  font-size: 0.85rem;
  font-weight: 500;
  padding: 9px 18px 9px 14px;
  border-radius: 50px;
  line-height: 1;
  text-decoration: none;
  transition: background-color 0.3s ease, box-shadow 0.3s ease, color 0.3s ease;
}

.back-pill-link i {
  font-size: 0.8rem;
}

.back-pill-link:hover {
  background-color: #111111;
  color: #ffffff;
  box-shadow: 0 0 0 6px rgba(234, 51, 45, 0.18), 0 8px 24px rgba(234, 51, 45, 0.35);
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  text-decoration: none;
}

.cta-btn .btn-text {
  background-color: #333333;
  color: #ffffff;
  padding: 12px 22px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.cta-btn .btn-arrow {
  background-color: #333333;
  color: #ffffff;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-btn:hover .btn-text,
.cta-btn:hover .btn-arrow {
  background-color: #111111;
  box-shadow: 0 0 0 6px rgba(234, 51, 45, 0.18), 0 8px 24px rgba(234, 51, 45, 0.35);
}

.cta-btn:hover .btn-arrow {
  transform: translate(2px, -2px);
}

/* Scroll-reveal */
.dvca-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.dvca-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.row.g-4 > .dvca-reveal:nth-child(2) {
  transition-delay: 0.08s;
}

@media (prefers-reduced-motion: reduce) {
  .dvca-reveal {
    transition: none;
    opacity: 1;
    transform: none;
  }
}

/* Video thumbnail cards */
.dvca-video-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #000;
  cursor: pointer;
  transition: box-shadow 0.3s ease;
}

.dvca-video-card:hover {
  box-shadow: 0 0 32px rgba(234, 51, 45, 0.35);
}

.dvca-video-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
  display: block;
  transition: opacity 0.3s ease, transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.dvca-video-card:hover img {
  opacity: 0.4;
  transform: scale(1.04);
}

.dvca-play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  color: #ea332d;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), background-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
  font-size: 1.4rem;
}

.dvca-video-card:hover .dvca-play-icon {
  transform: translate(-50%, -50%) scale(1.15);
  background: #ea332d;
  color: #ffffff;
  box-shadow: 0 0 0 10px rgba(234, 51, 45, 0.25), 0 0 40px rgba(234, 51, 45, 0.55);
}

/* Video embed */
.dvca-embed {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  border-radius: 20px;
  overflow: hidden;
  background: #000000;
}

.dvca-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Video popup modal */
.dvca-modal-overlay {
  display: flex;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 40px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.dvca-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.dvca-modal-close {
  position: fixed;
  top: 24px;
  right: 32px;
  background: none;
  border: none;
  color: #ffffff;
  font-size: 2.4rem;
  line-height: 1;
  cursor: pointer;
  z-index: 2001;
}

.dvca-video-modal-box {
  width: 100%;
  max-width: 900px;
  transform: scale(0.94);
  transition: transform 0.3s ease;
}

.dvca-modal-overlay.active .dvca-video-modal-box {
  transform: scale(1);
}

.dvca-video-modal-box .dvca-embed {
  border-radius: 16px;
}

@media (max-width: 991px) {
  .hero-title {
    font-size: 2.4rem;
  }
}

@media (max-width: 575px) {
  .dvca-modal-close {
    top: 12px;
    right: 16px;
  }
}
