body {
  font-family: Georgia, serif;
  margin: 0;
  background: #e7e2db;
  color: #222;
}

header {
  text-align: center;
  padding: 40px 20px;
  background: #111;
  color: white;
  border-bottom: 3px solid #b68b5e;
}

header h1 {
  margin: 0;
  font-size: 2.5em;
}

nav {
  text-align: center;
  padding: 15px;
  background: #ddd;
}

nav a {
  margin: 0 10px;
  text-decoration: none;
  color: #222;
  font-weight: bold;
}

main {
  padding: 20px;
}

.post {
  max-width: 750px;
  margin: 60px auto;
  background: white;
  padding: 30px;
  border-radius: 6px;
  box-shadow: 0 6px 12px rgba(0,0,0,0.08);
}

.post h2 {
  margin-top: 0;
}

.post p {
  line-height: 1.6;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 10px;
  margin: 20px 0;
}

.gallery img {
  width: 100%;
  border-radius: 4px;
  cursor: pointer;
}

#contact {
  max-width: 700px;
  margin: 80px auto;
  text-align: center;
}

footer {
  text-align: center;
  padding: 30px;
  background: #111;
  color: white;
}

/* LIGHTBOX */

#lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.9);
  display: none;
  justify-content: center;
  align-items: center;
}

#lightbox img {
  max-width: 90%;
  max-height: 90%;
}

#close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 40px;
  color: white;
  cursor: pointer;
}