
/*============================================== Event page Styling ============================================= */
.page-hero {
  padding: 150px 20px 80px;
  background: #001620;
  position: relative;
  overflow: hidden;
}

.glow {
  position: absolute;
  width: 400px;
  height: 400px;
  background: rgba(255, 195, 115, 0.1);
  filter: blur(120px);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.page-title {
  font-size: 60px;
  font-family: var(--font-headline);
  font-weight: 800;
  color: white;
  position: relative;
  z-index: 1;
}

.page-title span {
  color: #ffc373;
}

.page-subtitle {
  color: #9ca3af;
  font-size: 18px;
  max-width: 600px;
  margin: 20px auto 0;
  position: relative;
  z-index: 1;
}

/* Event Items */
.events-list-section {
  padding: 50px 0 100px;
}

.event-item {
  display: flex;
  align-items: center;
  background: #112d3a;
  padding: 30px;
  margin-bottom: 20px;
  border-left: 4px solid #ffc373;
  transition: transform 0.3s;
}

.event-item:hover {
  transform: translateX(10px);
}

.event-date {
  text-align: center;
  padding-right: 30px;
  border-right: 1px solid #1d3846;
  min-width: 120px;
}

.event-date h3 {
  font-size: 48px;
  color: #ffc373;
  margin: 0;
  line-height: 1;
}

.event-date span {
  font-family: var(--font-label);
  color: #8aa3b0;
  letter-spacing: 2px;
  font-size: 14px;
}

.event-details {
  padding: 0 30px;
  flex: 1;
}

.event-details h4 {
  font-size: 24px;
  color: white;
}

.event-details p {
  color: #8aa3b0;
  margin: 0;
  font-size: 15px;
}

.event-action {
  min-width: 150px;
  text-align: right;
}

/* Mobile Nav Structure */
.mobile-toggle {
  background: transparent;
  border: 1px solid #1d3846;
  border-radius: 8px;
  color: #00ed64;
  padding: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-nav {
  display: none;
  flex-direction: column;
  position: absolute;
  top: 80px;
  left: 0;
  width: 100%;
  background: rgba(0, 22, 32, 0.95);
  backdrop-filter: blur(20px);
  padding: 20px;
  border-bottom: 1px solid #1d3846;
}

.mobile-nav.active {
  display: flex;
}

.mobile-nav a {
  color: #9ca3af;
  text-decoration: none;
  font-weight: 600;
  padding: 15px 0;
  font-family: var(--font-headline);
  border-bottom: 1px solid #112d3a;
}

.mobile-nav a.active {
  color: #00ed64;
}

.click-animate {
  transition: transform 0.1s ease-in-out;
}
.click-animate:active {
  transform: scale(0.95);
}

.text-inherit {
  color: inherit !important;
}
.pointer {
  cursor: pointer;
}

@media (max-width: 768px) {
  .event-item {
    flex-direction: column;
    text-align: left;
  }
  .event-date {
    border-right: none;
    border-bottom: 1px solid #1d3846;
    padding-right: 0;
    padding-bottom: 20px;
    margin-bottom: 20px;
    width: 100%;
    text-align: left;
  }
  .event-details {
    padding: 0;
    margin-bottom: 20px;
  }
  .event-action {
    width: 100%;
    text-align: left;
  }
}
