/* EVENT SECTION */
.event {
  background: #0b1221;
  padding: 120px 0;
  color: white;
}

.event-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.event-section {
  margin-bottom: 120px;
}

.event-section:last-child {
  margin-bottom: 0;
}

.event-title {
  font-family: 'Pretendard', sans-serif;
  font-size: 48px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: white;
  margin-bottom: 40px;
  text-align: left;
}

.event-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: top;
}

.event-text-content {
  text-align: left;
}

.event-subtitle {
  font-family: 'Pretendard', sans-serif;
  font-size: 32px;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 150%;
  color: white;
  margin-bottom: 20px;
}

.event-description {
  font-family: 'Pretendard', sans-serif;
  font-size: 20px;
  letter-spacing: -0.02em;
  line-height: 150%;
  color: #a9a9bb;
  margin-bottom: 40px;
}

.event-image-placeholder {
  width: 100%;
  max-width: 600px;
  height: 350px;
  background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #a9a9bb;
  font-size: 18px;
  border: 2px dashed #3a3a3a;
}

/* LOCATION SECTION */
.location-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}

.location-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.location-description {
  font-family: 'Pretendard', sans-serif;
  font-size: 32px;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 150%;
  color: white;
  display: flex;
  align-items: center;
  gap: 10px;
}

.transport-info {
  font-family: 'Pretendard', sans-serif;
  font-size: 28px;
  font-weight: 400;
  letter-spacing: -0.02em;
  color: white;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.subway-line {
  width: 30px;
  height: 30px;
}

.parking-info {
  font-family: 'Pretendard', sans-serif;
  font-size: 20px;
  letter-spacing: -0.02em;
  line-height: 150%;
  color: #a9a9bb;
  margin-top: 20px;
}

.parking-note {
  font-family: 'Pretendard', sans-serif;
  letter-spacing: -0.02em;
  line-height: 150%;
  color: rgba(169, 169, 188, 0.8);
  font-size: 16px;
  margin-top: 10px;
}

.event-image {
  width: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 12px;
}

.location-map {
  width: 100%;
  background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
  border-radius: 12px;
  cursor: pointer;
  object-fit: cover;
  object-position: center;
}

/* ANIMATION CLASSES */
.event-title,
.event-subtitle p,
.event-description p,
.location-description p,
.transport-info img,
.transport-info span,
.parking-info p,
.parking-note {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.event-title.animate,
.event-subtitle p.animate,
.event-description p.animate,
.location-description p.animate,
.transport-info img.animate,
.transport-info span.animate,
.parking-info p.animate,
.parking-note.animate {
  opacity: 1;
  transform: translateY(0);
}

/* RESPONSIVE DESIGN */
@media (max-width: 1024px) {
  .event {
    padding: 80px 0;
  }

  .event-title {
    font-size: 36px;
    margin-bottom: 30px;
  }

  .event-subtitle {
    font-size: 24px;
  }

  .event-description {
    font-size: 18px;
  }

  .event-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .event-text-content {
    order: 1;
  }

  .event-image-placeholder {
    order: 2;
    width: 100%;
    max-width: none;
  }

  .location-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .location-description {
    font-size: 24px;
  }

  .transport-info {
    font-size: 24px;
  }

  .parking-info {
    font-size: 18px;
  }

  .event-image,
  .location-map {
    height: 250px;
  }
}

@media (max-width: 768px) {
  .event {
    padding: 60px 0;
  }

  .event-title {
    font-size: 28px;
  }

  .event-subtitle {
    font-size: 20px;
  }

  .event-description {
    font-size: 16px;
  }

  .location-description {
    font-size: 20px;
  }

  .transport-info {
    font-size: 24px;
  }

  .parking-info {
    font-size: 16px;
  }

  .event-image,
  .location-map {
    height: 200px;
  }
}
