.events-grid-section {
  font-family: 'Courier Prime', monospace;
}

.event-card {
  
  text-decoration: none;
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  
}

.event-img-wrapper {
  aspect-ratio: 4 / 5; /* Matches the tall poster look in your screenshot */
  overflow: hidden;
  background: #111;
}

.event-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

/* Hover Effects */
.event-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(238, 46, 60, 0.2);
  border-color: #EE2E3C;
}

.event-card:hover img {
  transform: scale(1.05);
}

/* Contact Us Button */
.btn-contact-red {
  background-color: #EE2E3C;
  color: #fff;
  border: none;
  border-radius: 0;
  padding: 15px 40px;
  font-weight: 400;
  letter-spacing: 2px;
  text-shadow: 0 0 10px #fff, 0 0 30px #fff;
  transition: all 0.3s ease;
}

.btn-contact-red:hover {
  background-color: #ff3b4a;
  color: #fff;
  transform: scale(1.05);
}

/* Responsive adjustment for Mobile */
@media (max-width: 768px) {
  .event-img-wrapper {
    aspect-ratio: 1 / 1; /* Squares look better on mobile stacks */
  }
}
.noimg {
  max-width: 500px;
  width: 100%;
  display: block;
  height: auto;
  margin-top: 40px;
}
.eventbannerimg {
  width: 100%;
  height: auto;
}
.eventbannerimg img {
  width: 100%;
  height: auto;
}