body {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  background: #dcdcdc;
  color: #1f1f1f;
}

.site-header {
  text-align: center;
  padding: 48px 20px 28px;
}

.site-header h1 {
  margin: 0 0 10px;
  font-size: 2.1rem;
  font-weight: normal;
  letter-spacing: 0.5px;
}

.intro {
  margin: 0 auto;
  max-width: 700px;
  font-size: 1rem;
  line-height: 1.6;
  color: #444;
}

.gallery {
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 24px 80px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: 60px;
  justify-items: center;
}

.photo-card {
  margin: 0;
  width: 100%;
}

.photo-card img {
  width: 100%;
  display: block;
  box-sizing: border-box;
  background: #ffffff;
  padding: 40px;
  border: 2px solid #111;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  cursor: pointer;
}

.photo-card figcaption {
  margin-top: 14px;
  text-align: center;
}

.photo-card h2 {
  margin: 0 0 6px;
  font-size: 1.1rem;
  font-weight: normal;
}

.meta {
  margin: 0 0 10px;
  font-size: 0.95rem;
  color: #666;
}

.photo-card p {
  margin: 0;
  line-height: 1.6;
  font-size: 0.98rem;
}

#lightbox {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  align-items: center;
  justify-content: center;
  padding: 20px;
  box-sizing: border-box;
}

#lightbox-img {
  max-width: 90%;
  max-height: 90%;
  display: block;
}

#close {
  position: absolute;
  top: 24px;
  right: 36px;
  font-size: 42px;
  color: white;
  cursor: pointer;
  line-height: 1;
}
.footer {
  text-align: center;
  padding: 30px 20px 40px;
  font-size: 0.85rem;
  color: #666;
}
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.15);
  color: white;
  border: none;
  font-size: 42px;
  cursor: pointer;
  padding: 12px 18px;
}

#prev-btn { left: 20px; }
#next-btn { right: 20px; }

.lightbox-nav:hover {
  background: rgba(255,255,255,0.25);
}
.top-nav {
  text-align: center;
  padding: 20px 0;
  font-family: Arial, Helvetica, sans-serif;
  letter-spacing: 1px;
}

.top-nav a {
  margin: 0 15px;
  text-decoration: none;
  color: #222;
}

.top-nav a:hover {
  text-decoration: underline;
}
/* ABOUT PAGE STYLING */

.about-page {
  max-width: 900px;
  margin: 0 auto;
  padding: 20px 24px 80px;
}

.about-box {
  background: rgba(255, 255, 255, 0.75);
  max-width: 760px;
  margin: 50px auto;
  padding: 48px 52px;
  border: 1px solid #999;
  line-height: 1.9;
  font-size: 1.08rem;
}

.about-box p {
  margin-bottom: 20px;
}
.about-box blockquote {
  margin: 28px 0;
  padding-left: 22px;
  border-left: 2px solid #999;
  font-style: italic;
}
