:root {
  --black: #2b2b2b;
  --pink:  #fd9484;
  --green: #7ec3a8;
}

/* ====== GENERAL PAGE ====== */
* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: Arial, system-ui, sans-serif;
  background: #fff;
  display: flex;
  justify-content: center;
  padding: 2rem;
}

.container {
  text-align: center;
  max-width: 800px;
  width: 100%;
}

/* ====== HEADER (larger black splotch) ====== */
.blob-header {
  background: var(--black);
  color: #fff;
  padding: 2rem 1rem;
  margin-bottom: 2rem;

  /* more square / rounded-rectangle */
  border-radius: 20px;
}

.blob-header h1 {
  margin: 0 0 1rem;
  font-size: 2rem;
}

/* ====== NAVIGATION ====== */
nav {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

nav a {
  position: relative;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2rem;
  padding: 0.25rem 0.5rem;
  z-index: 1;
}

/* base pink splotch */
nav a::before {
  content: "";
  position: absolute;
  left: -0.35rem;
  right: -0.35rem;
  top: -0.25rem;
  bottom: -0.25rem;
  background: var(--pink);
  z-index: -1;
  transition: transform 120ms ease;
}

/* unique shapes per link */
nav a.home::before   { border-radius: 42% 58% 55% 45% / 52% 38% 60% 50%; }
nav a.about::before  { border-radius: 60% 40% 35% 65% / 40% 60% 45% 55%; }
nav a.spools::before { border-radius: 70% 30% 60% 40% / 50% 50% 60% 40%; }

/* active link subtle pop */
nav a[data-active="true"]::before { transform: rotate(-2deg) scale(1.05); }

/* hover wiggle */
nav a:hover::before { transform: rotate(2deg) scale(1.06); }

/* ====== IMAGE PLACEHOLDER (green blob) ====== */
.image-placeholder {
  background: var(--green);
  color: #fff;
  font-weight: bold;
  padding: 5rem;
  margin: 2rem auto;
  max-width: 400px;
  border-radius: 35% 65% 60% 40% / 55% 45% 55% 45%;
}

/* ====== BODY TEXT ====== */
.more-text {
  font-size: 1.1rem;
  color: var(--black);
  margin-top: 1rem;
}

/* ====== MOBILE TWEAKS ====== */
@media (max-width: 600px) {
  body { padding: 1rem; }

  .blob-header { padding: 1.5rem 1rem; }

  nav {
    flex-direction: column;
    gap: 1rem;
  }

  nav a { font-size: 1.25rem; }

  .image-placeholder {
    max-width: 90%;
    padding: 3rem;
  }
}

.canvas-btn {
  padding: 12px 20px;
  font-size: 18px;
  font-weight: 600;
  border-radius: 10px;
  border: 2px solid #111;
  background: #fff;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.canvas-btn:hover {
  background: #111;
  color: #fff;
}



