/* 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-primary);
  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: 2rem 1rem;
}

.photos-clock-icon {
  width: 5rem;
  height: 5rem;
  color: #2d5016;
  margin-bottom: 1.5rem;
  opacity: 0.8;
}

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

.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: 5rem;
  }

  .photos-container {
    padding: 1.5rem;
  }

  .photos-clock-icon {
    width: 4rem;
    height: 4rem;
  }

  .photos-intro {
    padding: 1.5rem 0.5rem;
  }

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