@charset "utf-8";
/* =========================================================
   Phoenix Family - Custom Sections Styles
   Used for hero overlays, red intro bands, search styling,
   and other visual modules shared between About pages.
   ========================================================= */

/* ---------- RED INTRO SECTIONS ---------- */
.team-intro-section {
  background-color: #bb1654;
  color: #ffffff;
  text-align: center;
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.team-intro-title {
  color: #ffffff;
  font-weight: 700;
  font-size: 2.5rem; 
  margin-bottom: 1rem;
  letter-spacing: 0.3px;
}

.team-intro-text {
  color: #ffffff;
  font-size: 1.75rem;
  line-height: 1.8;
  max-width: 900px;
  margin: 0 auto;
}
.team-intro-textblock {
  background-color: #bb1654; /* PF red */
  color: #fff;
  text-align: center;
  padding: 3rem 1rem;
}

.team-intro-textblock h2,
.team-intro-textblock p {
  color: #fff !important;
}



/* ---------- FEATURED LEADER CARD ---------- */

.team-feature-section {
  background-color: #f9f9f9;
  position: relative;
  margin-top: -30px; 
  padding-top: 80px;
  padding-bottom: 30px;
}

.featured-card {
  max-width: 500px;
  border: none;
  border-radius: 6px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
  background-color: #ffffff;
  padding: 2rem;
  z-index: 2;
  position: relative;
}

.team-search-container {
  text-align: center;
  margin-top: -20px;
  margin-bottom: 3rem;
}

#teamSearch {
  width: 50%;
  max-width: 400px;
  background-color: #f1f1f1;
  border: none;
  border-radius: 30px;
  font-size: 16px;
  padding: 10px 18px;
  text-align: center;
  transition: all 0.3s ease;
}

#teamSearch:focus {
  background-color: #ffffff;
  box-shadow: 0 0 0 2px #bb1654;
  outline: none;
}


/* ---------- RESPONSIVE ADJUSTMENTS ---------- */
@media (max-width: 768px) {
  #teamSearch {
    width: 80%;
  }
  .team-intro-section {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
  .team-intro-section h2 {
    font-size: 1.75rem;
  }
  .team-intro-section .team-intro-text {
    font-size: 1rem;
    padding: 0 1rem;
  }
}

/* --- TEAM SECTIONS --- */
.team-section {
  padding: 3rem 0;
}
.section-title {
  text-align: center;
  font-weight: 700;
  margin-bottom: 2rem;
  font-size: 1.75rem;
  color: #000000;
}

#searchResults .card {
  margin-bottom: 1.5rem;
}
#searchResults h3 {
  margin-bottom: 2rem;
}

.section-title {
  font-size: 1.75rem;       
  font-weight: 700;
  text-align: center;
  margin-bottom: 2rem;
  color: #000;
}

@media (min-width: 992px) {
  .section-title {
    font-size: 2rem;        
  }
}

/* === HERO FIX FOR BOARD PAGE === */
.hero-banner {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 6rem 0;
  text-align: center;
}

.hero-banner h1,
.hero-banner p {
  color: #fff !important; /* force white text */
}

.hero-banner::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-color: rgba(0, 0, 0, 0.45); /* dark overlay for readability */
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
}


/* === RESTORE PHOENIX FAMILY RED ACCENTS === */

:root {
  --pf-red: #bb1654;
}

/* Buttons */
.btn-primary {
  background-color: var(--pf-red) !important;
  border-color: var(--pf-red) !important;
  color: #fff !important;
}
.btn-primary:hover,
.btn-primary:focus {
  background-color: #a31248 !important;
  border-color: #a31248 !important;
  color: #fff !important;
}

/* Menu hover / active */
.navbar-nav > li > a:hover,
.navbar-nav > li.active > a,
.navbar-nav > li.active > a:focus {
  color: var(--pf-red) !important;
}

/* Footer ribbon and accent lines */
.footer-ribbon span {
  background-color: var(--pf-red) !important;
}

/* Secondary buttons (outline style) */
.btn-secondary {
  background-color: transparent !important;
  border: 2px solid var(--pf-red) !important;
  color: var(--pf-red) !important;
}
.btn-secondary:hover {
  background-color: var(--pf-red) !important;
  color: #fff !important;
}
