/* Neo-classic shared styles for Atmelo landing pages. Dark + serif + gold. */

/* Sticky site nav — for pages with body padding 40px 20px (artists/venues);
   index + /shows define their own full-bleed variant inline. */
body { animation: tunrPageIn .45s ease; }
@keyframes tunrPageIn { from { opacity: 0 } to { opacity: 1 } }
@media (prefers-reduced-motion: reduce) { body { animation: none; } }

.sitenav {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 22px;
  margin: -40px -20px 28px;
  background: rgba(10,10,10,.82);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.sitenav .wm {
  font-family: Didot, "Bodoni 72", Georgia, serif;
  font-size: 24px; font-weight: 700; letter-spacing: -.8px;
  color: #fff; text-decoration: none;
}
.sitenav .wm span { color: #FF3B6F; }
.sitenav .links { display: flex; gap: 20px; align-items: center; }
.sitenav .links a {
  color: #9CA3AF; font-size: 13px; font-weight: 700; text-decoration: none;
}
.sitenav .links a:hover, .sitenav .links a.active { color: #D4AF37; }
.sitenav .links a.pill {
  color: #0A0A0A; background: #D4AF37; padding: 8px 16px; border-radius: 8px;
}
@media (max-width: 560px) {
  .sitenav .links { gap: 13px; }
  .sitenav .links a { font-size: 12px; }
  .sitenav .links a .fx { display: none; }
  .sitenav .links a.pill { padding: 7px 12px; }
}
@media (max-width: 430px) {
  /* Match the homepage: keep Artists, Venues, AND Log in — drop ONLY Live Music
     so the nav never crams ("butted together") on small phones. Tighten the
     wordmark, padding, gap, and pill so the four items always fit. */
  .sitenav .links a[href="/live-music/"] { display: none; }
  .sitenav { padding: 12px 14px; }
  .sitenav .wm { font-size: 19px; }
  .sitenav .links { gap: 9px; }
  .sitenav .links a.pill { padding: 7px 10px; }
}
/* Above phone width the full nav labels show — never let them wrap to two lines
   (that's the cramped "Live / Music" header on desktop). Keep them on one row. */
@media (min-width: 561px) {
  .sitenav .links { flex-wrap: nowrap; }
  .sitenav .links a { white-space: nowrap; }
}
*, *::before, *::after { box-sizing: border-box; }
html, body {
  margin: 0;
  padding: 0;
  background: #0A0A0A;
  color: #fff;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}
body { padding: 24px 20px 80px; }

.wordmark {
  font-family: Didot, "Bodoni 72", Georgia, serif;
  font-size: 36px;
  font-weight: 700;
  letter-spacing: -1px;
  text-align: center;
  margin-bottom: 28px;
}
.wordmark .accent { color: #FF3B6F; }

.page {
  max-width: 480px;
  margin: 0 auto;
}

.eyebrow {
  font-size: 10px;
  font-weight: 800;
  color: #D4AF37;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  padding-bottom: 5px;
  border-bottom: 1px solid rgba(212,175,55,0.45);
  display: inline-block;
  margin-bottom: 16px;
}

h1.hero {
  font-family: Didot, "Bodoni 72", Georgia, serif;
  font-size: 44px;
  font-weight: 700;
  letter-spacing: -1px;
  line-height: 1.05;
  margin: 0 0 10px;
}

.hero-rule {
  width: 56px;
  height: 2px;
  background: #D4AF37;
  margin: 14px 0 18px;
}

.subline {
  font-size: 14px;
  color: #9CA3AF;
  font-weight: 600;
  margin: 0 0 8px;
}

.tagline {
  font-family: Didot, "Bodoni 72", Georgia, serif;
  font-style: italic;
  font-size: 16px;
  color: #D1D5DB;
  margin: 12px 0 20px;
  line-height: 1.4;
}

.avatar {
  width: 112px;
  height: 112px;
  border-radius: 14px;
  background: #FF3B6F;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.5);
  border: 5px solid #0A0A0A;
}
.avatar img { width: 100%; height: 100%; object-fit: cover; }
.avatar .initials {
  font-family: Didot, "Bodoni 72", Georgia, serif;
  font-size: 40px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -1px;
}

.banner {
  width: 100%;
  height: 200px;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 16px;
  background: rgba(255,255,255,0.04);
}
.banner img { width: 100%; height: 100%; object-fit: cover; }

.cta-primary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  background: #FF3B6F;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 16px;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -0.2px;
  text-decoration: none;
  cursor: pointer;
  margin: 8px 0;
}

.cta-secondary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 8px;
  padding: 14px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  margin: 4px 0;
}

.section { margin: 24px 0; }
.section-label {
  font-size: 10px;
  font-weight: 800;
  color: #D4AF37;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  padding-bottom: 5px;
  border-bottom: 1px solid rgba(212,175,55,0.45);
  display: inline-block;
  margin-bottom: 14px;
}
.section-title {
  font-family: Didot, "Bodoni 72", Georgia, serif;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.3px;
  margin: 0 0 12px;
}
.bio { font-size: 15px; color: #E5E7EB; line-height: 1.6; font-weight: 400; }

.show-card {
  display: flex;
  align-items: stretch;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  text-decoration: none;
  color: inherit;
}
.show-card:last-child { border-bottom: none; }

.show-date {
  background: #F5F1E8;
  border: 1px solid rgba(212,175,55,0.4);
  border-radius: 6px;
  padding: 8px 12px;
  min-width: 60px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-self: flex-start;
}
.show-date .dow {
  font-size: 9px;
  font-weight: 800;
  color: #6B7280;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}
.show-date .day {
  font-family: Didot, "Bodoni 72", Georgia, serif;
  font-size: 22px;
  font-weight: 700;
  color: #0A0A0A;
  letter-spacing: -0.8px;
  line-height: 1.1;
}
.show-date .mon {
  font-size: 9px;
  font-weight: 800;
  color: #6B7280;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.show-info { flex: 1; }
.show-title {
  font-family: Didot, "Bodoni 72", Georgia, serif;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.2px;
  margin: 0 0 4px;
}
.show-meta {
  font-size: 12px;
  color: #9CA3AF;
  margin: 0;
}

.empty {
  padding: 32px 16px;
  text-align: center;
  color: #6B7280;
  font-size: 13px;
}

.error-card {
  padding: 40px 20px;
  text-align: center;
}
.error-card h1 {
  font-family: Didot, "Bodoni 72", Georgia, serif;
  font-size: 28px;
  margin: 0 0 8px;
}
.error-card p { color: #9CA3AF; font-size: 14px; }

.tip-links {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.tip-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 12px 20px;
  border-radius: 10px;
  background: #D4AF37;
  color: #0A0A0A;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

.social-pills {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.social-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 6px 12px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.15);
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
}

.footer-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 12px 16px 22px;
  background: linear-gradient(to top, #0A0A0A 60%, rgba(10,10,10,0));
  z-index: 10;
}

/* Ambient claim CTA on unclaimed artist/venue pages (claim playbook 07-08:
   the self-recognition moment converts — the CTA lives on the page itself). */
.claim-box {
  margin: 22px 0;
  padding: 14px 16px;
  border: 1px solid rgba(212,175,55,0.4);
  border-radius: 12px;
  background: rgba(212,175,55,0.06);
}
.claim-box b { display: block; font-size: 14px; color: #fff; margin-bottom: 3px; }
.claim-box span { font-size: 12.5px; color: #9CA3AF; line-height: 1.55; }
.claim-box a {
  display: inline-block; margin-top: 8px; color: #0A0A0A; background: #D4AF37;
  font-size: 13px; font-weight: 800; text-decoration: none;
  padding: 9px 16px; border-radius: 8px;
}
.claimed-pill {
  display: inline-flex; align-items: center; gap: 4px;
  margin-left: 8px; padding: 2px 9px; border-radius: 20px;
  background: rgba(212,175,55,0.14); border: 1px solid rgba(212,175,55,0.45);
  color: #D4AF37; font-size: 10.5px; font-weight: 800;
  letter-spacing: 0.6px; text-transform: uppercase; vertical-align: middle;
}

.brand-footer {
  text-align: center;
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.brand-footer .small {
  font-size: 11px;
  color: #6B7280;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 700;
}

/* Claimed-on-Atmelo mark — small gold check beside names of admin-verified
   claimed accounts (echoes the app's gold checkmark badge). Claimed accounts
   also rank FIRST on every surface ("claimed-first, everywhere", 2026-07-15). */
.ckd { color: #D4AF37; font-weight: 800; margin-left: 4px; font-size: .85em; }
