
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500&display=swap');

body {
  font-family: 'Inter', sans-serif;
  background: white;
  margin: 0;
  padding: 0;
  color: #333;
}

.site-header {
  text-align: center;
  padding: 0;
  margin-bottom: 1.5rem;
}

.banner-img {
  width: 100%;
  height: auto;
  max-height: 300px;
  object-fit: cover;
  display: block;
}

.site-subheader {
  max-width: 700px;
  margin: 0.5rem auto 0;
  font-size: 1.2rem;
  line-height: 1.5;
  color: #444;
  font-weight: 500;
}

@media (max-width: 600px) {
  .site-subheader {
    font-size: 1rem;
    line-height: 1.4;
  }
}

#timeline {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 1rem;
}

.year-entry {
  display: flex;
  flex-wrap: nowrap;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 1.5rem;
  background: white;
}

.photos {
  display: flex;
  flex-direction: row;
  gap: 4px;
  flex-wrap: nowrap;
  justify-content: flex-start;
  max-width: 100%;
  flex-shrink: 0;
}

.photo-wrapper {
  width: 225px;
  max-height: 375px;
  flex-shrink: 0;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  background: white;
}

.photo-wrapper img {
  max-width: 100%;
  max-height: 100%;
  height: auto;
  display: block;
  background-color: white;
}

.year-entry p {
  flex: 1;
  margin: 0;
  text-align: left;
  align-self: flex-start;
  line-height: 1.5;
  font-size: 0.8rem !important;
}

@media (max-width: 700px) {
  .year-entry {
    flex-direction: column;
    align-items: center;
  }

  .photos {
    justify-content: center;
  }

  .year-entry p {
    margin-top: 0.5rem;
    text-align: center;
  }
}
