/* ===================================================================
   Bright Future Community Development Services Inc. — Profile Pages
   Shared stylesheet for individual leadership profile pages.
   Mirrors the visual language of index.html (cream / deep-green / gold)
   =================================================================== */

:root {
  --cream: #f8f2e4;
  --cream-2: #efe5cf;
  --deep-green: #132216;
  --green: #34492f;
  --soft-green: #dce5d2;
  --gold: #d9a329;
  --gold-dark: #b98212;
  --brown: #6d4a1f;
  --text: #1c1c1c;
  --muted: #6b665d;
  --white: #ffffff;
  --shadow: 0 24px 60px rgba(19, 34, 22, 0.14);
  --radius-lg: 28px;
  --radius-md: 18px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Georgia, "Times New Roman", serif;
  background: var(--cream);
  color: var(--text);
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(var(--max), calc(100% - 40px));
  margin: auto;
}

/* ---------- Header / Nav (shared with index.html) ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(248, 242, 228, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(19, 34, 22, 0.08);
}

.navbar {
  min-height: 96px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand img {
  width: 86px;
  height: auto;
}

.brand-text {
  font-family: Arial, sans-serif;
  font-size: 13px;
  line-height: 1.2;
  font-weight: 700;
  max-width: 240px;
  color: var(--deep-green);
  letter-spacing: 0.02em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  font-family: Arial, sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--deep-green);
}

.nav-links a {
  opacity: 0.86;
}

.nav-links a:hover,
.nav-links a.active {
  opacity: 1;
  color: var(--gold-dark);
}

.nav-cta {
  background: var(--gold);
  color: var(--deep-green);
  padding: 13px 22px;
  border-radius: 999px;
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(217, 163, 41, 0.22);
}

.mobile-toggle {
  display: none;
  border: 0;
  background: var(--deep-green);
  color: var(--white);
  border-radius: 12px;
  padding: 10px 13px;
  font-size: 20px;
  cursor: pointer;
}

/* ---------- Breadcrumb ---------- */

.breadcrumb {
  font-family: Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--muted);
  padding: 22px 0 0;
}

.breadcrumb a {
  color: var(--gold-dark);
}

.breadcrumb span {
  margin: 0 6px;
  opacity: 0.6;
}

/* ---------- Profile Hero (split layout, inspired by reference) ---------- */

.profile-hero {
  padding: 40px 0 0;
}

.profile-hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: stretch;
  min-height: 560px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.profile-hero-panel {
  background: var(--deep-green);
  color: var(--white);
  padding: 64px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

.profile-hero-panel .accent-line {
  width: 90px;
  height: 4px;
  background: var(--gold);
  border-radius: 4px;
  margin-bottom: 26px;
}

.profile-hero-panel .eyebrow {
  font-family: Arial, sans-serif;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 12px;
  font-weight: 800;
  margin-bottom: 14px;
}

.profile-hero-panel h1 {
  font-size: clamp(38px, 5.2vw, 62px);
  line-height: 1.02;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}

.profile-role {
  display: inline-block;
  font-family: Arial, sans-serif;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--deep-green);
  background: var(--gold);
  padding: 10px 18px;
  border-radius: 999px;
  margin-bottom: 24px;
  width: fit-content;
}

.profile-tagline {
  font-family: Arial, sans-serif;
  font-style: italic;
  color: rgba(255, 255, 255, 0.86);
  font-size: 17px;
  max-width: 480px;
  border-left: 3px solid var(--gold);
  padding-left: 16px;
  margin-bottom: 26px;
}

.profile-hero-panel .lede {
  font-family: Arial, sans-serif;
  color: rgba(255, 255, 255, 0.78);
  font-size: 16px;
  max-width: 520px;
}

.profile-photo-wrap {
  position: relative;
  background: var(--soft-green);
  min-height: 320px;
}

.profile-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

/* ---------- Body sections ---------- */

section {
  padding: 92px 0;
}

.profile-body {
  background: var(--cream);
}

.section-heading {
  font-family: Arial, sans-serif;
  color: var(--gold-dark);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 12px;
  font-weight: 800;
  margin-bottom: 14px;
}

.profile-content-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 40px;
  align-items: start;
}

.bio-card,
.info-card {
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(19, 34, 22, 0.1);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: 0 16px 42px rgba(19, 34, 22, 0.08);
}

.bio-card h2 {
  font-size: 32px;
  color: var(--deep-green);
  margin-bottom: 18px;
  letter-spacing: -0.02em;
}

.bio-card p {
  font-family: Arial, sans-serif;
  color: var(--muted);
  font-size: 16px;
  margin-bottom: 18px;
}

.bio-card p:last-child {
  margin-bottom: 0;
}

.info-card {
  background: var(--deep-green);
  color: var(--white);
}

