body {
  margin: 0;
  font-family: "Inter", sans-serif;
  background: linear-gradient(to bottom, #000000, #33012c, #000000);
  color: #fff;
}
section {
  padding: 80px 20px;
}
h1,
h2,
h3 {
  margin-bottom: 20px;
}
h1 {
  font-size: 3rem;
  font-weight: 800;
}
h2 {
  font-size: 2.2rem;
  text-align: center;
}
p {
  color: #ccc;
  line-height: 1.6;
}
.hero {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.btn {
  display: inline-block;
  margin-top: 30px;
  padding: 16px 32px;
  background: #36a34d;
  color: #fff;
  border-radius: 16px;
  text-decoration: none;
  font-weight: 600;
}

.btn:hover {
  opacity: 0.7; /* slightly dim */
}

.container {
  max-width: 1100px;
  margin: auto;
}
.grid {
  display: grid;
  gap: 30px;
}
.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: center;
}
.card {
  background: #111;
  border-radius: 20px;
  padding: 30px;
  text-align: center;
}
footer {
  padding: 30px;
  text-align: center;
  color: #777;
  font-size: 0.9rem;
}

.social-icons a {
  font-size: 28px;
  color: #333;
  margin-right: 16px;
  text-decoration: none;
  transition: transform 0.2s ease, color 0.2s ease;
}

.social-icons a:hover {
  transform: scale(1.2);
  color: #36a34d;
}

.themecolor {
  color: #36a34d;
}

img {
  width: 200px;
}

.cent {
  text-align: center;
}

.playlist-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  padding: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.playlist-card {
  background: #181818;
  padding: 20px;
  border-radius: 16px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.playlist-card:hover {
  transform: translateY(-50px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.notice-board {
  background: #c49a6c;
  padding: 40px;
  display: flex;
  gap: 30px;
  flex-wrap: wrap;

  /* okvir */
  border: 12px solid #7a4a1e;
  border-radius: 6px;

  /* efekt dubine */
  box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.25), 0 8px 20px rgba(0, 0, 0, 0.4);

  /* izgled drva */
  background-image: repeating-linear-gradient(
    45deg,
    rgba(255, 255, 255, 0.03),
    rgba(255, 255, 255, 0.03) 5px,
    rgba(0, 0, 0, 0.03) 5px,
    rgba(0, 0, 0, 0.03) 10px
  );
}

/* Papirići */
.note {
  width: 220px;
  padding: 20px;
  position: relative;
  box-shadow: 3px 5px 10px rgba(0, 0, 0, 0.3);
  transform: rotate(-2deg);
  font-family: "Comic Sans MS", "Segoe UI", sans-serif;
}

.note h3 {
  margin-top: 0;
}

/* Boje papira */
.note.yellow {
  background: #fff3a0;
}
.note.white {
  background: #ffffff;
}

.note.pink {
  background: #f074d1;
}

/* Pribadača */
.pin {
  width: 14px;
  height: 14px;
  background: #555;
  border-radius: 50%;
  position: absolute;
  top: -7px;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.pin.red {
  background: #c0392b;
}
