/* =====================================================================
   SeatGig — Performer + City Page
   Premium light-theme design system
   ===================================================================== */

/* ── Reset & Base ─────────────────────────────────────────────────── */

.pc-page {
  background: var(--ft-bg, #f8fafc);
  min-height: 100vh;
}

.pc-shell {
  width: min(1360px, calc(100% - 40px));
  margin: 0 auto;
}

/* ── Hero Banner ──────────────────────────────────────────────────── */

.pc-hero {
  position: relative;
  padding: 48px 0 40px;
  overflow: hidden;
  background: #d3d3d36e;
}

.pc-hero-inner {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 40px;
  align-items: center;
}

.pc-hero-content {
  position: relative;
  z-index: 2;
}

.pc-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ft-text-muted);
}

.pc-breadcrumb a {
  color: var(--ft-brand-blue);
  text-decoration: none;
  transition: color 0.2s;
}

.pc-breadcrumb a:hover {
  color: var(--ft-brand-orange);
}

.pc-breadcrumb i {
  font-size: 10px;
  color: var(--ft-text-light);
}

.pc-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 99px;
  background: #ecfdf5;
  color: var(--ft-brand-orange);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}

.pc-badge i {
  font-size: 14px;
}

.pc-hero h1 {
  margin: 0;
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -1.5px;
  color: var(--ft-text-main);
}

.pc-hero h1 span {
  color: var(--ft-brand-orange);
}

.pc-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 20px;
}

.pc-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 99px;
  background: var(--ft-surface);
  border: 1px solid var(--ft-border);
  font-size: 14px;
  font-weight: 600;
  color: var(--ft-text-main);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.pc-meta-item i {
  color: var(--ft-brand-blue);
  font-size: 14px;
}

.pc-hero-image {
  position: relative;
  z-index: 1;
}

.pc-hero-image-box {
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 32px;
  overflow: hidden;
  background: linear-gradient(135deg, #e0e7ff, #fef3c7);
  box-shadow: 0 20px 60px -15px rgba(15, 23, 42, 0.15);
  display: grid;
  place-items: center;
}

.pc-hero-image-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.pc-hero-image-box.is-fallback {
  background: linear-gradient(
    135deg,
    rgba(13, 148, 136, 0.7),
    rgba(16, 185, 129, 0.7)
  );
  background-size: cover;
  background-position: center;
}

.pc-hero-image-box.is-fallback span {
  font-size: 48px;
  font-weight: 800;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

/* ── Section Headings ─────────────────────────────────────────────── */

.pc-section {
  padding: 48px 0;
}

.pc-section-head {
  margin-bottom: 28px;
}

.pc-section-head h2 {
  margin: 0;
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 800;
  color: var(--ft-text-main);
  letter-spacing: -0.5px;
}

.pc-section-head p {
  margin: 8px 0 0;
  color: var(--ft-text-muted);
  font-size: 15px;
  line-height: 1.6;
  max-width: 700px;
}

.pc-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  color: var(--ft-brand-blue);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

/* ── Ticket Rows ──────────────────────────────────────────────────── */

.pc-tickets-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pc-ticket-row {
  display: grid;
  grid-template-columns: 80px 1fr auto auto;
  gap: 20px;
  align-items: center;
  padding: 16px 20px;
  border-radius: 20px;
  background: var(--ft-surface);
  border: 1px solid var(--ft-border);
  text-decoration: none;
  color: var(--ft-text-main);
  box-shadow: 0 4px 12px -2px rgba(0, 0, 0, 0.04);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}

.pc-ticket-row:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px -6px rgba(0, 0, 0, 0.08);
  border-color: #cbd5e1;
}

.pc-date-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  border-radius: 16px;
  background: linear-gradient(135deg, #f0fdfa, #f8fafc);
  border: 1px solid #e0e7ff;
}

.pc-date-box .month {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ft-brand-blue);
}

.pc-date-box .day {
  font-size: 22px;
  font-weight: 800;
  line-height: 1.1;
  color: var(--ft-text-main);
}

.pc-date-box .year {
  font-size: 11px;
  font-weight: 600;
  color: var(--ft-text-muted);
}

.pc-ticket-info {
  min-width: 0;
}

