/* ✅ home.css loaded */

.home-page {
  outline: 0;
}


.hero {
  max-width: 1200px;
  margin: 80px auto;
  display: flex;
  gap: 60px;
  align-items: center;
}
    /* =========================================
   HOME PAGE OVERRIDES (bio + synergates)
   Safe overrides.
========================================= */

.home-page {
  max-width: 1100px;
  margin: 0 auto;
  padding: 28px 16px 60px;
}

.page-title {
  text-align: left;
  margin: 0 0 6px;
  letter-spacing: -0.03em;
}

.page-subtitle {
  text-align: left;
  margin: 0 0 18px;
  font-size: 1.02rem;
  color: rgba(30, 41, 59, 0.75);
}

/* Bio layout */
.bio-intro {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 28px;

  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(226,232,240,0.95);
  border-radius: 22px;
  padding: 26px;

  box-shadow: 0 18px 55px rgba(0,0,0,0.06);
}

/* Photo */
.bio-photo img {
  width: 60%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 18px;
  border: 1px solid rgba(226,232,240,0.9);
  box-shadow: 0 12px 35px rgba(0,0,0,0.10);
}

/* Summary */
.bio-summary h2 {
  text-align: left;
  margin: 6px 0 12px;
}

.bio-list.compact {
  margin: 10px 0 0;
  padding: 0;
  list-style: none;
}

.bio-list.compact li {
  margin-bottom: 10px;
  font-size: 15px;
  line-height: 1.55;
  color: rgba(30, 41, 59, 0.92);
}

.bio-list.compact li strong {
  color: rgba(123,17,19,0.98);
}

/* Button alignment */
.cta-row {
  margin-top: 22px;
  display: flex;
  justify-content: flex-start;
}

/* Synergates section spacing */
#synergates.section {
  margin-top: 26px;
}

/* ================================
   MOBILE HEADER FIX (global safe)
================================ */
header img {
  max-height: 66px;
  width: auto;
}

@media (max-width: 768px) {
  header {
    padding: 10px 14px !important;
  }

  header img {
    max-height: 42px !important;
  }
}

@media (max-width: 420px) {
  header img {
    max-height: 36px !important;
  }
}

/* ================================
   Mobile layout for bio
================================ */
@media (max-width: 900px) {
  .bio-intro {
    grid-template-columns: 1fr;
  }

  .page-title,
  .page-subtitle,
  .bio-summary h2 {
    text-align: center;
  }

  .cta-row {
    justify-content: center;
  }

  .bio-photo img {
    max-width: 360px;
    margin: 0 auto;
  }
}

    .bio-list.compact li {
  margin-bottom: 6px;
  font-size: 15px;
  line-height: 30px;
}
.hidden {
  display: none;
}
.toggle-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  padding: 12px 26px;
  margin: 28px auto;

  font-family: "Inter", sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.3px;

  color: #ffffff;
  background: linear-gradient(135deg, #692331, #8a2f42);

  border: none;
  border-radius: 999px; /* pill shape */
  cursor: pointer;

  box-shadow: 0 8px 20px rgba(105, 35, 49, 0.25);
  transition: all 0.25s ease;
}

.toggle-btn::after {
  content: "▾";
  font-size: 14px;
  transition: transform 0.25s ease;
}

.toggle-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 26px rgba(105, 35, 49, 0.35);
  background: linear-gradient(135deg, #5c1e2b, #7a2a3a);
}

.toggle-btn:active {
  transform: translateY(0);
  box-shadow: 0 6px 14px rgba(105, 35, 49, 0.25);
}
.toggle-btn.open::after {
  transform: rotate(180deg);
}