/* Event detail pages */
.event-detail {
  background: #0b0b0b;
  color: #ffffff;
  min-height: 100vh;
}

.event-hero {
  position: relative;
  min-height: clamp(360px, 55vh, 520px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding-top: var(--nav-h, 72px);
  margin-bottom: 80px;
}

.event-hero__bg {
  position: absolute;
  inset: 0;
  background-image: inherit;
  background-size: cover;
  background-position: center;
  transform: scale(1.03);
  filter: blur(2px) brightness(0.85);
}

.event-hero__overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(70% 80% at 50% 35%, rgba(0, 0, 0, 0.10), rgba(0, 0, 0, 0.75));
}

.event-hero__content {
  position: relative;
  z-index: 2;
  padding: 0 18px;
}

.event-hero__title {
  margin: 0;
  font-size: clamp(2.8rem, 6vw, 4.8rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.event-hero__date {
  margin-top: 10px;
  display: inline-flex;
  gap: 10px;
  align-items: center;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 650;
}

.event-info-wrap {
  padding: 40px 5% 70px;
}

.event-info-card {
  max-width: 1100px;
  margin: 0 auto;
  padding: 48px 48px 40px;
  border-radius: 20px;
  background: rgba(20, 20, 20, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.10);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.55);
}

.event-info-card h2 {
  margin: 0 0 20px 0;
  font-size: 2rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}

.event-info-card h3 {
  margin: 32px 0 16px 0;
  font-size: 1.4rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: #ffffff;
}

.event-info-card p,
.event-info-card li {
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.75;
  font-size: 1.05rem;
  margin-bottom: 12px;
}

.event-detail-section {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.event-detail-section:first-of-type {
  border-top: none;
  padding-top: 0;
}

.event-detail-section p strong {
  color: rgba(255, 255, 255, 0.95);
  font-weight: 700;
}

/* Sección de ubicación con mapa */
.event-location {
  margin-top: 40px;
}

.event-map-container {
  position: relative;
  width: 100%;
  height: 450px;
  border-radius: 16px;
  overflow: hidden;
  margin-top: 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
  background: #000000;
}

.event-map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.event-map-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  color: #e10600;
  text-decoration: none;
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: color 0.2s ease, transform 0.2s ease;
}

.event-map-link:hover {
  color: #ff1a00;
  transform: translateX(6px);
}

.event-detail-actions {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.event-detail-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.9rem;
  background: #ffffff;
  color: #000000;
  border: 1px solid #ffffff;
  transition: all 0.2s ease;
}

.event-detail-btn:hover {
  background: #e10600;
  color: #ffffff;
  border-color: #e10600;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(225, 6, 0, 0.4);
}

.event-detail-btn--ghost {
  background: rgba(255, 255, 255, 0.06);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.2);
}

.event-detail-btn--ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.35);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 255, 255, 0.1);
}

/* Responsive */
@media (max-width: 768px) {
  .event-hero {
    margin-bottom: 60px;
  }

  .event-info-card {
    padding: 32px 24px;
  }

  .event-info-card h2 {
    font-size: 1.6rem;
  }

  .event-info-card h3 {
    font-size: 1.2rem;
  }

  .event-map-container {
    height: 350px;
  }

  .event-detail-actions {
    flex-direction: column;
  }

  .event-detail-btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .event-info-card {
    padding: 24px 18px;
  }

  .event-map-container {
    height: 280px;
    border-radius: 12px;
  }
}