/* ============================
   HERO WITH TEXT OVERLAY
============================ */
.event-hero {
  width: 100%;
  height: 450px;
  background: url("images/event-space.jpg") center/cover no-repeat;
  position: relative;
  display: flex;
  justify-content: flex-end; /* Push text to the right */
  align-items: center;
  padding-right: 60px;
}

/* Text container in hero */
.hero-text {
  max-width: 420px;
  background: rgba(255, 255, 255, 0.78);
  padding: 30px 28px;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  text-align: left;
  backdrop-filter: blur(3px);
}

.hero-text h1 {
  font-family: "Playfair Display", serif;
  font-size: 38px;
  margin-bottom: 16px;
  color: #222;
}

.hero-text p {
  font-size: 18px;
  color: #444;
  line-height: 1.6;
}

/* MOBILE */
@media (max-width: 700px) {
  .event-hero {
    justify-content: center;
    padding-right: 0;
    padding-left: 0;
  }

  .hero-text {
    max-width: 90%;
    padding: 22px 18px;
    text-align: center;
  }
}

/* ============================
   MAIN CONTENT SECTIONS
============================ */
.event-content {
  max-width: 820px;
  margin: 70px auto;
  text-align: center;
  padding: 0 20px;
}

.event-content h2 {
  margin-top: 50px;
  font-size: 30px;
  font-family: "Playfair Display", serif;
  margin-bottom: 12px;
  letter-spacing: 0.3px;
  color: #222;
}

.event-content p {
  font-size: 18px;
  color: #555;
  line-height: 1.7;
  max-width: 700px;
  margin: 0 auto;
}
