* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  background-color: #000000;
  color: #ffffff;
  line-height: 1.6;
}

.hero-banner {
  height: 100vh;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url('../images/banner.png') center/cover;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 1rem;
}

.contact .hero-banner {
  height: 100vh;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url('../images/contactbanner.png') center/cover;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin-top: 20px;


}

.contact .hero-banner h1 {
  font-size: 7rem;
}

.hero-banner h1 {
  font-size: 4rem;
  margin-bottom: 1rem;
}

.hero-banner p {
  font-size: 1.5rem;
  color: #ffffff;
}

.events-section {
  padding: 4rem 2rem;
  background-color: #111111;
}

.events-section h2 {
  text-align: center;
  margin-bottom: 3rem;
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.event-card {
  background-color: #000000;
  overflow: hidden;
  display: flex;
  padding: 1.5rem;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.event-card:hover {
  transform: translateY(-5px);
  border-color: #5a89e1;
  box-shadow: 0 0 20px rgba(29, 143, 242, 0.3);
}

.event-date {
  background-color: #ffffff;
  padding: 1rem;

  text-align: center;
  margin-right: 1rem;
  color: #000000;
}

.event-date .day {
  font-size: 1.5rem;
  font-weight: bold;
  display: block;
}

.event-date .month {
  font-size: 0.9rem;
}

.event-details h3 {
  margin-bottom: 0.5rem;
}

.ticket-btn {
  display: inline-block;
  padding: 0.5rem 1rem;
  background-color: #ffffff;
  color: #000000;
  text-decoration: none;

  margin-top: 1rem;
  transition: all 0.3s ease;
}

.ticket-btn:hover {
  background-color: #5a89e1;
  color: #ffffff;
}

@media (max-width: 768px) {
  .hero-banner h1 {
    font-size: 3rem;
  }

  .events-grid {
    grid-template-columns: 1fr;
  }

  .event-card {
    height: 170px;
  }
}

@media (max-width: 480px) {
  .hero-banner h1 {
    font-size: 2rem;
  }

  .hero-banner p {
    font-size: 1rem;
  }

  .events-section {
    padding: 2rem 1rem;
  }
}

.booking-cta {
  text-align: center;
  padding: 4rem 1rem;
  background: radial-gradient(circle at center, #0a0a0a, #000000);
}

.booking-cta h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
  letter-spacing: 2px;
}

/* Main Button */
.book-button {
  display: inline-block;
  padding: 1rem 2.5rem;
  font-size: 1.2rem;
  color: #000;
  background: linear-gradient(135deg, #ffffff, #5a89e1);
  text-decoration: none;
  border-radius: 40px;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 0 15px rgba(90, 137, 225, 0.6);
}

.book-button i {
  margin-right: 10px;
}

/* Hover Glow DJ Style */
.book-button:hover {
  transform: translateY(-3px) scale(1.05);
  background: linear-gradient(135deg, #5a89e1, #ffffff);
  box-shadow: 0 0 25px rgba(90, 137, 225, 0.9);
}

/* Subtext */
.booking-subtext {
  margin-top: 1.5rem;
  color: #cccccc;
}

.booking-subtext a {
  color: #5a89e1;
  text-decoration: none;
}

.booking-subtext a:hover {
  text-decoration: underline;
}