/* Section header */
.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 64px;
margin-top: 64px;
}
.section-title {
  font-family: 'Domine', serif;
  font-weight: 700;
  font-size: 52px;
}
.see-all-btn {
  background-color: #ffcc29;
  color: #121212;
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 20px;
  padding: 16px 32px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.see-all-btn:hover {
  font-size: 22px
}

/* Events grid */
.events-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 80px;
}
.event-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  transition: transform .35s ease, box-shadow .35s ease;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}
.event-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}
.event-image {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
  margin-bottom: 40px;
}
.event-content {
  padding: 0px;
}
.event-title {
  font-family: 'Manrope', sans-serif;
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 16px;
}
.event-description {
  font-family: 'Domine', serif;
  font-size: 30px;
  font-weight: 700;
  color: #121212;
}
.site-header {
    position: relative;
    z-index: 9999;
}
.events-grid a {
  text-decoration: none !important;
  color: inherit;
  display: block;
}

.events-grid a * {
  text-decoration: none !important;
}


/* Responsive */
@media(max-width: 1200px) {
  .events-grid { grid-template-columns: 1fr 1fr; }
}
@media(max-width: 768px) {
  .events-grid { grid-template-columns: 1fr; }
  .hero { height: 500px; }
  .hero-content { padding: 0 40px; }
}
