/* ═══════════════════════════════════════════════════════
   THE BAYLEY FILM CLUB — about.css
   About page — hero with background image, origin, contact
   ═══════════════════════════════════════════════════════ */

/* ── WRAP ─────────────────────────────────────────────── */
.about-wrap {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
}

/* ── FULL-PAGE BACKGROUND IMAGE ───────────────────────── */
.about-page-bg {
  position: fixed;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.25;
  filter: grayscale(0.8) contrast(1.1) brightness(0.9);
  pointer-events: none;
  z-index: 0;
}

.about-page-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, transparent 0%, rgba(6, 6, 10, 0.3) 50%, var(--black) 95%),
    linear-gradient(to right, rgba(6, 6, 10, 0.6) 0%, transparent 25%, transparent 75%, rgba(6, 6, 10, 0.6) 100%);
}

/* ── HERO ─────────────────────────────────────────────── */
.about-hero {
  position: relative;
  padding: 10rem 0 5rem;
  border-bottom: 1px solid var(--border);
  z-index: 1;
}

.about-hero-inner {
  position: relative;
}

.about-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3.5rem, 8vw, 6rem);
  line-height: 0.95;
  letter-spacing: 0.02em;
  color: var(--white);
  margin-top: 1rem;
}

.about-title span {
  color: var(--gold2);
  text-shadow: 0 0 40px rgba(201, 168, 76, 0.3);
}

.about-subtitle {
  font-family: 'Space Mono', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted2);
  margin-top: 1.5rem;
}

/* ── ORIGIN SECTION ───────────────────────────────────── */
.about-origin {
  padding: 4rem 0;
  border-bottom: 1px solid var(--border);
  position: relative;
  z-index: 1;
}

/* ── PROSE ────────────────────────────────────────────── */
.about-prose {
  max-width: 680px;
}

.about-heading {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem;
  letter-spacing: 0.04em;
  color: var(--white);
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

.about-heading:first-child {
  margin-top: 0;
}

.about-prose p {
  font-family: 'Syne', sans-serif;
  font-size: 0.92rem;
  line-height: 1.75;
  color: var(--muted2);
  margin-bottom: 1rem;
}

/* ── CONTACT ──────────────────────────────────────────── */
.about-contact {
  padding: 4rem 0 6rem;
  position: relative;
  z-index: 1;
}

.contact-header {
  margin-bottom: 2rem;
}

.contact-heading {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.5rem, 6vw, 4rem);
  letter-spacing: 0.04em;
  color: var(--white);
  margin-top: 1rem;
  line-height: 1;
}

.about-links {
  display: flex;
  gap: 1px;
  border: 1px solid var(--border);
  background: var(--border);
  margin-bottom: 2rem;
}

.about-link {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 1rem 1.2rem;
  background: var(--dark);
  text-decoration: none;
  transition: background 0.3s;
  flex: 1;
}

.about-link:hover {
  background: var(--panel);
}

.about-link-icon {
  color: var(--muted);
  flex-shrink: 0;
  transition: color 0.3s;
}

.about-link-icon svg {
  width: 32px;
  height: 32px;
}

.about-link:hover .about-link-icon {
  color: var(--gold2);
}

.about-link-body {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  flex: 1;
  min-width: 0;
}

.about-link-label {
  font-family: 'Space Mono', monospace;
  font-size: 0.42rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--muted);
}

.about-link-val {
  font-family: 'Syne', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--gold2);
  transition: color 0.3s;
}

.about-link:hover .about-link-val {
  color: var(--white);
}

.about-link-arrow {
  font-size: 0.85rem;
  color: var(--muted);
  opacity: 0;
  transform: translateX(-4px);
  transition: opacity 0.3s, transform 0.3s, color 0.3s;
}

.about-link:hover .about-link-arrow {
  opacity: 1;
  transform: translateX(0);
  color: var(--gold2);
}

/* ── PLACEHOLDER (Website — coming soon) ─────────────── */
.about-link.placeholder {
  cursor: default;
  opacity: 0.45;
}

.about-link.placeholder:hover {
  background: var(--dark);
}

.about-link.placeholder .about-link-val {
  color: var(--muted2);
  font-style: italic;
}

.about-link-soon {
  font-family: 'Space Mono', monospace;
  font-size: 0.5rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold2);
  border: 1px solid var(--gold2);
  padding: 0.15rem 0.5rem;
  border-radius: 2px;
  flex-shrink: 0;
  opacity: 0.7;
}

.about-byline {
  font-family: 'Space Mono', monospace;
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  color: var(--muted);
  font-style: italic;
}

/* ── RESPONSIVE ───────────────────────────────────────── */
@media (max-width: 600px) {
  .about-wrap {
    padding: 0 1.2rem;
  }

  .about-hero {
    padding: 6rem 0 3rem;
  }

  .about-origin {
    padding: 2.5rem 0;
  }

  .about-links {
    flex-wrap: wrap;
  }

  .about-link {
    flex: 1 1 45%;
    padding: 0.8rem 1rem;
  }

  .about-link-arrow {
    opacity: 1;
    transform: translateX(0);
  }

  .about-contact {
    padding: 2.5rem 0 4rem;
  }
}