/* ── VENUE CARD ────────────────────────────────────── */
.vcard {
  background: var(--card-bg);
  color: var(--text-main);
  border: 1.5px solid var(--card-border);
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  overflow: hidden;
  text-decoration: none;
  display: block;
}

.vcard:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.10);
}

/* ── PHOTO ─────────────────────────────────────────── */
.vcard-photo {
  height: 220px;
  background: var(--photo-bg);
  position: relative;
  overflow: hidden;
}

.vcard-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.vcard:hover .vcard-photo img {
  transform: scale(1.03);
}

/* placeholder texture shown when no image */
.vcard-photo .texture {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    rgba(0,0,0,0) 0,
    rgba(0,0,0,0) 4px,
    rgba(0,0,0,0.018) 4px,
    rgba(0,0,0,0.018) 5px
  );
}

.vcard-photo .grid-lines {
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(0deg, transparent, transparent 39px, rgba(0,0,0,0.04) 40px),
    repeating-linear-gradient(90deg, transparent, transparent 39px, rgba(0,0,0,0.04) 40px);
}

/* ── CARD BODY ─────────────────────────────────────── */
.vcard-body {
  padding: 22px 22px 28px;
}

.vcard-name {
  font-size: 26px;
  font-weight: 900;
  text-transform: lowercase;
  font-family: var(--font-impact);
  letter-spacing: -0.01em;
  line-height: 1;
  margin-bottom: 8px;
  color: var(--text-main);
}

.vcard-location {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 18px;
  text-transform: lowercase;
}

.vcard-divider {
  height: 1px;
  background: #e8e5de;
  margin-bottom: 16px;
}

/* ── EVENTS LIST ───────────────────────────────────── */
.vcard-events {
  display: flex;
  flex-direction: column;
  gap: 9px;
  max-height: 102px;
  overflow: hidden;
  position: relative;
}

/* fade-out clipping effect */
.vcard-events::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 36px;
  background: linear-gradient(to bottom, transparent, var(--card-bg));
  pointer-events: none;
}

.event-item {
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  flex-shrink: 0;
  text-transform: lowercase;
}

.event-item.today {
  color: #111;
  font-weight: bold;
}

/* ── DOTS ──────────────────────────────────────────── */
.live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
  animation: pulse 2s ease-in-out infinite;
}

.gray-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gray-dot);
  flex-shrink: 0;
}

/* ── STAGGER ANIMATION ─────────────────────────────── */
.vcard { animation: rise 0.45s ease both; }
.vcard:nth-child(1) { animation-delay: 0.08s; }
.vcard:nth-child(2) { animation-delay: 0.18s; }
.vcard:nth-child(3) { animation-delay: 0.28s; }
.vcard:nth-child(4) { animation-delay: 0.36s; }
.vcard:nth-child(5) { animation-delay: 0.44s; }
.vcard:nth-child(6) { animation-delay: 0.52s; }
