/* ==========================================================================
   DACHA CINEMA — SCREENING ROOM & CURATORIAL DISPLAY STYLES
   ========================================================================== */

/* ==========================================================================
   PROGRAM / REEL SELECTOR TABS
   ========================================================================== */
.reel-selector-wrap {
  margin: 1.25rem 0 1.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.reel-selector-label {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-ink-muted);
  display: flex;
  align-items: center;
  gap: 8px;
}

.reel-selector-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--c-border-subtle);
}

.reel-tabs-list {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.reel-tab-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--c-sheet-alt);
  border: 1px solid var(--c-border-subtle);
  padding: 8px 14px;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--c-ink-soft);
  text-transform: uppercase;
  transition: all 0.2s ease;
  border-radius: 2px;
}

.reel-tab-btn:hover {
  border-color: var(--c-border-red);
  color: var(--c-red);
  background: #ffffff;
}

.reel-tab-btn.active {
  background: var(--c-red);
  border-color: var(--c-red);
  color: #ffffff;
  box-shadow: 0 2px 6px rgba(201, 59, 59, 0.25);
}

.reel-tab-num {
  font-size: 0.65rem;
  opacity: 0.85;
}

/* ==========================================================================
   MAIN SCREENING GRID (2-COLUMN EDITORIAL SPLIT)
   ========================================================================== */
.screening-grid {
  display: grid;
  grid-template-columns: 1.45fr 1fr;
  gap: 2rem;
  align-items: start;
  margin-bottom: 2.5rem;
}

/* ==========================================================================
   LEFT COLUMN: CINEMA SCREENING VIEWPORT
   ========================================================================== */
.cinema-viewport-container {
  background: #12100e;
  border: 2px solid var(--c-ink);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.18);
  position: relative;
  border-radius: 3px;
  overflow: hidden;
}

/* Vintage film sprockets ribbon */
.film-sprockets-ribbon {
  height: 16px;
  background: #181512;
  border-bottom: 1px solid #2b2622;
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 0 8px;
}

.film-sprockets-ribbon.bottom {
  border-bottom: none;
  border-top: 1px solid #2b2622;
}

.sprocket-hole {
  width: 10px;
  height: 8px;
  background: #000000;
  border: 1px solid #332d27;
  border-radius: 1.5px;
}

/* Video Frame */
.video-frame-aspect {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 */
  background: #000000;
  overflow: hidden;
}

.cinema-video-element {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #000000;
  transition: opacity 0.3s ease;
}

/* Video Overlay Flash Status */
.video-overlay-header {
  position: absolute;
  top: 10px;
  left: 12px;
  right: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  pointer-events: none;
  z-index: 5;
}

.video-loop-pill {
  background: rgba(18, 16, 14, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(4px);
  padding: 4px 8px;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: #fbf9f4;
  letter-spacing: 0.1em;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-radius: 2px;
}

.video-timecode {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: #ded5c5;
  letter-spacing: 0.08em;
  background: rgba(0, 0, 0, 0.6);
  padding: 3px 6px;
  border-radius: 2px;
}

/* Center Play Trigger Overlay (appears when paused) */
.cinema-center-play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.45);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  z-index: 6;
}

.cinema-center-play-overlay.visible {
  opacity: 1;
  pointer-events: auto;
}

.cinema-play-circle-btn {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--c-red);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  font-size: 1.5rem;
  padding-left: 4px;
  transition: transform 0.2s ease, background 0.2s ease;
}

.cinema-play-circle-btn:hover {
  transform: scale(1.08);
  background: var(--c-red-dark);
}

/* Bottom Controls Bar */
.cinema-controls-bar {
  background: #181512;
  padding: 10px 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #2b2622;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: #e5dec9;
}

.controls-left-group, .controls-right-group {
  display: flex;
  align-items: center;
  gap: 10px;
}

.ctrl-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #25201c;
  border: 1px solid #423b34;
  color: #fbf9f4;
  padding: 6px 12px;
  border-radius: 3px;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  transition: all 0.2s ease;
}

.ctrl-btn:hover {
  background: #332d27;
  border-color: var(--c-border-red);
  color: #ffffff;
}

.ctrl-btn.btn-active {
  border-color: var(--c-red);
  color: var(--c-red);
  background: rgba(201, 59, 59, 0.12);
}

.film-spec-tag {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: #8f8577;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ==========================================================================
   RIGHT COLUMN: CURATORIAL ARTIST CARD
   ========================================================================== */
.artist-curatorial-card {
  background: var(--c-card-bg);
  border: 1.5px solid var(--c-border-subtle);
  border-top: 3px solid var(--c-border-red);
  padding: 1.75rem;
  position: relative;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}

.card-top-status {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 0.75rem;
  margin-bottom: 1rem;
  border-bottom: 1px dashed rgba(201, 59, 59, 0.35);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.card-screening-badge {
  color: var(--c-red);
  font-weight: 700;
}

.card-archive-code {
  color: var(--c-ink-muted);
}

.artwork-title-wrap {
  margin-bottom: 0.75rem;
}

.artwork-display-title {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-style: italic;
  font-weight: 700;
  line-height: 1.15;
  color: var(--c-ink);
  letter-spacing: -0.01em;
}

.artist-attribution-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 1.25rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--c-border-subtle);
}

