/* 1. Base */

/* 2. Shared */
/* Style to center the images */
.image-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 50vh;
  padding-top: 10rem; /* Adjust as needed */
  padding-bottom: 0rem; /* Adjust as needed */
}
.image-container img {
  max-width: 250px; /* Adjust the maximum width of the images */
  max-height: 250px; /* Adjust the maximum height of the images */
  transition: transform 1.0s ease-out;
  mix-blend-mode: multiply;
  opacity: 0;
  transition: opacity 2.0s ease-in-out;
}

.image-container img.fade-in {
  opacity: 1;
}

body {
  height: 100%;
  padding-top: 56px; /* Adjust this value based on your navbar height */
  overflow-y: auto; /* Enable scrollbar if content overflows */
  position: relative; /* Needed for sticky positioning */
  align-items: center;
}

.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1030;
  background-color: #ffffff;
}

/* 3. Specific */

.button {
  font-family: "Montserrat", "Quicksand", sans-serif;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  transform-origin: center;
  transition-duration: 100ms;
}

.button {
  background-color: #1f2021;
  color: #fff;
  border-radius: 290486px;
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.2);
  display: inline-block;
  font-size: 0.875rem;
  line-height: 1;
  padding: 1.25em 2em;
  text-shadow: none;
  transition-property: box-shadow, transform;
  user-select: none;
  vertical-align: top;
  white-space: nowrap;
  will-change: box-shadow, transform;
  margin-top: 2rem;
}

.button:hover {
  box-shadow: 0 1.5rem 3rem rgba(0, 0, 0, 0.2);
  transform: scale(1.02) translateY(-4px);
}

.button:active {
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.3);
  transform: scale(0.98) translateY(-2px);
}

.button:link {
  text-decoration: none;
}

.button:visited {
  text-decoration: none;
}

.button:hover {
  text-decoration: none;
}

.button:active {
  text-decoration: none;
}

/* Mission style */
.blurred-image-container {
  position: relative;
}

.blurred-image {
  width: 100%;
  height: auto;
  filter: blur(100px);
}

/* Archive style */

.content {
  margin-top: 3%;
}

.timeline {
  position: fixed;
  left: 5%; /* Move the timeline selector closer to the left edge */
  top: 10%;
  width: 15%; /* Adjust width as needed */
  background-color: #fff;
  overflow-y: auto; /* Enable scrollbar if content overflows */
  height: 100%;
}

/* Additional CSS styles (not Bootstrap-specific) */
.timeline-item {
  cursor: pointer;
}

/* Add styles for active timeline items */
.active-item {
  background-color: #f2f2f2;
  font-weight: bold;
}

/* 4. Responsiveness */