/* [project]/src/app/events/images/main.css [app-client] (css) */
.events-section {
  background-image: url("/img/bg2.png");
  min-height: 100vh;
  padding: 40px 0;
  position: relative;
}

.section-title {
  text-align: center;
  z-index: 2;
  margin-bottom: 60px;
  position: relative;
}

.stats-title {
  flex-direction: column;
  align-items: center;
  display: flex;
}

.divider-image {
  width: 400px;
  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;
}

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

.event-card {
  cursor: pointer;
  z-index: 2;
  background: #fff;
  border: 2px solid #0000;
  border-radius: 15px;
  margin-bottom: 30px;
  transition: all .4s;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px #0000001a;
}

.event-card:before {
  content: "";
  background: linear-gradient(45deg, var(--primary-color), var(--secondary-green));
  z-index: -1;
  opacity: 0;
  border-radius: 15px;
  padding: 2px;
  transition: opacity .4s;
  position: absolute;
  inset: 0;
}

.event-card:hover:before {
  opacity: 1;
}

.event-card:hover {
  border-color: var(--primary-color);
  transform: translateY(-15px)scale(1.02);
  box-shadow: 0 25px 50px #043e2840;
}

.event-image {
  height: 250px;
  position: relative;
  overflow: hidden;
}

.event-image img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  transition: transform .4s, filter .4s;
}

.event-card:hover .event-image img {
  filter: brightness(1.1) contrast(1.1);
  transform: scale(1.1);
}

.event-overlay {
  background: linear-gradient(45deg, var(--primary-color), #022216cc);
  opacity: 0;
  justify-content: center;
  align-items: center;
  transition: all .4s;
  display: flex;
  position: absolute;
  inset: 0;
}

.event-card:hover .event-overlay {
  opacity: 1;
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
}

.overlay-icon {
  color: #fff;
  text-shadow: 0 0 10px #ffffff80;
  font-size: 2.5rem;
  animation: 2s infinite iconPulse, 3s ease-in-out infinite iconFloat;
}

@keyframes iconPulse {
  0%, 100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.1);
  }
}

@keyframes iconFloat {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-5px);
  }
}

.event-content {
  background: linear-gradient(135deg, #fff 0%, #f4fdf8 100%);
  padding: 25px;
}

.event-date {
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
  font-size: 14px;
  font-weight: 600;
  position: relative;
}

.event-date:before {
  content: "";
  background: var(--primary-color);
  width: 30px;
  height: 2px;
  animation: 2s ease-in-out infinite alternate dateUnderline;
  position: absolute;
  bottom: -3px;
  left: 0;
}

@keyframes dateUnderline {
  0% {
    opacity: .6;
    width: 20px;
  }

  100% {
    opacity: 1;
    width: 40px;
  }
}

.event-title {
  color: var(--body-color);
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-bottom: 10px;
  font-size: 1.2rem;
  font-weight: 700;
  transition: color .3s;
}

.event-card:hover .event-title {
  color: var(--primary-color);
}

.event-description {
  color: #6c757d;
  font-size: .95rem;
  line-height: 1.6;
}

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

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

@media (max-width: 480px) {
  .events-section {
    padding: 60px 0;
  }

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

  .stats-heading.type-1 {
    font-size: 1.8rem;
  }

  .divider-image {
    width: 250px;
  }

  .event-content {
    padding: 20px;
  }
}

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