body {
  margin: 0;
  font-family: system-ui, sans-serif;
  background: #fff9e6;
  color: #222;
}

.topbar {
  background: #ffd21f;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
}

nav a {
  margin-left: 1rem;
  text-decoration: none;
  color: #000;
}

.hero {
  text-align: center;
  padding: 5rem 1rem;
}

.btn {
  background: #f5b700;
  color: #000;
  padding: 0.75rem 1.25rem;
  border-radius: 8px;
  text-decoration: none;
  display: inline-block;
  margin: 0.5rem;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  padding: 2rem;
}

.card {
  background: white;
  border-radius: 12px;
  padding: 1rem;
}

.card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 8px;
}

.nick {
  font-style: italic;
  opacity: 0.7;
}