.pc-ticket-info strong {
  display: block;
  font-size: 16px;
  font-weight: 700;
  color: var(--ft-text-main);
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.pc-ticket-info small {
  display: block;
  margin-top: 4px;
  font-size: 13px;
  font-weight: 500;
  color: var(--ft-text-muted);
}

.pc-ticket-info .pc-ticket-time {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 4px;
  font-size: 12px;
  font-weight: 600;
  color: var(--ft-brand-blue);
}

.pc-ticket-price {
  text-align: right;
  white-space: nowrap;
}

.pc-ticket-price b {
  display: block;
  font-size: 15px;
  font-weight: 800;
  color: var(--ft-text-main);
}

.pc-ticket-price span {
  font-size: 12px;
  font-weight: 500;
  color: var(--ft-text-muted);
}

.pc-ticket-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 99px;
  background: var(--ft-brand-blue);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
  transition:
    background 0.2s,
    transform 0.2s;
  box-shadow: 0 4px 12px rgba(13, 148, 136, 0.2);
}

.pc-ticket-row:hover .pc-ticket-cta {
  background: #0f766e;
  transform: translateY(-1px);
}

.pc-show-more {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
  padding: 16px 32px;
  border: 2px solid var(--ft-border);
  border-radius: 99px;
  background: var(--ft-surface);
  color: var(--ft-text-main);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
}

.pc-show-more:hover {
  border-color: var(--ft-brand-blue);
  color: var(--ft-brand-blue);
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.05);
}

.pc-ticket-row.is-hidden {
  display: none;
}

/* ── About Section ────────────────────────────────────────────────── */

.pc-about-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 40px;
  align-items: start;
}

.pc-about-content {
  padding: 36px 40px;
  border-radius: 28px;
  background: var(--ft-surface);
  border: 1px solid var(--ft-border);
  box-shadow: 0 10px 30px -10px rgba(15, 23, 42, 0.06);
}

.pc-about-content h3 {
  margin: 0 0 20px;
  font-size: 24px;
  font-weight: 800;
  color: var(--ft-text-main);
  letter-spacing: -0.3px;
}

.pc-about-content p {
  margin: 0 0 16px;
  font-size: 15px;
  line-height: 1.75;
  color: var(--ft-text-muted);
  font-weight: 500;
}

.pc-about-content p:last-child {
  margin-bottom: 0;
}

.pc-about-content a {
  color: var(--ft-brand-blue);
  text-decoration: none;
  font-weight: 700;
  transition: color 0.2s;
}

.pc-about-content a:hover {
  color: var(--ft-brand-orange);
}

.pc-about-sidebar {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pc-sidebar-card {
  padding: 24px;
  border-radius: 24px;
  background: var(--ft-surface);
  border: 1px solid var(--ft-border);
  box-shadow: 0 8px 20px -8px rgba(15, 23, 42, 0.05);
}

.pc-sidebar-card h4 {
  margin: 0 0 16px;
  font-size: 14px;
  font-weight: 700;
  color: var(--ft-text-main);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.pc-sidebar-stat {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid #f1f5f9;
}

.pc-sidebar-stat:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.pc-sidebar-stat i {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: #f0fdfa;
  color: var(--ft-brand-blue);
  font-size: 14px;
  flex-shrink: 0;
}

.pc-sidebar-stat span {
  font-size: 14px;
  font-weight: 600;
  color: var(--ft-text-main);
  line-height: 1.4;
}

.pc-sidebar-stat small {
  display: block;
  font-size: 12px;
  color: var(--ft-text-muted);
  font-weight: 500;
}

/* ── FAQ Accordion ────────────────────────────────────────────────── */

.pc-faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 900px;
}

.pc-faq-item {
  border-radius: 20px;
  background: var(--ft-surface);
  border: 1px solid var(--ft-border);
  overflow: hidden;
  transition: box-shadow 0.3s;
}

.pc-faq-item.is-open {
  box-shadow: 0 10px 24px -6px rgba(0, 0, 0, 0.06);
}

.pc-faq-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  border: 0;
  background: transparent;
  color: var(--ft-text-main);
  font-size: 16px;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
  font-family: inherit;
  transition: color 0.2s;
}

.pc-faq-btn:hover {
  color: var(--ft-brand-blue);
}

.pc-faq-btn i {
  font-size: 14px;
  color: var(--ft-text-light);
  transition: transform 0.3s;
  flex-shrink: 0;
}

.pc-faq-item.is-open .pc-faq-btn i {
  transform: rotate(180deg);
  color: var(--ft-brand-blue);
}

.pc-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.pc-faq-answer-inner {
  padding: 0 24px 20px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--ft-text-muted);
  font-weight: 500;
}

/* ── Related Pages ────────────────────────────────────────────────── */

