Add Google Maps links to schedule venues

Each venue in the schedule table is now a link that opens Google Maps.
Real place page used where found (Caliz, Webe Coffee); search fallback
for the rest. Pin icon appears on hover.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-04-30 22:43:47 +07:00
parent a4a4b44531
commit e4f8d9f8f0
2 changed files with 26 additions and 11 deletions

View File

@@ -523,6 +523,17 @@ section { padding: 5rem 0; }
.day-saturday { background: rgba(240,160,48,0.12); color: var(--gold); }
.day-sunday { background: rgba(24,184,184,0.12); color: var(--teal); }
.venue-map-link {
display: inline-flex;
align-items: center;
gap: 0.3rem;
color: var(--muted);
transition: color var(--tr);
}
.venue-map-link:hover { color: var(--teal); }
.venue-map-link svg { opacity: 0.5; flex-shrink: 0; transition: opacity var(--tr); }
.venue-map-link:hover svg { opacity: 1; }
.social-name { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; font-size: 0.83rem; color: var(--text); }
.venue-name { color: var(--muted); font-size: 0.8rem; }
.music-text { color: var(--muted); font-size: 0.78rem; }