.title-logo{
  width: 4em;
  height: auto;
  margin: 2em 0;
}

.header-link{
  cursor: pointer;
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
  font-size: 16px;
  color: #808080 !important;
}

.title-row{
  /* background: red; */
  padding: 6em 0;
}

header h1{
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
  font-size: 56px;
  font-weight: 800;
}

.subtitle{
  font-family: "Crimson Text", serif;
  font-size: 23px;
}

.quote{
  margin: 2em 0;
  padding-left: 2em;
  letter-spacing: -0.52px;
  line-height: 38px;
  font-family: "Crimson Text", serif;
  font-weight: 600;
  font-style: italic;
  font-size: 24px;
  color: #5c5c5c;
}

em p{
  margin-top: 1rem;
}

section.content h2, section.content h3{
  font-family: "Crimson Text", serif;
  font-weight: 600;
  font-size: 34px;
  margin-top: 56px;
  margin-bottom: 2rem;
}

section.content h3{
  font-size: 28px;
}

section.content img{
  margin: 1em 0 2em 0;
}

section.content a{
  color: #292b2c;
  text-decoration: underline;
}


section.content p, section.content li{
  font-family: "Crimson Text", serif;
  font-size: 21px;
}

footer{
  margin: 5em 0;
}

.footer-logo{
  width: 10em;
}

/* Team avatars */
.team-avatars {
  justify-content: center;
  gap: 2rem;
}

.team-avatars .avatar {
  width: 140px;
  height: 140px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 1rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-avatars .avatar:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

@media (max-width: 576px) {
  .team-avatars .avatar {
    width: 120px;
    height: 120px;
  }
}

@media (min-width: 992px) {
  .team-avatars .avatar {
    width: 160px;
    height: 160px;
  }
}

/* Recognition section */
.recognition-item {
  margin-bottom: 3rem;
}

.recognition-item h3 {
  margin-top: 0;
}

.recognition-item p {
  margin-bottom: 1.5rem;
}

/* Hero photo frame (single large image) */
.photo-frame.photo-hero {
  display: inline-block;
  max-width: 100%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background: #fff;
  padding: 10px;
  transform: rotate(-0.5deg);
}

.photo-frame.photo-hero:hover {
  transform: scale(1.01) rotate(0deg);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.photo-frame.photo-hero img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  display: block;
  margin: 0;
}

/* Photo collage */
.photo-collage-stacked {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  padding: 1rem 0;
}

.photo-collage-stacked .photo-frame {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background: #fff;
  padding: 8px;
}

.photo-collage-stacked .photo-frame:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
  z-index: 10;
}

.photo-collage-stacked .photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 6px;
  display: block;
  margin: 0;
}

.photo-collage-stacked .photo-secondary {
  height: 200px;
}

.photo-collage-stacked .photo-secondary img {
  height: 100%;
}

.photo-collage-stacked .photo-main {
  max-width: 600px;
  transform: rotate(-0.5deg);
}

.photo-collage-stacked .photo-row {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}

.photo-collage-stacked .photo-secondary {
  max-width: 280px;
}

.photo-collage-stacked .photo-row .photo-frame:first-child {
  transform: rotate(-2deg);
}

.photo-collage-stacked .photo-row .photo-frame:last-child {
  transform: rotate(2deg);
}

@media (max-width: 768px) {
  .photo-collage-stacked .photo-main {
    max-width: 95%;
  }

  .photo-collage-stacked .photo-row {
    flex-direction: column;
    align-items: center;
  }

  .photo-collage-stacked .photo-secondary {
    max-width: 85%;
  }

  .photo-collage-stacked .photo-frame {
    transform: none !important;
  }
}