/* [project]/src/app/events/videos/VideoGallery.css [app-client] (css) */
.video-gallery-section {
  background-image: url("/img/bg2.png");
  padding: 40px 0;
  position: relative;
  overflow: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.stats-title {
  text-align: center;
  z-index: 2;
  flex-direction: column;
  align-items: center;
  margin-bottom: 20px;
  display: flex;
  position: relative;
}

.divider-image {
  width: 400px;
  max-width: 100%;
  margin-bottom: 15px;
}

.stats-subheading.type-2 {
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
  font-size: 14px;
  font-weight: 600;
  position: relative;
  color: var(--primary-color) !important;
}

.stats-subheading.type-2:after {
  content: "";
  background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
  width: 50px;
  height: 2px;
  animation: 2s ease-in-out infinite alternate subtitleGlow;
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
}

@keyframes subtitleGlow {
  0% {
    box-shadow: 0 0 5px #043e284d;
  }

  100% {
    box-shadow: 0 0 15px #043e28cc;
  }
}

.stats-heading.type-1 {
  color: var(--body-color);
  text-transform: uppercase;
  letter-spacing: 1px;
  text-shadow: 2px 2px 4px #0000001a;
  margin-bottom: 20px;
  font-size: 2.5rem;
  font-weight: 700;
}

.stats-title p {
  color: #1e8449;
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.1rem;
  line-height: 1.6;
}

.video-grid {
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin-top: 40px;
  display: grid;
}

.video-card {
  cursor: pointer;
  background: #fff;
  border-radius: 12px;
  transition: transform .3s, box-shadow .3s;
  overflow: hidden;
  box-shadow: 0 4px 15px #0000001a;
}

.video-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px #043e284d;
}

.video-thumbnail {
  background: var(--backbone);
  width: 100%;
  padding-bottom: 56.25%;
  position: relative;
  overflow: hidden;
}

.thumbnail-image {
  object-fit: cover;
  width: 100%;
  height: 100%;
  transition: transform .3s;
  position: absolute;
  top: 0;
  left: 0;
}

.video-card:hover .thumbnail-image {
  transform: scale(1.1);
}

.play-button-overlay {
  background: #0000004d;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  transition: background .3s;
  display: flex;
  position: absolute;
  top: 0;
  left: -10px;
}

.video-card:hover .play-button-overlay {
  background: #00000080;
}

.play-button {
  background: var(--primary-color);
  width: 70px;
  height: 70px;
  color: var(--text-white);
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  transition: all .3s;
  display: flex;
  box-shadow: 0 4px 20px #043e2880;
}

.video-card:hover .play-button {
  background: var(--accent-color);
  transform: scale(1.15);
  box-shadow: 0 6px 30px #52be80cc;
}

.play-button svg {
  width: 30px;
  height: 30px;
  margin-left: 4px;
}

.video-info {
  padding: 20px;
}

.video-title {
  color: var(--body-color);
  margin-bottom: 10px;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.4;
}

.video-description {
  color: #1e8449;
  margin: 0;
  font-size: .95rem;
  line-height: 1.6;
}

.video-modal {
  z-index: 9999;
  background: #000000e6;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 20px;
  animation: .3s fadeIn;
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.modal-content {
  background: var(--text-white);
  border-radius: 12px;
  width: 100%;
  max-width: 900px;
  animation: .3s slideUp;
  position: relative;
  overflow: hidden;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.close-button {
  background: var(--primary-color);
  width: 40px;
  height: 40px;
  color: var(--text-white);
  cursor: pointer;
  z-index: 10;
  border: none;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  font-size: 28px;
  line-height: 1;
  transition: all .3s;
  display: flex;
  position: absolute;
  top: 15px;
  right: 15px;
}

.close-button:hover {
  background: var(--primary-color-M);
  transform: rotate(90deg);
}

.video-wrapper {
  height: 0;
  padding-bottom: 56.25%;
  position: relative;
  overflow: hidden;
}

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

.modal-info {
  border-top: 3px solid var(--primary-color);
  padding: 25px;
}

.modal-info h3 {
  color: var(--body-color);
  margin-bottom: 10px;
  font-size: 1.5rem;
  font-weight: 600;
}

.modal-info p {
  color: #1e8449;
  margin: 0;
  font-size: 1rem;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .stats-heading.type-1 {
    font-size: 2rem;
  }

  .stats-title p {
    font-size: 1rem;
  }

  .video-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .divider-image {
    width: 300px;
  }

  .modal-content {
    margin: 10px;
  }

  .modal-info {
    padding: 20px;
  }

  .play-button {
    width: 60px;
    height: 60px;
  }

  .play-button svg {
    width: 25px;
    height: 25px;
  }
}

@media (max-width: 480px) {
  .stats-heading.type-1 {
    font-size: 1.75rem;
  }

  .video-gallery-section {
    padding: 60px 0;
  }

  .stats-title {
    margin-bottom: 40px;
  }

  .divider-image {
    width: 250px;
  }
}

/*# sourceMappingURL=src_app_events_videos_VideoGallery_f7ae1bb9.css.map*/