.pc-related-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.pc-related-card {
  display: flex;
  flex-direction: column;
  padding: 14px;
  border-radius: 20px;
  background: var(--ft-surface);
  border: 1px solid var(--ft-border);
  text-decoration: none;
  color: var(--ft-text-main);
  box-shadow: 0 4px 12px -2px rgba(0, 0, 0, 0.04);
  transition:
    transform 0.25s,
    box-shadow 0.25s,
    border-color 0.25s;
}

.pc-related-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px -8px rgba(0, 0, 0, 0.08);
  border-color: #cbd5e1;
}

.pc-related-img {
  width: 100%;
  aspect-ratio: 16/10;
  border-radius: 14px;
  overflow: hidden;
  background: #f1f5f9;
  display: grid;
  place-items: center;
}

.pc-related-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pc-related-img.is-fallback {
  background:
    linear-gradient(135deg, rgba(13, 148, 136, 0.7), rgba(16, 185, 129, 0.7));
  background-size: cover;
  background-position: center;
  color: #fff;
  font-weight: 800;
  font-size: 18px;
}

.pc-related-body {
  padding: 14px 4px 8px;
  flex: 1;
}

.pc-related-body strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.3;
}

.pc-related-body small {
  display: block;
  margin-top: 4px;
  font-size: 13px;
  color: var(--ft-text-muted);
  font-weight: 500;
}

.pc-related-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 4px 0;
  border-top: 1px solid #f1f5f9;
}

.pc-related-foot em {
  font-style: normal;
  font-size: 13px;
  font-weight: 800;
  color: var(--ft-brand-blue);
}

.pc-related-foot i {
  color: var(--ft-text-light);
  font-size: 14px;
  transition:
    transform 0.2s,
    color 0.2s;
}

.pc-related-card:hover .pc-related-foot i {
  color: var(--ft-brand-blue);
  transform: translateX(4px);
}

/* ── 404 Page ─────────────────────────────────────────────────────── */

.pc-404 {
  text-align: center;
  padding: 100px 20px;
}

.pc-404 h1 {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  letter-spacing: -1.5px;
  color: var(--ft-text-main);
  margin: 0;
}

.pc-404 p {
  margin: 16px auto 0;
  max-width: 560px;
  font-size: 17px;
  line-height: 1.6;
  color: var(--ft-text-muted);
  font-weight: 500;
}

.pc-404-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 32px;
  padding: 16px 36px;
  border-radius: 99px;
  background: var(--ft-brand-blue);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(13, 148, 136, 0.2);
  transition: all 0.2s;
}

.pc-404-cta:hover {
  background: #0f766e;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(13, 148, 136, 0.3);
}

/* ── Scroll Reveal ────────────────────────────────────────────────── */

.pc-reveal {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.pc-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Responsive ───────────────────────────────────────────────────── */

@media (max-width: 1024px) {
  .pc-hero-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .pc-hero-image {
    display: block;
    width: 300px;
  }

  .pc-about-grid {
    grid-template-columns: 1fr;
  }

  .pc-related-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .pc-shell {
    width: calc(100% - 32px);
  }

  .pc-hero {
    padding: 32px 0 24px;
  }

  .pc-hero h1 {
    font-size: 28px;
    letter-spacing: -0.5px;
  }

  .pc-hero-meta {
    gap: 8px;
  }

  .pc-meta-item {
    padding: 8px 14px;
    font-size: 13px;
  }

  .pc-section {
    padding: 32px 0;
  }

  .pc-ticket-row {
    grid-template-columns: 64px 1fr;
    gap: 12px;
    padding: 14px 16px;
  }

  .pc-ticket-price,
  .pc-ticket-cta {
    display: none;
  }

  .pc-ticket-row::after {
    content: "View Tickets →";
    grid-column: 1 / -1;
    text-align: center;
    padding: 10px;
    border-radius: 12px;
    background: var(--ft-brand-blue);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
  }

  .pc-date-box {
    width: 60px;
    height: 60px;
    border-radius: 12px;
  }

  .pc-about-content {
    padding: 24px 20px;
  }

  .pc-faq-btn {
    padding: 16px 18px;
    font-size: 15px;
  }

  .pc-related-grid {
    grid-template-columns: 1fr;
  }

  .pc-related-card {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 14px;
    padding: 12px;
  }

  .pc-related-img {
    aspect-ratio: 1/1;
    border-radius: 12px;
  }

  .pc-related-body {
    padding: 4px 0;
  }

  .pc-related-foot {
    display: none;
  }
}

@media (max-width: 480px) {
  .pc-hero h1 {
    font-size: 24px;
  }

  .pc-breadcrumb {
    font-size: 12px;
  }

  .pc-section-head h2 {
    font-size: 22px;
  }
}
