/* supplemental styles Layers on top of css/default.css */

/* page header used on interior pages (Our Team / Gallery) */
.page-header {
  padding: 9rem 0 4rem;
}
.page-header .eyebrow {
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: .15em;
  font-size: .9rem;
  font-weight: 700;
}

/* ---- Our Schools ---- */
.schools-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
@media (max-width: 767.98px) {
  .schools-grid { grid-template-columns: repeat(2, 1fr); }
}

.school-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1.75rem 1rem;
  border-radius: 30px;
  background-color: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all .25s ease-out;
  height: 100%;
}
.school-card:hover {
  border-color: var(--primary);
  transform: translateY(-2px);
  background-color: rgba(234, 188, 125, 0.06);
}
.school-card .school-mark {
  width: 125px;
  height: 56px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  color: #11171a;
  background-color: var(--primary);
  margin-bottom: 1rem;
}
.school-card .school-name {
  font-size: 1rem;
  font-weight: 600;
  color: #ffffff;
  line-height: 1.3;
}

/* ---- Team ---- */
.team-card {
  text-align: center;
  padding: 2rem 1rem;
}
.team-card .avatar {
  width: 200px;
  height: 200px;
  border-radius: 10%;
  margin: 0 auto 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 700;
  color: #11171a;
  background-color: var(--primary);
}
.team-card h5 {
  margin-bottom: .1rem;
  margin-left: .5rem;
}
.team-card .role {
  color: var(--darkerprimary);
  font-weight: 900;
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: .75rem;
  display: block;
}

/* ---- Gallery ---- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
}
@media (max-width: 767.98px) {
  .gallery-grid { grid-template-columns: repeat(1, 1fr); }
}
.gallery-tile {
  aspect-ratio: 4 / 3;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.75);
  font-weight: 600;
  text-align: center;
  padding: 1rem;
  background: linear-gradient(135deg, rgba(234,188,125,1), rgb(215, 214, 212));
  border: 1px solid rgba(255,255,255,0.08);
}

/* active nav state */
.navbar-nav .nav-link.active {
  color: var(--primary) !important;
}
