body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(to bottom, #000000, #0a0a0a);
  color: #fff;
  overflow-x: hidden;
}

.ourevents-section {
  padding: 60px 30px;
  max-width: 1600px;
  margin: 0 auto;
}

.ourevents-section h1 {
  text-align: center;
  color: gold;
  font-size: 3.8em;
  margin-bottom: 60px;
  font-family: 'Cinzel Decorative', cursive;
  letter-spacing: 2px;
  text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
  animation: fadeInDown 1s ease-in-out;
}

.event-card {
  display: flex;
  flex-direction: row;
  width: 100%;
  margin-bottom: 60px;
  border-radius: 16px;
  border: 2px solid gold;
  background: radial-gradient(circle at top left, #1a1a1a, #111);
  overflow: hidden;
  box-shadow: 0 0 40px rgba(255, 215, 0, 0.2);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.event-card:hover {
  transform: scale(1.01);
  box-shadow: 0 0 60px rgba(255, 215, 0, 0.35);
}

.event-banner {
  flex: 2;
  background-size: cover;
  background-position: center;
  min-height: 420px;
  transition: filter 0.3s ease;
}

.event-banner:hover {
  filter: brightness(1.05);
}

.event-info {
  flex: 1;
  padding: 40px 35px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: rgba(26, 26, 26, 0.95);
  border-left: 1px solid rgba(255, 215, 0, 0.1);
}

.event-info h2 {
  color: gold;
  font-size: 2.4em;
  margin-bottom: 20px;
  font-family: 'Cinzel Decorative', cursive;
  text-shadow: 0 0 8px rgba(255, 215, 0, 0.4);
}

.event-info p {
  margin: 10px 0;
  line-height: 1.6;
  font-size: 1.05em;
  color: #eaeaea;
}

.event-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 24px;
  margin-bottom: 24px;
}

.buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.buttons a {
  padding: 14px 28px;
  font-weight: bold;
  border-radius: 10px;
  text-decoration: none;
  font-size: 1.05em;
  transition: all 0.3s ease;
  background: linear-gradient(145deg, gold, #e5c100);
  color: #000;
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
  text-shadow: 0 0 2px rgba(0, 0, 0, 0.5);
}

.buttons a:hover {
  background: linear-gradient(145deg, #e5c100, #d1b000);
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .event-card {
    flex-direction: column;
  }

  .event-banner {
    width: 100%;
    height: 250px;
    background-position: center;
  }

  .event-info {
    padding: 30px;
  }

  .event-details {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .buttons {
    flex-direction: column;
    gap: 12px;
  }

  .buttons a {
    width: 100%;
    text-align: center;
  }
}

/* Animation */
@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translateY(-40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
