/* ============================================================
   MOISES COLACCI — shows.html Styles
   ============================================================ */

/* ── SHOW SECTIONS ───────────────────────────────────────── */
.show-section { background: var(--black); }
.show-section-alt { background: var(--dark); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }

.show-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

/* Visual on left, text on right */
.show-grid-left  { }
/* Visual on right, text on left */
.show-grid-right { }

/* ── SHOW VISUAL ─────────────────────────────────────────── */
.show-visual { position: relative; }

.show-img {
  width: 100%;
  aspect-ratio: 4 / 5;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.show-img-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.show-img-icon {
  font-size: 5rem;
  filter: drop-shadow(0 0 30px rgba(201,169,110,0.3));
  line-height: 1;
}

.show-img-frame {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  width: 65%;
  height: 65%;
  border: 1px solid rgba(201,169,110,0.18);
  pointer-events: none;
}
.show-grid-right .show-img-frame {
  right: auto;
  left: -1.5rem;
}

.show-badge {
  position: absolute;
  top: 2rem;
  left: -1rem;
  background: var(--gold);
  color: var(--black);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.5rem 1rem;
  white-space: nowrap;
}
.show-badge-right {
  left: auto;
  right: -1rem;
}

/* ── SHOW CONTENT ────────────────────────────────────────── */
.show-content { }

/* ── FEATURES LIST ───────────────────────────────────────── */
.show-features {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.show-features li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.feat-icon {
  flex-shrink: 0;
  color: var(--gold);
  font-size: 0.7rem;
  margin-top: 0.3rem;
}

.show-features li > div { flex: 1; }

.show-features strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.2rem;
  letter-spacing: 0.03em;
}

.show-features p {
  font-size: 0.82rem;
  color: var(--gray);
  line-height: 1.75;
}

/* ── CTA SECTION ─────────────────────────────────────────── */
.shows-cta {
  background: var(--dark-2);
  border-top: 1px solid var(--border);
  padding: 120px 0;
}
.shows-cta-inner {
  max-width: 640px;
  margin: 0 auto;
}

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 1024px) {
  .show-grid { gap: 4rem; }
}

@media (max-width: 800px) {
  .show-grid,
  .show-grid-right {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  /* Always show visual first on mobile */
  .show-grid-right .show-content { order: 2; }
  .show-grid-right .show-visual  { order: 1; }

  .show-img { max-width: 420px; margin: 0 auto; }
  .show-img-frame { display: none; }
  .show-badge, .show-badge-right { left: 0; right: auto; }

  .shows-cta { padding: 80px 0; }
}

@media (max-width: 480px) {
  .show-img-icon { font-size: 3.5rem; }
}
