/* Journey specific styles */

/* Fix the gap between sections */
.journey-hero {
  margin-bottom: 0;  /* Remove the margin between hero and overview */
}

/* Journey Status Section */
.journey-status {
  margin-top: 1rem;
  margin-bottom: 2rem;
}

.journey-status h3 {
  margin-bottom: 1.5rem;
}

/* Ensure all journey cards have a lower z-index than the header */
.journey-details-card,
.journey-status-card,
.journey-updates-card {
  position: relative;
  z-index: 1; /* Lower z-index than the header (100) */
}

/* Timeline specific styling */
.timeline-item .update-images {
  position: relative;
  margin: 1.5rem auto;
  overflow: hidden;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.timeline-item .update-painting,
.timeline-item .update-photo {
  display: block;
  width: 100%;
  margin: 0 auto 1rem;
  max-width: 800px;
}

/* Image container for consistent sizing */
.image-container {
  width: 100%;
  max-width: 800px;
  height: auto;
  max-height: 500px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  border-radius: 8px;
  margin: 0 auto;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

/* Enhance read-more link visibility */
.timeline-item .read-more {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.3rem 0.7rem;
  border-radius: 4px;
  background-color: var(--primary-blue);
  color: white;
  font-weight: 500;
  transition: background-color 0.3s ease;
}

.timeline-item .read-more:hover {
  background-color: var(--earthy-orange);
  color: white;
}

/* Other journey-specific styles can be added here */
