#trip-page {
  max-width: 800px;
  margin: 0 auto;
  padding: 80px 30px 80px 30px;
  font-family: 'Amstrad', monospace;
}

#trip-header {
  margin-bottom: 40px;
  border-bottom: 1.5px solid #333;
  padding-bottom: 16px;
}

#trip-header h1 {
  font-size: 1.8rem;
  text-transform: lowercase;
  letter-spacing: 0.05em;
  margin-bottom: 6px;
}

#trip-header .trip-date {
  font-size: 1rem;
  color: #666;
}

.trip-section {
  margin-bottom: 80px;
  margin-top: 48px;
}

.trip-section h2 {
  font-size: 1.4rem;
  text-transform: lowercase;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
  border-left: 3px solid #333;
  padding-left: 10px;
}

.trip-section p {
  font-size: 1.2rem;
  line-height: 2.0;
  margin-bottom: 16px;
  color: #222;
}

.photo-row {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.trip-photo {
  flex: 1;
  min-width: 180px;
  height: 220px;
  overflow: hidden;
  border: 1.5px solid #333;
}

.trip-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.trip-photo.placeholder {
  background: #ccc;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #888;
  font-size: 0.7rem;
  font-family: 'Amstrad', monospace;
}

.trip-photo.placeholder::after {
  content: 'photo';
}

.trip-photo.tall {
  height: 450px;
}

.trip-photo.wide {
  height: 300px;
  flex: 2;
}

#modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.8);
  z-index: 1000;
}

#modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1001;
  max-width: 90vw;
  max-height: 90vh;
}

#modal img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  display: block;
  border: 2px solid #333;
}

#modal-close {
  position: absolute;
  top: -14px;
  right: -14px;
  font-family: 'Amstrad', monospace;
  font-size: 0.8rem;
  border: 1.5px solid #333;
  background: #fff;
  padding: 2px 8px;
  cursor: pointer;
  z-index: 1002;
}

#modal-close:hover {
  background: #000;
  color: #fff;
}

.hidden {
  display: none !important;
}

.trip-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.15s ease;
}

.trip-photo:hover img {
  transform: scale(1.05);
}

.second-aquarium .trip-photo.wide {
  height: 220px;
  min-width: 200px;
}

.second-aquarium .trip-photo.tall {
  height: 350px;
}

.trip-photo.feature {
  height: 500px;
  flex: 1;
}

.trip-section h3 {
  font-size: 0.95rem;
  text-transform: lowercase;
  letter-spacing: 0.05em;
  margin: 20px 0 10px 0;
  border-left: 2px solid #888;
  padding-left: 10px;
  color: #444;
}

#trip-content > p {
  font-size: 1.2rem;
  line-height: 2.5;
  margin-bottom: 28px;
  color: #222;
}