/* Photos Page Styles */

.photos-page {
  position: relative;
  width: 100vw;
  min-height: 100vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
}

.photos-overlay {
  flex-grow: 1;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 4rem;
}

.photos-container {
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  border-radius: 0.5rem;
  padding: 2rem;
  max-width: 42rem;
  width: 100%;
  margin-bottom: 2.5rem;
}

.photos-content {
  width: 100%;
}

.photos-title {
  font-size: calc(var(--font-size-h1) * 0.4);
  font-weight: bold;
  color: var(--color-dark-secondary-200);
  margin-bottom: 2rem;
  text-align: center;
}

.photos-intro {
  margin-bottom: 2rem;
  text-align: center;
  color: #4a5568;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1rem 1rem 0;
}

.photos-intro p {
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
}

.photos-intro-note {
  font-style: italic;
  font-size: 1rem !important;
  opacity: 0.8;
}

/* Timeline list */
.photos-list-wrapper {
  position: relative;
  padding-left: 1rem;
  margin-bottom: 2.5rem;
}

.photos-timeline-line {
  position: absolute;
  left: calc(1rem + 0.875rem - 1px);
  top: 0;
  height: 100%;
  width: 2px;
  background-color: var(--color-dark-secondary-200, #8b9e6e);
  opacity: 0.5;
}

.photos-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.photos-list-item {
  position: relative;
  padding-left: 2.5rem;
  margin-bottom: 1.25rem;
  min-height: 1.75rem;
}

.photos-list-number {
  position: absolute;
  left: 0;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 50%;
  background-color: var(--color-dark-secondary-200, #8b9e6e);
  color: #fff;
  font-weight: bold;
  font-size: 0.75rem;
}

.photos-list-text {
  margin: 0;
  font-size: 1.05rem;
  color: #374151;
  line-height: 1.75rem;
}

.photos-footer {
  margin-top: 2.5rem;
  text-align: center;
}

.photos-footer p {
  color: #4a5568;
  font-weight: 500;
  font-style: italic;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .photos-overlay {
    padding: 1.5rem;
  }

  .photos-container {
    padding: 1.5rem;
  }

  .photos-intro {
    padding: 0.5rem 0.25rem 0;
  }

  .photos-intro p,
  .photos-footer p {
    font-size: 0.9rem;
  }

  .photos-list-wrapper {
    padding-left: 0.5rem;
  }

  .photos-list-text {
    font-size: 0.95rem;
  }
}