.artist-label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--c-ink-muted);
}

.artist-name-display {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--c-red);
}

/* Metadata Specs List */
.artwork-specs-grid {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 6px 14px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--c-ink-soft);
  margin-bottom: 1.25rem;
  padding: 0.75rem 1rem;
  background: var(--c-sheet);
  border: 1px solid var(--c-border-subtle);
}

.spec-key {
  color: var(--c-ink-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.spec-val {
  font-weight: 600;
}

/* Curatorial Statement & Editorial Description */
.curatorial-statement-wrap {
  margin-bottom: 1.75rem;
  position: relative;
}

.dropcap-black-box {
  float: left;
  background: var(--c-ink);
  color: #ffffff;
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1;
  padding: 8px 12px;
  margin-right: 12px;
  margin-bottom: 4px;
  box-shadow: 2px 2px 0 var(--c-red);
}

.editorial-paragraph {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--c-ink-soft);
  text-align: justify;
}

/* Artist Website Link Call To Action */
.artist-link-action-wrap {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.btn-outlined-red {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: transparent;
  color: var(--c-red);
  border: 1.5px solid var(--c-border-red);
  padding: 12px 20px;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-align: center;
  transition: all 0.2s ease;
  box-shadow: 2px 2px 0 rgba(201, 59, 59, 0.2);
}

.btn-outlined-red:hover {
  background: var(--c-red);
  color: #ffffff;
  box-shadow: 2px 2px 0 var(--c-ink);
  transform: translate(-1px, -1px);
}

.artist-website-domain {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: var(--c-ink-muted);
  text-align: center;
}

/* ==========================================================================
   PATRONAGE & DONATION SECTION (BOTTOM OF ONE-PAGE SITE)
   ========================================================================== */
.patronage-section {
  margin-top: 3rem;
  background: var(--c-sheet-alt);
  border: 1.5px solid var(--c-border-red);
  position: relative;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.patronage-header-red {
  background: var(--c-red);
  color: #ffffff;
  padding: 1rem 1.75rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.patronage-header-badge {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 700;
  color: #fbeee8;
}

.patronage-header-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.patronage-body {
  padding: 2rem 2.25rem;
}

.patronage-body-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

.patronage-narrative-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--c-ink);
  margin-bottom: 0.75rem;
  line-height: 1.25;
}

.patronage-narrative-desc {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--c-ink-soft);
  margin-bottom: 1.25rem;
}

/* Tier cards */
.patronage-tiers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 1rem;
}

.patronage-tier-card {
  background: var(--c-sheet);
  border: 1px dashed rgba(201, 59, 59, 0.45);
  padding: 12px;
  text-align: center;
  transition: all 0.2s ease;
}

.patronage-tier-card:hover {
  border-color: var(--c-red);
  background: #ffffff;
  transform: translateY(-2px);
}

.tier-amount {
  font-family: var(--font-mono);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--c-red);
  margin-bottom: 2px;
}

.tier-label {
  font-family: var(--font-serif);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--c-ink);
  margin-bottom: 4px;
}

.tier-desc {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  color: var(--c-ink-muted);
  line-height: 1.35;
}

/* Donation Action Right Column */
.patronage-action-box {
  background: var(--c-sheet);
  border: 1.5px solid var(--c-ink);
  padding: 1.75rem;
  text-align: center;
  box-shadow: 4px 4px 0 var(--c-ink);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.patronage-action-stamp {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  color: var(--c-red);
  text-transform: uppercase;
  font-weight: 700;
  border-bottom: 1px dashed rgba(201, 59, 59, 0.4);
  padding-bottom: 4px;
  width: 100%;
}

.btn-donate-primary {
  display: inline-block;
  width: 100%;
  background: var(--c-red);
  color: #ffffff;
  border: 2px solid var(--c-ink);
  padding: 14px 20px;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  box-shadow: 3px 3px 0 var(--c-ink);
  transition: all 0.2s ease;
}

.btn-donate-primary:hover {
  background: var(--c-red-dark);
  transform: translate(-1px, -1px);
  box-shadow: 4px 4px 0 var(--c-ink);
}

.patronage-secondary-link {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--c-ink-muted);
  text-decoration: underline;
  transition: color 0.15s ease;
}

.patronage-secondary-link:hover {
  color: var(--c-red);
}

/* ==========================================================================
   BROADSHEET FOOTER
   ========================================================================== */
.broadsheet-footer {
  margin-top: 3rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--c-border-subtle);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--c-ink-muted);
  flex-wrap: wrap;
  gap: 14px;
}

.footer-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.admin-link-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--c-ink-muted);
  padding: 4px 8px;
  border: 1px dashed var(--c-border-subtle);
  border-radius: 2px;
  transition: all 0.2s ease;
}

.admin-link-btn:hover {
  color: var(--c-red);
  border-color: var(--c-red);
  background: var(--c-sheet-alt);
}

/* ==========================================================================
   RESPONSIVE ADAPTATIONS
   ========================================================================== */
@media (max-width: 900px) {
  .screening-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .patronage-body-grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }
  .patronage-tiers-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .patronage-header-red {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
  .broadsheet-footer {
    flex-direction: column;
    align-items: flex-start;
  }
  .cinema-controls-bar {
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
  }
}
