/* ============================================================
   ABOUT PAGE STYLES
   Used only by: about.html
   Global styles (nav, footer, buttons, colors) are in styles.css
   ============================================================ */

/* PAGE HERO — the banner at the top with photo and title */
/* Outer: full-width beige background + bottom border */
.page-hero {
  background: var(--cream-deep);
  border-bottom: 0.5px solid var(--border);
}

/*
  Inner: 1000px centered container — same width as bio and essence content below.
  Holds the two-column grid (text left, photo right) so both edges align with
  the rest of the page content.
*/
.page-hero-inner {
  max-width: 1000px;
  margin: 0 auto;
  min-height: 280px;
  display: grid;
  grid-template-columns: 1fr 320px; /* text fills remaining space, photo is 320px */
}

.page-hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 52px 32px; /* simple padding — the inner container handles centering */
}

.page-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 300;
  line-height: 1.05;
  color: var(--ink);
  margin-top: 16px;
}

.page-hero-photo {
  position: relative;
  overflow: hidden;
}

.photo-accent-bar {
  position: absolute;
  left: 0;
  top: 40px;
  width: 3px;
  height: 56px;
  background: var(--gold);
  z-index: 2;
}

.photo-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(160deg, #DDD0B8 0%, #C8B898 40%, #B0A080 100%);
  min-height: 280px;
  position: relative; /* needed so the img can use position: absolute inside it */
}

/* Makes the photo fill the entire placeholder box */
.photo-placeholder img {
  position: absolute;
  inset: 0;          /* shorthand for top/right/bottom/left: 0 — fills the parent */
  width: 100%;
  height: 100%;
  object-fit: cover; /* crops to fill without stretching */
  object-position: top; /* keeps the face in frame instead of cropping from the top */
}

.photo-name-tag {
  position: absolute;
  bottom: 0;
  right: 0;
  background: var(--terra);
  color: var(--cream);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 10px 18px;
  font-weight: 500;
}

/*
  CENTERING WRAPPER
  Limits content to 1000px wide and centers it on the page —
  the same approach the Resume page uses (max-width + margin: auto).
  The hero banner, essence bar, and footer sit OUTSIDE this wrapper
  and stay full-width.
*/
.about-centered {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 32px; /* side breathing room — wrapper handles all horizontal positioning */
}

/* BIO SECTION — the written paragraphs about the actor */
.bio-section {
  /* Horizontal padding removed — .about-centered wrapper handles it */
  padding: 64px 0;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  font-weight: 300;
  font-style: italic;
  color: var(--ink);
  margin-bottom: 20px;
}

.bio-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 32px;
}

.divider-line {
  width: 40px;
  height: 1.5px;
  background: var(--terra);
}

.divider-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

.bio-text {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
}

.bio-text p {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.82;
  color: var(--warm-mid);
}

/* MISSION STATEMENT — the italic quote block with a left border */
.mission-statement {
  border-left: 3px solid var(--terra);
  padding: 20px 28px;
  background: var(--cream-deep);
  margin-top: 8px;
}

.mission-statement p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-style: italic;
  color: var(--ink);
  line-height: 1.7;
}

/* ESSENCE BAR — full-width background strip; inner wrapper handles centering */
.essence-bar {
  border-top: 0.5px solid var(--border);
  background: var(--cream-deep);
  padding: 14px 0; /* top/bottom only — horizontal positioning handled by the inner wrapper */
}

/* When .about-centered sits inside the essence bar, make it a flex row */
.essence-bar .about-centered {
  display: flex;
  align-items: center;
  gap: 28px;
}

.essence-label {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--warm-muted);
  flex-shrink: 0;
  font-weight: 400;
}

.essence-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.tag {
  font-family: 'Cormorant Garamond', serif;
  font-size: 14px;
  font-style: italic;
  color: var(--ink);
  padding: 4px 14px;
  border: 0.5px solid var(--border-mid);
  border-radius: 2px;
  background: var(--cream);
  transition: border-color 0.2s, color 0.2s;
}

.tag:hover { border-color: var(--terra); color: var(--terra); }

/* CTA BUTTONS at the bottom of the About page */
.about-cta {
  /* Horizontal padding removed — .about-centered wrapper handles it */
  padding: 40px 0 72px;
  display: flex;
  align-items: center;
  gap: 24px;
}

/* ============================================================
   RESPONSIVE — tablet (991px and below)
   ============================================================ */
@media (max-width: 991px) {
  /* Stack the hero photo above the text on smaller screens */
  .page-hero-inner { grid-template-columns: 1fr; }
  .page-hero-photo { height: 280px; order: -1; }
  .page-hero-left { padding: 36px 24px; }

  /* Shrink the centering wrapper's side padding on tablet */
  .about-centered { padding: 0 24px; }
  /* Adjust vertical padding for bio and CTA on tablet */
  .bio-section { padding: 48px 0; }
  .about-cta { padding: 32px 0 56px; }
  .essence-bar { padding: 14px 0; } /* inner wrapper handles horizontal padding */
}

/* ============================================================
   RESPONSIVE — mobile (479px and below)
   ============================================================ */
@media (max-width: 479px) {
  .page-hero-left { padding: 28px 20px; }
  /* Shrink the centering wrapper's side padding on mobile */
  .about-centered { padding: 0 20px; }
  .bio-section { padding: 36px 0; }
  .about-cta { padding: 24px 0 48px; }
}
