@charset "UTF-8";

.event-main {
  width: 100%;
  min-height: 100vh;
  background: url('../img/event/event.png') no-repeat center center / cover fixed;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.event-hero {
  width: 100%;
  min-height: 40vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.event-title {
  font-family: "Montserrat", sans-serif;
  font-size: 4rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  z-index: 2;
}

.event-content {
  width: 90%;
  max-width: 1100px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  margin: 0 auto 100px;
}

.event-text-group {
  text-align: right;
  color: #fff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  margin: 40px 0 20px;
}

.event-date {
  font-family: "Montserrat", sans-serif;
  font-size: 1.5rem;
  font-weight: bold;
}

.event-name {
  font-family: "Montserrat", sans-serif;
  font-size: 2.2rem;
}

/* YouTube & Coming Soon Image Container */
.video-container {
  width: 80%;
  max-width: 900px;
  aspect-ratio: 16 / 9;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  border: 2px solid rgba(255, 255, 255, 0.2);
  background-color: #000;
  overflow: hidden;
  border-radius: 10px;
}

.video-container iframe,
.video-container img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}