/* ============================================================
   BROOKS PTA — ABOUT PAGE STYLES
   Loaded only on page-about.php template.
   ============================================================ */

:root {
  --blue:        #064164;
  --blue-dark:   #032d47;
  --blue-xdark:  #021e30;
  --green:       #068D4D;
  --green-dark:  #056639;
  --mint:        #5adba0;
  --noise: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
}

/* ── HEADER OVERRIDE ── */
body.page-template-page-about-php .site-header {
  background: var(--blue);
  background-image: var(--noise), linear-gradient(135deg, rgba(255,255,255,.05) 0%, transparent 60%);
  background-blend-mode: overlay, normal;
  border-bottom: 1px solid rgba(255,255,255,.07);
  box-shadow: 0 1px 0 rgba(255,255,255,.05) inset, 0 2px 10px rgba(0,0,0,.25);
  position: sticky; top: 0; z-index: 600;
}
body.page-template-page-about-php .site-branding .site-title,
body.page-template-page-about-php .site-branding a.site-title { font-family: 'IBM Plex Sans', sans-serif; font-weight: 700; color: #fff; }
body.page-template-page-about-php .site-header .custom-logo-link img { filter: brightness(0) invert(1); }
body.page-template-page-about-php .nav-menu > li > a { color: rgba(255,255,255,.7); font-size: 13px; font-weight: 500; }
body.page-template-page-about-php .nav-menu > li > a:hover,
body.page-template-page-about-php .nav-menu > li.current-menu-item > a { color: #fff; text-decoration: none; }
body.page-template-page-about-php .nav-toggle__bar { background: #fff; }

/* ── PAGE WRAP ── */
.about-page-wrap {
  min-height: 100vh;
  background: #f4f7fa;
}

/* ── HERO ── */
.about-page-hero {
  background: var(--blue);
  background-image: var(--noise), linear-gradient(135deg, rgba(255,255,255,.05) 0%, transparent 60%);
  background-blend-mode: overlay, normal;
  padding: 52px 0 44px;
  position: relative; overflow: hidden;
}
.about-page-hero::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(90,219,160,.3), transparent);
}
.about-page-hero__inner { position: relative; z-index: 1; }
.about-page-eyebrow {
  font-size: 10.5px; font-weight: 800; letter-spacing: .12em;
  text-transform: uppercase; color: var(--mint);
  margin: 0 0 10px; font-family: 'IBM Plex Sans', sans-serif;
}
.about-page-title {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 38px; font-weight: 700; color: #fff;
  margin: 0; letter-spacing: -.01em;
}

/* ── BODY ── */
.about-page-body {
  padding: 52px 1.25rem 72px;
}

/* ── INTRO CONTENT ── */
.about-intro-content {
  max-width: 780px;
  margin: 0 auto 56px;
}
.about-intro-content p {
  font-size: 15.5px;
  line-height: 1.78;
  color: #3a4a58;
  margin-bottom: 22px;
  font-family: 'Inter', sans-serif;
}
.about-intro-content p:last-child { margin-bottom: 0; }

/* ── OFFICERS SECTION ── */
.about-officers-section {
  max-width: 960px;
  margin: 0 auto;
}

.about-officers-heading {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 24px; font-weight: 700;
  color: var(--blue);
  margin: 0 0 32px;
  padding-bottom: 16px;
  border-bottom: 2px solid #dde8f0;
  letter-spacing: -.01em;
}

/* 2-column grid */
.about-officers-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

/* Officer card */
.officer-card {
  background: #fff;
  border: 1px solid #dde4ec;
  border-radius: 12px;
  padding: 24px 28px;
  box-shadow: 0 1px 4px rgba(0,0,0,.05), 0 4px 16px rgba(0,0,0,.03);
  transition: box-shadow .18s ease, transform .18s ease;
  position: relative;
}
.officer-card::before {
  content: '';
  position: absolute; top: 0; left: 28px; right: 28px; height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--green));
  border-radius: 0 0 3px 3px;
  opacity: 0;
  transition: opacity .18s ease;
}
.officer-card:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,.09), 0 12px 40px rgba(0,0,0,.05);
  transform: translateY(-3px);
}
.officer-card:hover::before { opacity: 1; }

.officer-card--vacant { opacity: .65; }
.officer-card--vacant:hover { transform: none; box-shadow: 0 1px 4px rgba(0,0,0,.05); }
.officer-card--vacant::before { display: none; }

.officer-name {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 17px; font-weight: 800;
  color: var(--blue); margin-bottom: 5px; line-height: 1.2;
}
.officer-card--vacant .officer-name {
  color: #7a8c9a; font-style: italic;
}

.officer-role {
  font-size: 12px; font-weight: 700;
  letter-spacing: .07em; text-transform: uppercase;
  color: var(--green); margin-bottom: 12px;
  font-family: 'IBM Plex Sans', sans-serif;
}

.officer-email {
  display: inline-block;
  font-size: 12.5px; color: #5a7080;
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  border-bottom: 1px solid transparent;
  transition: color .15s, border-color .15s;
}
.officer-email:hover { color: var(--blue); border-color: var(--blue); text-decoration: none; }

/* ── RESPONSIVE ── */
@media (max-width: 600px) {
  .about-page-title { font-size: 26px; }
  .about-page-hero { padding: 36px 0 28px; }
  .about-page-body { padding: 36px 1.25rem 48px; }
  .about-intro-content { margin-bottom: 40px; }
  .about-officers-grid { grid-template-columns: 1fr; }
  .officer-card { padding: 20px; }
}
