/* ===========================
   Events Page - Horizontal Row Layout
=========================== */

/* Body & section adjustments */
.events-page {
  background-color: #0a0a0a;
  color: #fff;
  font-family: 'Poppins', sans-serif;
}
.vr-banner {
  position: relative;
  background: url('assets/vr-banner.png') center/cover no-repeat;
  height: 350px; /* adjust as needed */
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
}
.vr-banner .overlay {
  background: rgba(0, 0, 0, 0.5); /* dark overlay for text readability */
  padding: 30px 20px;
  border-radius: 15px;
}

.vr-banner h2 {
  font-size: 2.5rem;
  color:#ff0000
  margin-bottom: 10px;
}

.vr-banner p {
  font-size: 1.2rem;
}

/* Section title style */
.day-section h2 {
  color: #ff2d2d;
  text-align: center;
  font-size: 2rem;
  margin-bottom: 2rem;
  position: relative;
}

.day-section h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: #ff2d2d;
  margin: 8px auto 0;
  border-radius: 2px;
  box-shadow: 0 0 10px #ff2d2d;
}

/* Event row container */
.event-row {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin: 0 2rem;
}

/* Individual event block */
.event {
  display: flex;
  align-items: center;
  gap: 2rem;
  background-color: #1a1a1a;
  border-left: 4px solid #ff2d2d;
  padding: 1rem;
  border-radius: 10px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.event:hover {
  transform: translateX(5px);
  box-shadow: 0 0 15px #ff2d2d;
}

/* Event image */
.event img {
  width: 150px;
  height: 150px;
  object-fit: contain;
  filter: drop-shadow(0 0 10px #ff2d2d);
  transition: transform 0.3s ease, filter 0.3s ease;
}

.event:hover img {
  transform: scale(1.05);
  filter: drop-shadow(0 0 25px #ff2d2d);
}

/* Event info */
.event-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Event title */
.event-info h3 {
  font-size: 1.4rem;
  margin: 0 0 0.5rem 0;
  color: #ff2d2d;
}

/* Event description */
.event-info p {
  font-size: 1rem;
  color: #ccc;
  line-height: 1.4;
  margin-bottom: 1rem;
}

/* Event details */
.event-details {
  display: flex;
  justify-content: space-between;
  font-weight: 600;
  color: #ff2d2d;
  font-size: 0.9rem;
}

/* Responsive adjustments */
@media (max-width: 900px) {
  .event-row {
    gap: 1.5rem;
  }

  .event {
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem;
  }

  .event img {
    width: 120px;
    height: 120px;
  }

  .event-details {
    flex-direction: column;
    gap: 0.3rem;
  }
}

@media (max-width: 600px) {
  .event img {
    width: 100px;
    height: 100px;
  }

  .event-info h3 {
    font-size: 1.2rem;
  }

  .event-info p {
    font-size: 0.9rem;
  }
}
