/* Homepage Upcoming Event Section */
@font-face {
    font-family: 'Baloo 2';
    src: url("../fonts/Baloo2-VariableFont_wght.ttf") format('truetype');
    font-weight: 400 800;
    font-display: swap;
}

.homepage-event-section {
  padding: 80px 0;
  background: linear-gradient(135deg, rgba(26, 30, 58, 0.95) 0%, rgba(10, 14, 39, 0.95) 100%);
  position: relative;
  overflow: hidden;
}

.homepage-event-section::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #16f1d3, transparent);
}

.event-header {
  text-align: flex;
  margin-bottom: 50px;
}

.event-title {
  font-family: "Baloo 2", cursive, sans-serif;
  font-size: 3.0rem;
  font-weight: 700;
  color: #e6f1fb;
  text-shadow: 0 0 20px rgba(22, 241, 211, 0.5);
  margin: 0;
}
.releases-view-all {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: rgba(22, 241, 211, 0.1);
  border: 2px solid #16f1d3;
  border-radius: 8px;
  color: #16f1d3;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 0 15px rgba(22, 241, 211, 0.3);
}

.releases-view-all:hover {
  background: rgba(22, 241, 211, 0.2);
  box-shadow: 0 0 25px rgba(22, 241, 211, 0.6);
  transform: translateY(-2px);
  color: #16f1d3;
}
.event-card-wrapper {
  max-width: 900px;
  margin: 0 auto;
}

.upcoming-event-card {
  background: rgba(26, 30, 58, 0.8);
  border: 3px solid #16f1d3;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 60px rgba(22, 241, 211, 0.4);
  transition: all 0.4s ease;
  text-decoration: none;
  display: block;
  position: relative;
}

.upcoming-event-card::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, #16f1d3, #764ba2, #16f1d3);
  border-radius: 20px;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.upcoming-event-card:hover::before {
  opacity: 1;
  animation: borderGlow 2s linear infinite;
}

@keyframes borderGlow {
  0% { filter: hue-rotate(0deg); }
  100% { filter: hue-rotate(360deg); }
}

.upcoming-event-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 80px rgba(22, 241, 211, 0.6);
}

.event-poster-container {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.event-poster {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.4s ease;
}

.upcoming-event-card:hover .event-poster {
  transform: scale(1.05);
}

.event-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: rgba(22, 241, 211, 0.95);
  color: #0a0e27;
  padding: 8px 20px;
  border-radius: 25px;
  font-weight: 700;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 5px 15px rgba(22, 241, 211, 0.5);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.event-content {
  padding: 40px;
}

.event-name {
  font-size: 2rem;
  font-weight: 700;
  color: #e6f1fb;
  margin-bottom: 20px;
  line-height: 1.3;
  text-shadow: 0 0 10px rgba(22, 241, 211, 0.3);
}

.event-meta {
  display: flex;
  gap: 30px;
  margin-bottom: 25px;
  flex-wrap: wrap;
}

.event-meta-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #16f1d3;
  font-size: 1rem;
  font-weight: 600;
}

.event-meta-item i {
  font-size: 1.25rem;
}

.event-description {
  color: #b8c9d9;
  font-size: 1.125rem;
  line-height: 1.6;
  margin-bottom: 30px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.event-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 35px;
  background: linear-gradient(135deg, #16f1d3, #0dd4b8);
  border: none;
  border-radius: 10px;
  color: #0a0e27;
  font-weight: 700;
  font-size: 1.125rem;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(22, 241, 211, 0.4);
}

.event-cta:hover {
  background: linear-gradient(135deg, #0dd4b8, #16f1d3);
  box-shadow: 0 8px 30px rgba(22, 241, 211, 0.6);
  transform: translateY(-2px);
  color: #0a0e27;
}

/* Mobile Responsive */
@media (max-width: 991.98px) {
  .event-title {
    font-size: 2rem;
  }
  
  .event-name {
    font-size: 1.75rem;
  }
  
  .event-content {
    padding: 30px;
  }
}

@media (max-width: 767.98px) {
  .homepage-event-section {
    padding: 60px 0;
  }
  
  .event-title {
    font-size: 1.75rem;
  }
  
  .event-name {
    font-size: 1.5rem;
  }
  
  .event-meta {
    gap: 20px;
  }
  
  .event-content {
    padding: 25px;
  }
  
  .event-poster-container {
    aspect-ratio: 1/1;
  }
  
  .event-description {
    font-size: 1rem;
  }
  
  .event-cta {
    padding: 12px 28px;
    font-size: 1rem;
  }
}

@media (max-width: 575.98px) {
  .event-title {
    font-size: 1.5rem;
  }
  
  .event-name {
    font-size: 1.25rem;
  }
  
  .event-meta {
    flex-direction: column;
    gap: 15px;
  }
  
  .event-badge {
    top: 15px;
    left: 15px;
    padding: 6px 15px;
    font-size: 0.75rem;
  }
}

