/* Stylesheet for server-rendered SEO discovery pages (/live-music, /live-music-:region).
   Hand-copied brand values from client/src/App.css — not a component-library
   port, just enough to look and feel like BandForge. */
@import url('https://fonts.googleapis.com/css2?family=Barlow:wght@400;500;600;700&family=Barlow+Condensed:wght@600;700&display=swap');

:root {
  --orange: #E8470A;
  --orange-dark: #C93D08;
  --orange-light: #FFF0EB;
  --charcoal: #2D2D2D;
  --charcoal-mid: #444444;
  --charcoal-light: #6B6B6B;
  --white: #FFFFFF;
  --off-white: #F8F8F8;
  --grey-light: #F0F0F0;
  --grey-mid: #E0E0E0;
  --font: 'Barlow', sans-serif;
  --font-condensed: 'Barlow Condensed', sans-serif;
}

* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: var(--font);
  background: var(--off-white);
  color: var(--charcoal);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--orange); text-decoration: none; }
a:hover { text-decoration: underline; }

.seo-header {
  background: var(--white);
  border-bottom: 2px solid var(--grey-mid);
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
}
.seo-logo img { display: block; height: 32px; }
.seo-nav-link { font-size: 14px; font-weight: 500; color: var(--charcoal-light); }

.seo-main {
  max-width: 760px;
  margin: 0 auto;
  padding: 32px 20px 64px;
}

h1 {
  font-family: var(--font-condensed);
  font-size: 34px;
  font-weight: 700;
  color: var(--charcoal);
  letter-spacing: -0.3px;
  margin: 0 0 12px;
}
.seo-intro {
  font-size: 16px;
  color: var(--charcoal-mid);
  max-width: 640px;
  margin: 0 0 32px;
}

.seo-section { margin-bottom: 36px; }
.seo-section h2 {
  font-family: var(--font-condensed);
  font-size: 22px;
  font-weight: 700;
  color: var(--charcoal);
  border-bottom: 1px solid var(--grey-mid);
  padding-bottom: 8px;
  margin: 0 0 16px;
}

.seo-gig-list { list-style: none; margin: 0; padding: 0; }
.seo-gig-row {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 10px;
  align-items: baseline;
  padding: 10px 0;
  border-bottom: 1px solid var(--grey-light);
  font-size: 15px;
}
.seo-gig-date {
  font-weight: 600;
  color: var(--orange);
  min-width: 78px;
  flex-shrink: 0;
}
.seo-gig-act { font-weight: 600; color: var(--charcoal); }
.seo-gig-venue { color: var(--charcoal-light); }

.seo-empty { color: var(--charcoal-light); font-size: 15px; }

.seo-town-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 10px;
}
.seo-town-list li a {
  display: inline-block;
  background: var(--white);
  border: 1px solid var(--grey-mid);
  border-radius: 20px;
  padding: 6px 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--charcoal);
}
.seo-town-list li a:hover { border-color: var(--orange); color: var(--orange); text-decoration: none; }

.seo-region-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.seo-region-list li a {
  display: block;
  background: var(--white);
  border: 1px solid var(--grey-mid);
  border-radius: 8px;
  padding: 16px 20px;
  color: var(--charcoal);
}
.seo-region-list li a:hover { border-color: var(--orange); text-decoration: none; }
.seo-region-list li a strong { color: var(--orange); font-family: var(--font-condensed); font-size: 18px; }

.seo-footer {
  border-top: 1px solid var(--grey-mid);
  background: var(--white);
  padding: 20px 24px;
  text-align: center;
  font-size: 13px;
  color: var(--charcoal-light);
}
