body { padding-top: 56px; }
.left-aligned { margin-left: auto; }
.bg-dark { background-color: #343a40 !important; }
.bg-hero { background-color: #45b06cff; }

/* CALLOUT */
.bd-callout { padding:1.25rem; margin-top:1.25rem; margin-bottom:1.25rem; border:1px solid #e9ecef; border-left-width:.25rem; border-radius:.25rem }
.bd-callout h4 { margin-bottom: 1.25rem }
.bd-callout p:last-child { margin-bottom:0 }
.bd-callout code { border-radius:.25rem }
.bd-callout+.bd-callout { margin-top:-.25rem }
.bd-callout-info { border-left-color:#5bc0de }
.bd-callout-warning { border-left-color:#f0ad4e }
.bd-callout-danger { border-left-color:#d9534f }

/* footer */
footer a { color: white; font-weight: bold; text-decoration: none; }
footer a:hover { color: white; text-decoration: underline; }

.image-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 15px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}
.image-grid figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  padding-top: 100%; 
  border-radius: 8px;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}
.image-grid figure:hover img{
  transform:scale(1.05);
}

.image-grid img{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  display: block
}

.image-grid figcaption {
  position: absolute;
  inset: 0; 
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  padding: 10px;
  text-align: center;
  width: 100%;
  font-size: 1rem;
  opacity: 0; 
  transition: opacity 0.3s ease; 
}

.image-grid figure:hover figcaption {
  opacity: 1;
}

.team-section {
  text-align: center; 
  margin: 40px auto; 
  max-width: 1200px;
}

.team-section h2 {
  font-size: 2rem;
  margin: 0px;
  padding: 20 px;
  font-weight: bold; 
  background-color: #5bc0de;
  color: #fff;
  border-radius: 8px; 
}