/* ============================================================
   COUNSELORS PAGE STYLES
   All counselors.html-specific styles live here.
   Base site styles are in style.css.
   ============================================================ */

/* Page background */
body.counselors-page {
  background-color: #ffffff;
}

/* ---- Hero Banner ---- */
.counselors-page-hero {
  background-color: #ffffff;
}

.counselors-page-hero-content {
  max-width: 700px;
  padding: 180px 0 30px;
}

.counselors-page-hero-content p {
  font-size: 1.15rem;
  color: var(--slate);
  line-height: 1.7;
  margin-bottom: 30px;
}

.counselors-page-hero-content .back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--slate);
  text-decoration: none;
  transition: color 0.2s ease;
}

.counselors-page-hero-content .back-link:hover {
  color: var(--ocean-navy);
}

/* Label pill — reused from blog hero style */
.counselors-page-label {
  display: inline-block;
  text-transform: uppercase;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--ocean-navy);
  margin-bottom: 20px;
  padding: 6px 16px;
  background: var(--sage);
  border-radius: 20px;
}

/* Hero heading */
.counselors-page-hero-content h1 {
  font-family: var(--font-heading);
  font-size: 4rem;
  line-height: 1.1;
  color: var(--ocean-navy);
  margin: 16px 0 20px;
  letter-spacing: -1px;
}

.counselors-page-hero-content h1 em {
  color: var(--leaf-green);
  font-style: italic;
}

/* Accent line below heading */
.counselors-hero-accent {
  width: 50px;
  height: 3px;
  background-color: var(--accent-green);
  margin-bottom: 25px;
}

/* ---- All Counselors Grid Section ---- */
.counselors-all-section {
  padding: 20px 0 100px;
  background-color: #ffffff;
}

/* Reset card flex/margin so they sit properly in CSS grid */
.counselors-grid .counselor-card {
  flex: none;
  margin: 0;
}

/* ---- Modal animations — GSAP handles all open/close transitions ---- */
.booking-overlay,
.contact-overlay,
.profile-overlay {
  transition: none;
}
.booking-modal,
.contact-panel,
.profile-modal {
  transition: none;
}

/* ---- Responsive ---- */
@media (max-width: 768px) {
  .counselors-page-hero-content {
    padding: 140px 0 50px;
  }

  .counselors-page-hero-content h1 {
    font-size: 2.8rem;
  }
}
