
/* ===== LAYOUT ===== */
.explore-events {
  padding: 60px 20px;
}

.container {
  max-width: 1200px;
  margin: auto;
}

.main-title h3{
    margin-bottom: 30px;
}

/* ===== CARD ===== */
.event-card {
  background: white;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0,0,0,0.06);
  transition: 0.3s;
  position: relative;
  margin-bottom: 30px;
}

.event-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 45px rgba(0,0,0,0.1);
}

.event-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

/* CONTENT */
.event-content {
  padding: 14px;
}
.event-content a{
    color: black;
    text-decoration: none;
}

.event-title {
  font-size: 16px;
  font-weight: 600;
  display: block;
  margin-bottom: 6px;
}

.event-venue {
  font-size: 13px;
  color: #777;
}

/* FOOTER */
.event-footer {
  padding: 12px 14px;
  border-top: 1px solid #eee;
  font-size: 12px;
  color: #666;
  display: flex;
  justify-content: space-between;
}

.event-card {
  position: relative;
}

/* container */
.event-badges {
  position: absolute;
  top: 12px;
  left: 12px;
  display: flex;
  gap: 6px;
  z-index: 2;
}

/* base badge */
.badge {
  font-size: 11px;
  padding: 5px 10px;
  border-radius: 999px;
  font-weight: 600;
  color: white;
  backdrop-filter: blur(8px);
}

/* types */
.badge.trending {
  background: linear-gradient(135deg, #ff3d3d, #ff7a18);
}

.badge.sale {
  background: linear-gradient(135deg, #00c853, #64dd17);
}

.badge.featured {
  background: linear-gradient(135deg, #2962ff, #448aff);
}

.load-more-container {
  text-align: center;
  margin-top: 40px;
}

#loadMoreBtn {
  background: black;
  color: white;
  border: none;
  padding: 12px 22px;
  border-radius: 999px;
  cursor: pointer;
  font-size: 14px;
  transition: 0.3s;
}

#loadMoreBtn:hover {
  opacity: 0.85;
}

/* ===== RESPONSIVE ===== */
@media(max-width:1000px){
  .events-grid { grid-template-columns: repeat(2, 1fr); }
}

@media(max-width:600px){
  .events-grid { grid-template-columns: 1fr; }
}