/* ============================================
   RushTix /guides/ — Venue + Category Pages
   Extends styles.css (reuses .site-header, .signup-form, .site-footer)
   ============================================ */

/* ---- Venue Hero ---- */
.guide-hero {
  position: relative;
  min-height: 30vh;
  display: flex;
  align-items: flex-end;
  padding: 96px 24px 40px;
  color: #fff;
  overflow: hidden;
}

.guide-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-image: var(--guide-hero-img);
  filter: brightness(0.75) saturate(1.05);
  z-index: 0;
}

.guide-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.55) 100%);
  z-index: 0;
}

.guide-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 960px;
  margin: 0 auto;
  width: 100%;
}

.guide-eyebrow {
  font-size: 13px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #ff69b4;
  font-weight: 500;
  margin-bottom: 8px;
}

.guide-hero h1 {
  font-size: clamp(36px, 6vw, 64px);
  line-height: 1.05;
  font-weight: 700;
  margin-bottom: 16px;
}

.guide-locality {
  font-size: clamp(16px, 2vw, 20px);
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 24px;
}

.guide-byline {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
}

.guide-byline a { color: #ffa14a; }

/* ---- TL;DR ---- */
.guide-tldr {
  max-width: 960px;
  margin: 0 auto;
  padding: 40px 24px 0;
}

.guide-tldr-card {
  background: linear-gradient(135deg, rgba(255, 105, 180, 0.12), rgba(255, 161, 74, 0.08));
  border: 1px solid rgba(255, 105, 180, 0.25);
  border-radius: 16px;
  padding: 24px 28px;
  font-size: 17px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.92);
}

.guide-tldr-card strong {
  color: #ff69b4;
  letter-spacing: 0.08em;
  font-size: 12px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 8px;
}

/* ---- Venue Info Card ---- */
.guide-info {
  max-width: 960px;
  margin: 32px auto 0;
  padding: 0 24px;
}

.info-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 24px 28px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.info-cell .info-label {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 6px;
}

.info-cell .info-value {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.4;
}

.info-cell a {
  color: #ffa14a;
  border-bottom: 1px solid rgba(255, 161, 74, 0.3);
}

.info-cell a:hover {
  color: #ff69b4;
  border-bottom-color: rgba(255, 105, 180, 0.5);
}

/* ---- Body sections ---- */
.guide-body {
  max-width: 960px;
  margin: 0 auto;
  padding: 60px 24px;
}

.guide-section {
  margin-bottom: 56px;
}

.guide-section h2 {
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 600;
  margin-bottom: 20px;
  color: #fff;
}

.guide-section p {
  font-size: 16px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 16px;
}

/* ---- Top categories list ---- */
.guide-cats-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.guide-cats-list li {
  background: rgba(255, 105, 180, 0.12);
  border: 1px solid rgba(255, 105, 180, 0.3);
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 14px;
}

.guide-cats-list .count {
  color: rgba(255, 255, 255, 0.5);
  margin-left: 4px;
}

/* ---- Tag cloud ---- */
.guide-tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 6px;
  padding: 6px 12px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
}

/* ---- Recent shows list ---- */
.guide-shows-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.guide-shows-list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.03);
  border-left: 3px solid #ff69b4;
  border-radius: 4px;
  font-size: 15px;
}

.guide-shows-list .show-title {
  flex: 1;
  font-weight: 500;
}

.guide-shows-list .show-date {
  color: rgba(255, 255, 255, 0.55);
  font-size: 13px;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.guide-shows-list .runs {
  color: #ffa14a;
  font-size: 12px;
  margin-left: 8px;
}

/* ---- FAQ block ---- */
.faq-item {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 0;
  margin-bottom: 10px;
  overflow: hidden;
}

.faq-item summary {
  cursor: pointer;
  padding: 16px 20px;
  font-weight: 500;
  font-size: 16px;
  list-style: none;
  position: relative;
  padding-right: 48px;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 24px;
  color: #ff69b4;
  transition: transform 0.2s;
}

.faq-item[open] summary::after {
  transform: translateY(-50%) rotate(45deg);
}

.faq-item p {
  padding: 0 20px 18px;
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

/* ---- Signup CTA inline ---- */
.guide-signup-cta {
  max-width: 720px;
  margin: 60px auto;
  padding: 40px 24px;
  background: linear-gradient(135deg, rgba(255, 105, 180, 0.1), rgba(255, 161, 74, 0.08));
  border: 1px solid rgba(255, 105, 180, 0.25);
  border-radius: 20px;
  text-align: center;
}

.guide-signup-cta h2 {
  font-size: clamp(24px, 3vw, 32px);
  margin-bottom: 8px;
}

.guide-signup-cta p {
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 24px;
  font-size: 15px;
}

/* ---- Breadcrumb ---- */
.guide-breadcrumb {
  max-width: 960px;
  margin: 0 auto;
  padding: 88px 24px 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.04em;
}

.guide-breadcrumb a {
  color: rgba(255, 255, 255, 0.65);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s, color 0.2s;
}

.guide-breadcrumb a:hover {
  color: #ffa14a;
  border-bottom-color: rgba(255, 161, 74, 0.4);
}

.guide-breadcrumb .active {
  color: rgba(255, 255, 255, 0.85);
}

/* ---- Venue Grid (category + hub pages) ---- */
.venue-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 18px;
}

.venue-card {
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 22px 22px 20px;
  color: #fff;
  transition: border-color 0.2s, transform 0.2s, background 0.2s;
  position: relative;
}

a.venue-card:hover {
  border-color: rgba(255, 105, 180, 0.4);
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-2px);
}

.venue-card-eyebrow {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #ff69b4;
  margin-bottom: 10px;
}

.venue-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
  line-height: 1.2;
}

.venue-card-snippet {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
  margin-bottom: 16px;
  flex: 1;
}

.venue-card-link {
  font-size: 13px;
  color: #ffa14a;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.venue-card-soon {
  opacity: 0.55;
  cursor: default;
}

.venue-card-soon .venue-card-eyebrow {
  color: rgba(255, 255, 255, 0.5);
}

/* ---- Responsive ---- */
@media (max-width: 640px) {
  .guide-hero { min-height: 50vh; padding: 100px 20px 40px; }
  .guide-body { padding: 40px 20px; }
  .guide-breadcrumb { padding-top: 80px; }
  .venue-grid { grid-template-columns: 1fr; gap: 14px; }
}

/* Center the signup form block within the CTA card */
.guide-signup-cta .signup-form {
  margin-left: auto;
  margin-right: auto;
}

/* Event thumbnails in listing rows */
.listing-thumb {
  float: right;
  width: 132px;
  height: 99px;
  object-fit: cover;
  border-radius: 10px;
  margin: 0 0 8px 14px;
}
@media (max-width: 560px) {
  .listing-thumb { width: 96px; height: 72px; }
}

/* NEW badge (first 72h) */
.new-flag {
  display: inline-block;
  background: #ec018a;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 2px 8px;
  border-radius: 999px;
  margin-right: 6px;
  vertical-align: 2px;
}
