/*------------Live Eventss---------------*/

.liveEvents-header{
  background: url('WebsiteImages/LiveEvents.png') center/cover no-repeat;
}



/* --- Live Events Packages Section --- */
.liveEvents-packages {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: 30px;
  padding: 80px 20px;
  text-align: center;
  color: #fff;
}

/* --- Each Package Box --- */
.eventspackage {
  flex: 1 1 300px;
  max-width: 520px;
  background-size: cover;
  background-position: center;
  border-radius: 20px;
  padding: 40px 25px;
  box-shadow: 0 0 25px rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  
}

.eventspackage h2 {
  font-size: 2.2rem;
  margin-bottom: 15px;
  color: #fc3f40;
}

.eventspackage p {
  font-size: 1rem;
  color: #ccc;
  margin-bottom: 20px;
}

.eventspackage ul {
  list-style: none;
  padding: 0;
  margin-bottom: 25px;
}

.eventspackage ul li {
  margin: 8px 0;
  position: relative;
  padding-left: 30px;
  text-align: left;
}

.eventspackage ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  width: 12px; /* adjust based on your image */
  height: 12px;
  background: url("WebsiteImages/redtriangle.png") no-repeat center;
  background-size: contain;
}


/* --- Buttons --- */
.eventspackage-btn {
  display: inline-block;
  background: #fc3f40;
  color: #fff;
  padding: 12px 28px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
}

.eventspackage-btn:hover {
  background: #ff5758;
  box-shadow: 0 0 15px rgba(252, 63, 64, 0.7);
}

/* --- Backgrounds --- */
.eventspackage.standard {
  background-image: url('WebsiteImages/Bronze3.jpg');
}

.eventspackage.pro {
  background-image: url('WebsiteImages/Silver3.jpg');
}

.eventspackage.elite{
  background-image: url('WebsiteImages/Gold3.jpg');
}

/* --- Hover Glows --- */
.eventspackage.standard:hover {
  box-shadow: 0 0 30px rgba(205, 127, 50, 0.7);
}

.eventspackage.pro:hover {
  box-shadow: 0 0 30px rgba(192, 192, 192, 0.7);
}

.eventspackage.elite:hover {
  box-shadow: 0 0 30px rgba(255, 215, 0, 0.7);
}

/* --- Responsive --- */
@media (max-width: 900px) {
  .liveEvents-eventspackages {
    flex-direction: column;
    align-items: center;
  }
}

.eventspackage {
  position: relative;
  overflow: hidden;
  color: #fff;
}

/* Add black tint overlay */
.eventspackage::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.603); /* Adjust opacity as needed */
  border-radius: 20px;
  z-index: 1;
}

/* Keep text above the overlay */
.eventspackage * {
  position: relative;
  z-index: 2;
}