.info-card h3 {
  font-size: 20px;
  color: var(--gold);
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}

.info-card + .info-card,
.info-card .info-block + .info-block {
  margin-top: 26px;
}

.info-block {
  margin-bottom: 26px;
}

.info-block:last-child {
  margin-bottom: 0;
}

.info-card ul {
  list-style: none;
  display: grid;
  gap: 10px;
}

.info-card ul li {
  font-family: Arial, sans-serif;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.82);
  padding-left: 22px;
  position: relative;
}

.info-card ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
}

.info-card .contact-line {
  font-family: Arial, sans-serif;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 8px;
}

.info-card .contact-line strong {
  color: var(--white);
}

/* ---------- Highlight / focus grid (Who I Am style cards) ---------- */

.highlight-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 40px;
}

.highlight-card {
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(19, 34, 22, 0.1);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: 0 16px 42px rgba(19, 34, 22, 0.08);
}

.highlight-card h3 {
  color: var(--deep-green);
  font-size: 20px;
  margin-bottom: 10px;
}

.highlight-card p {
  font-family: Arial, sans-serif;
  color: var(--muted);
  font-size: 14.5px;
}

/* ---------- Quote strip ---------- */

.quote-strip {
  background: var(--deep-green);
  color: var(--white);
  padding: 72px 0;
  text-align: center;
}

.quote-strip h2 {
  max-width: 900px;
  margin: auto;
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.quote-strip em {
  color: var(--gold);
  font-style: italic;
}

.quote-strip .quote-source {
  margin-top: 18px;
  font-family: Arial, sans-serif;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.62);
}

/* ---------- Other profiles / next steps ---------- */

.other-profiles {
  background: var(--cream-2);
}

.other-profiles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.other-profile-card {
  display: grid;
  grid-template-columns: 64px 1fr;
  align-items: center;
  gap: 16px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(19, 34, 22, 0.08);
  border-radius: 20px;
  padding: 16px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.other-profile-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 32px rgba(19, 34, 22, 0.14);
}

.other-profile-card img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
}

.other-profile-card span {
  display: block;
  font-family: Arial, sans-serif;
  color: var(--gold-dark);
  font-weight: 800;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 2px;
}

.other-profile-card h4 {
  font-size: 16px;
  color: var(--deep-green);
}

/* ---------- CTA ---------- */

.cta-box {
  background: var(--white);
  border-radius: 38px;
  padding: 60px 40px;
  text-align: center;
  box-shadow: var(--shadow);
}

.cta-box h2 {
  font-size: clamp(30px, 4.5vw, 46px);
  color: var(--deep-green);
  line-height: 1;
  margin-bottom: 18px;
}

.cta-box p {
  max-width: 680px;
  margin: 0 auto 28px;
  font-family: Arial, sans-serif;
  color: var(--muted);
  font-size: 16px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 24px;
  border-radius: 999px;
  font-family: Arial, sans-serif;
  font-weight: 800;
  font-size: 14px;
  border: 1px solid transparent;
  cursor: pointer;
}

.btn-primary {
  background: var(--gold);
  color: var(--deep-green);
  box-shadow: 0 14px 34px rgba(217, 163, 41, 0.26);
}

.btn-outline {
  border-color: rgba(19, 34, 22, 0.28);
  color: var(--deep-green);
  background: rgba(255, 255, 255, 0.45);
}

/* ---------- Footer ---------- */

footer {
  padding: 48px 0;
  text-align: center;
  font-family: Arial, sans-serif;
  color: var(--muted);
  font-size: 14px;
}

.footer-logo {
  width: 92px;
  margin: 0 auto 18px;
}

/* ---------- Responsive ---------- */

@media (max-width: 980px) {
  .mobile-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    left: 20px;
    right: 20px;
    top: 98px;
    background: var(--cream);
    border: 1px solid rgba(19, 34, 22, 0.1);
    border-radius: 22px;
    padding: 24px;
    flex-direction: column;
    align-items: flex-start;
    box-shadow: var(--shadow);
    display: none;
  }

  .nav-links.active {
    display: flex;
  }

  .profile-hero-grid {
    grid-template-columns: 1fr;
    min-height: unset;
  }

  .profile-photo-wrap {
    min-height: 340px;
    order: -1;
  }

  .profile-content-grid,
  .highlight-grid,
  .other-profiles-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .navbar {
    min-height: 84px;
  }

  .brand img {
    width: 68px;
  }

  .brand-text {
    font-size: 11px;
    max-width: 170px;
  }

  .profile-hero-panel {
    padding: 44px 26px;
  }

  section {
    padding: 68px 0;
  }

  .bio-card,
  .info-card,
  .cta-box {
    padding: 28px 22px;
  }
}
