/* ═══════════════════════════════════════════════════
   MODAL - Event Details Modal
   ═══════════════════════════════════════════════════ */

.modal {
  display: none;
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  overflow-y: auto;
}

.modal-content {
  background: var(--bg2);
  margin: 5vh auto;
  padding: 2rem;
  width: 90%;
  max-width: 900px;
  border: 1px solid var(--border);
  border-radius: 8px;
}

.close {
  color: var(--muted);
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 68px;
  font-weight: bold;
  cursor: pointer;
}

.close:hover {
  color: var(--text);
}

.event-card-modal {
  display: flex;
  gap: 2rem;
}

.event-poster-modal {
  flex-shrink: 0;
  width: 400px;
  height: 500px;
  background: var(--bg3);
  border: 1px solid var(--border);
  overflow: hidden;
}

.event-poster-modal img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.event-content-modal {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.event-description {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.6;
}

.event-links {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.6;
}

.event-links a {
  color: var(--text);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}

.event-links a:hover {
  border-bottom-color: rgba(255, 255, 255, 0.6);
}

/* Made with Bob */
