

/* HERO SECTION */
.events {
  position: relative;
  height: 100vh;
  background: url('../img/events/event-8.jpeg') no-repeat center center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
}

.events h1,p {
  color: #fff;
  font-size: 3rem;
  font-weight: bold;
}

/* DARK OVERLAY */
.overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 40, 60, 0.75);
  top: 0;
  left: 0;
}

/* CONTENT */
.content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 50px;
  padding: 40px;
  max-width: 1200px;
}

/* IMAGE */
.poster {
  width: 700px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

/* TEXT */
.text h1 {
  font-size: 3rem;
  line-height: 1.1;
  font-weight: bold;
}

.text h1 span {
  color: #00bcd4;
}

.text h2 {
  font-size: 3.5rem;
  color: #ffc107;
  margin: 10px 0;
}

.tagline {
  margin: 15px 0;
  font-size: 1.1rem;
  opacity: 0.9;
}

.details p {
  margin: 8px 0;
  font-size: 1rem;
}

/* BUTTON */
.cta button {
  margin-top: 20px;
  padding: 12px 25px;
  border: none;
  background: #ffc107;
  color: #000;
  font-weight: bold;
  cursor: pointer;
  border-radius: 5px;
  transition: 0.3s;
}

.cta button a {
  color: #fff;
  text-decoration: none;
}
.cta button:hover {
  background: #ffb300;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .content {
    flex-direction: column;
    text-align: center;
  }

  .poster {
    width: 250px;
  }

  .text h1 {
    font-size: 2rem;
  }

  .text h2 {
    font-size: 2.5rem;
  }
}

@media (max-width: 500px) {
  .text h1 {
    font-size: 1.6rem;
  }

  .text h2 {
    font-size: 2rem;
  }

  .details p {
    font-size: 0.9rem;
  }
}