/* ---------- updated brand colours ---------- */
:root {
  --pink: #fab6ca;
  --pink-dark: #e16aa0;
  --white: #ffffff;
}

/* ---------- layout ---------- */
html, body {
  margin: 0;
  padding: 0;
  font-family: "Nunito", system-ui, sans-serif;
  background: var(--pink);
  color: var(--white);
  text-align: center;
}

/* ---------- header ---------- */
header {
  margin-top: 2rem;
}
header h1 {
  font-family: "Fredoka", cursive;
  font-size: 2.4rem;
  margin: 1rem 0 0.5rem;
}
header img {
  max-width: 140px;
  margin-top: 1rem;
}

/* ---------- intro & content ---------- */
p.lead {
  font-size: 1.1rem;
  max-width: 620px;
  margin: 0 auto 1.5rem;
  line-height: 1.6;
}

/* ---------- section styling ---------- */
section h2 {
  font-family: "Fredoka", cursive;
  font-size: 1.8rem;
  margin-bottom: 1rem;
}
ul.clubs {
  list-style-type: disc;
  text-align: left;
  max-width: 360px;
  margin: 1rem auto 2rem;
  padding-left: 1.4rem;
  line-height: 1.6;
}
h3.ages {
  margin-top: 2rem;
}

/* ---------- Discord button ---------- */
.cta {
  margin-top: 2.5rem;
}
a.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1rem 2rem;
  background: var(--white);
  color: var(--pink-dark);
  font-weight: 700;
  text-decoration: none;
  border-radius: 14px;
  font-family: "Fredoka", cursive;
  font-size: 1.1rem;
  box-shadow: 0 6px 0 var(--pink-dark);
  transition: transform 0.15s, box-shadow 0.15s, filter 0.3s;
}
a.btn .icon {
  width: 45px;
  height: auto;
}
a.btn:hover {
  transform: translateY(-2px);
  filter: drop-shadow(0 0 8px var(--white));
}
a.btn:active {
  transform: translateY(4px);
  box-shadow: 0 2px 0 var(--pink-dark);
}

/* ---------- footer ---------- */
footer {
  margin: 4rem 0 1rem;
  font-size: 0.9rem;
}
