/* ===== HERO ===== */
.event-hero {
  position: relative;
  height: 60vh;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.event-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}
.event-hero-overlay {
  position: relative;
  z-index: 2;
}
.event-hero-overlay h1 {
  font-family: "Playfair Display", serif;
  color: gold;
  font-size: 3rem;
  margin-bottom: 0.5rem;
}
.event-hero-overlay p {
  font-family: "Poppins", sans-serif;
  color: #ddd;
}

/* ===== EVENT SECTIONS ===== */
.event-section {
  padding: 80px 20px;
  background: #0b0b0b;
  color: #fff;
}
.event-section.past {
  background: #111;
}
.event-container {
  max-width: 1200px;
  margin: 0 auto;
}
.event-heading {
  color: gold;
  font-size: 2.2rem;
  font-family: "Playfair Display", serif;
  text-align: center;
  margin-bottom: 40px;
}

/* ===== EVENT CARDS ===== */
.event-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
}
.event-card {
  background: #1a1a1a;
  border-left: 4px solid gold;
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
}
.event-card:hover {
  transform: translateY(-5px);
}
.event-image img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}
.event-details {
  padding: 20px;
}
.event-details h3 {
  color: gold;
  font-family: "Playfair Display", serif;
  margin-bottom: 10px;
}
.event-subtitle {
  color: #ccc;
  font-size: 0.95rem;
  margin-bottom: 10px;
  font-style: italic;
}
.event-date,
.event-time,
.event-location {
  font-size: 0.9rem;
  color: #ddd;
  margin-bottom: 6px;
}
.event-desc {
  color: #bbb;
  margin-top: 10px;
  font-size: 0.95rem;
  line-height: 1.5;
}
.no-events {
  text-align: center;
  color: #777;
  font-style: italic;
}

.event-card-link {
    display: inline-block;
    margin-top: 12px;
    padding: 10px 18px;
    background: gold;
    color: #000;
    font-weight: 600;
    border-radius: 6px;
    text-decoration: none;
    font-size: 0.95rem;
    transition: 0.3s ease;
    border: 1px solid #b89c00;
    letter-spacing: 0.3px;
}

.event-card-link:hover {
    background: #ffd700;
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(255, 215, 0, 0.35);
}


/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .event-hero-overlay h1 {
    font-size: 2.2rem;
  }
  .event-grid {
    grid-template-columns: 1fr;
  }
}
