/* General Layout */
body {
  font-family: "Comic Sans MS", cursive, sans-serif;
  margin: 0;
  background: #fffaf0;
  color: #333;
}

header {
  background: #ffda91;
  padding: 1rem;
  text-align: center;
}

header h1 {
  margin: 0;
}

nav a {
  margin: 0 1rem;
  text-decoration: none;
  color: #333;
  font-weight: bold;
}

footer {
  text-align: center;
  background: #ffda91;
  padding: 0.5rem;
  margin-top: 2rem;
}

/* Flyer Style (Home) */
.flyer main {
  max-width: 700px;
  margin: auto;
  padding: 1rem;
}

.services ul {
  list-style: none;
  padding: 0;
}

.services li {
  margin: 0.5rem 0;
}

/* Pinboard Style */
.pinboard {
  background: url("https://www.textures4photoshop.com/tex/thumbs/corkboard-background-with-seamless-cork-texture-thumb47.jpg") repeat; /* corkboard texture */
}

.board {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 2rem;
  justify-content: center;
}

.note {
  background: #fffacd;
  padding: 1rem;
  width: 200px;
  height: 150px;
  box-shadow: 2px 2px 6px rgba(0,0,0,0.3);
  transform: rotate(-2deg);
  position: relative;
}

.note:nth-child(even) {
  transform: rotate(2deg);
}

.note::before {
  content: "📌";
  position: absolute;
  top: 0.2rem;
  left: 50%;
  transform: translateX(-50%);
}

/* About Page */
.about main {
  max-width: 600px;
  margin: auto;
  padding: 1rem;
  line-height: 1.6;
}
