
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

body {
  font-family: 'Montserrat', sans-serif;
  font-family: 'Montserrat', serif;
}

/* parallax banner */

.parallax-section {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  padding: 0;
}

.parallax {
  position: relative;
  height: 200px; /* adjust banner height */
  background-image: url("files/img/banner-thin.png");
  background-attachment: fixed;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.parallax::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-color: rgba(0,0,0,0.3); /* adjust darkness */
  z-index: 1;
}

.hero-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  z-index: 2; /* above overlay */
  width: 80%; /* limit text width */
}


/* FOOTER */

.footer {
  margin-top: 60px;
  padding: 40px;
  background-color: #15505C;
  color: white;
  text-align: left;
}

/* Remove width limit */

.container,
.container-fluid,
.page-columns,
.page-full {
  max-width: 100% !important;
  width: 100%;
}

/* Remove side padding */

body {
  margin: 0;
  padding: 0;
}

/* Full width sections */

.parallax,
.footer {
  width: 100%;
}

/* Make images responsive */

img {
  width: 100%;
  height: auto;
}

.center {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.logo-row {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.logo-row img {
  width: 80px;   /* control logo size */
  height: auto;
}




.team-member {
  text-align: center;
  margin-bottom: 2rem;
}

.team-member img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 50%;
}

.team-member .name {
  font-weight: bold;
  margin-top: 0.5rem;
}

.team-member .position {
  color: gray;
  font-size: 0.9rem;
}

.team-member .organization {
  color: gray;
  font-size: 0.8rem;
}