body {
  margin: 0;
  font-family: 'Lora', serif;
  background-color: #f3ead7;
  color: #222;
  line-height: 1.7;
}

.navbar {
  padding: 15px 20px;
  text-align: center;
  position: relative;
  top: 13px; /* adjust this value */
}

.navbar a {
  margin: 0 10px;
  text-decoration: underline;
  color: #222;
  font-size: 1rem;
}

.navbar a:hover {
  opacity: 0.6;
}

.container {
  max-width: 800px;
  margin: auto;
  padding: 20px;
}

.page-title {
  font-size: 2rem;
  margin-bottom: 10px;
}

.intro p {
  margin-bottom: 12px;
  font-size: 0.96rem;
}

.feature-image {
  margin: 30px 0 10px;
}

.feature-image img {
  width: 100%;
  display: block;
}

.about .feature-image img {
  width: 60%;
}

footer {
  text-align: center;
  margin-top: 50px;
  padding: 20px;
  font-size: 0.95rem;
  color: #888;
}

/* =========================
   Gallery (photos.html)
   ========================= */

.photosintro {
  font-size: 0.96rem;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 20px;
  max-width: 100%;
}

.gallery figure {
  margin: 0;
}

.gallery img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover; 
  display: block;
  background-color: #eae0c8;
}

.gallery figcaption {
  text-align: left;
  font-style: italic;
  margin-top: 8px;
  font-size: 0.96rem;
  color: #444;
}

/* Caption links */
.gallery figcaption a {
  text-decoration: underline;
  color: inherit;
}

.gallery figcaption a:hover {
  opacity: 0.6;
}

/* =========================
   Photo detail page
   ========================= */

.photo-details {
  margin-top: 20px;
}

.notes {
  text-align: left;
  position: relative;
  font-size: 0.96rem;
  top: 12px;
}

.image-meta {
  display: flex;
  justify-content: space-between;
  margin-top: 8px;
  font-size: 0.97rem;
}

.note-item {
  padding-left: 12px;
  text-indent: -12px;
}

.location {
  text-align: left;
}

.date {
  text-align: right;
}

/* =========================
   Responsive
   ========================= */

@media (max-width: 600px) {
  .gallery {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .gallery img {
    width: 100%;
    aspect-ratio: 3 / 2;
  }
}

@media (max-width: 350px) {
  .gallery {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .page-title {
    font-size: 1.6rem;
  }
}

.desktop-break {
  display: inline;
}

@media (max-width: 600px) {
  .desktop-break {
    display: none;
  }
}