body {
  background: #f5efe4;
  color: #2b2320;
  font-family: Georgia, 'Times New Roman', serif;
  margin: 0;
  padding: 0;
}

.hero {
  text-align: center;
  padding: 40px 20px;
  background: #2b2320;
  color: #f5efe4;
}

.hero-photo {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #c9a24b;
}

.hero-photo-stack {
  position: relative;
  width: 140px;
  height: 140px;
  margin: 0 auto;
}

.hero-photo-stack .hero-photo {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.hero-photo-stack .hero-photo.active {
  opacity: 1;
}

.hero h1 {
  margin: 12px 0 4px;
  font-weight: normal;
  letter-spacing: 1px;
}

.hero .dates {
  margin: 0;
  opacity: 0.8;
}

main {
  max-width: 720px;
  margin: 0 auto;
  padding: 24px 16px 60px;
}

.filters {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.filters a {
  color: #2b2320;
  text-decoration: none;
  padding: 6px 14px;
  border: 1px solid #c9a24b;
  border-radius: 999px;
}

.filters a.active {
  background: #c9a24b;
  color: #2b2320;
}

.filters .share-link {
  margin-left: auto;
  background: #2b2320;
  color: #f5efe4;
}

.post {
  background: #fff;
  border-radius: 8px;
  padding: 16px;
  margin-bottom: 16px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.post img {
  max-width: 100%;
  border-radius: 6px;
  margin: 8px 0;
}

.empty {
  text-align: center;
  opacity: 0.7;
}

form label {
  display: block;
  margin-bottom: 12px;
}

form input[type="text"],
form input[type="password"],
form textarea {
  width: 100%;
  padding: 8px;
  box-sizing: border-box;
  font-family: inherit;
}

form textarea {
  min-height: 120px;
}

.honeypot {
  position: absolute;
  left: -9999px;
}

button {
  background: #2b2320;
  color: #f5efe4;
  border: none;
  padding: 10px 20px;
  border-radius: 6px;
  cursor: pointer;
  font-family: inherit;
}

.flashes {
  list-style: none;
  padding: 12px 16px;
  background: #fff3cd;
  border: 1px solid #c9a24b;
  border-radius: 6px;
  margin-bottom: 16px;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
}

.admin-table th,
.admin-table td {
  border: 1px solid #ccc;
  padding: 8px;
  text-align: left;
  vertical-align: top;
}

.hidden-row {
  opacity: 0.5;
}
