.events-hero {
  padding: 70px 0;
  background:
    radial-gradient(circle at top left, #fdf8e015 0, transparent 50%),
    radial-gradient(circle at bottom right, #f1c27d20 0, transparent 55%),
    linear-gradient(135deg, #2b1300, #000000);
  text-align: center;
  color: #fdf8e0;
}

.events-hero h1 {
  font-size: 40px;
  font-family: "Playfair Display", serif;
}

.events-hero h1 span {
  color: #f1c27d;
}

.events-hero p {
  margin-block-start: 12px;
  max-inline-size: 720px;
  margin-inline-start: auto;
  margin-inline-end: auto;
  color: #fbeed2;
  font-size: 16px;
}

/* UPCOMING EVENTS */

.upcoming-events {
  padding: 70px 0;
  background: #130702;
  color: #fdf8e0;
}

.section-head {
  text-align: center;
  margin-block-end: 40px;
}

.section-head h2 {
  font-size: 32px;
  font-family: "Playfair Display", serif;
  color: #f1c27d;
}

.section-head p {
  max-inline-size: 700px;
  margin: 10px auto;
  color: #fbeed2;
  font-size: 15px;
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.event-card {
  background: #2a1404;
  padding: 25px;
  border-radius: 14px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.8);
  position: relative;
  border-inline-start: 6px solid #f1c27d;
  transition: 0.3s ease;
}

.event-card:hover {
  transform: translateY(-6px);
}

.event-card h3 {
  font-size: 22px;
  color: #fdf8e0;
  margin-block-end: 10px;
}

.event-card p {
  font-size: 15px;
  color: #fbeed2;
}

.event-meta {
  margin-block-start: 15px;
  font-style: italic;
  color: #f1c27d;
}

.event-meta i {
  margin-inline-end: 8px;
}

.event-tag {
  background: #f1c27d;
  color: #3a1503;
  padding: 5px 10px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  position: absolute;
  inset-block-start: -10px;
  inset-inline-end: -10px;
}

/* GALLERY */

.events-gallery {
  padding: 70px 0;
  background: #1a0b02;
  color: #fdf8e0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 25px;
}

.gallery-item img {
  border-radius: 12px;
  inline-size: 100%;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.8);
  transition: 0.3s ease;
}

.gallery-item img:hover {
  transform: scale(1.05);
}

/* CTA */

.events-cta {
  background: linear-gradient(90deg, #3a1503, #1b0902);
  color: #fdf8e0;
  padding: 60px 0;
}

.events-cta-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.events-cta-text h2 {
  font-size: 28px;
  font-family: "Playfair Display", serif;
  color: #f1c27d;
}

/* RESPONSIVE */

@media (max-width: 900px) {
  .events-cta-inner {
    flex-direction: column;
    text-align: center;
  }
}
