body {
  font-family: 'Segoe UI', sans-serif;
  background: #f4f1ee;
  color: #333;
  margin: 0;
  padding: 0;
}

header {
  background: #2e5d34;
  color: white;
  padding: 1em;
  text-align: center;
}

.subtitle {
  font-style: italic;
  font-size: 1.1em;
}

section {
  margin: 2em;
  padding: 1em;
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

button {
  background: #2e5d34;
  color: white;
  border: none;
  padding: 0.5em 1em;
  border-radius: 4px;
  cursor: pointer;
  margin-top: 0.5em;
}

button:hover {
  background: #3c7a45;
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1em;
}

.photo-grid img {
  width: 100%;
  border-radius: 6px;
}

figcaption {
  text-align: center;
  font-size: 0.9em;
  margin-top: 0.3em;
}

.emoji-buttons button {
  font-size: 1.5em;
  margin: 0.2em;
}

footer {
  text-align: center;
  padding: 1em;
  background: #ddd;
}
