@charset "utf-8";


*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --vanilla: #FFF9F0;
  --pastel-pink: #FFD1DC;
  --tape: rgba(135, 206, 235, 0.4);
  --tape-hi: rgba(135, 206, 235, 0.55);
  --tape-lo: rgba(135, 206, 235, 0.2);
  --ink: #3A3226;
  --ink-light: #7A7060;
  --peach: #FFDAB9;
  --lavender: #E6D8F0;
  --mint: #D4F0E7;
  --butter: #FFF5C3;
  --coral-light: #FFE0D6;
}

html { scroll-behavior: smooth; }

body {
  background-color: var(--vanilla);
  background-image: radial-gradient(circle, #D4C9B8 0.8px, transparent 0.8px);
  background-size: 28px 28px;
  font-family: 'Special Elite', 'Courier New', Courier, monospace;
  color: var(--ink);
  min-height: 100vh;
  overflow-x: hidden;
}

/* ─── PAPER GRAIN (reusable SVG noise) ─── */
.paper-grain { position: relative; }
.paper-grain::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  opacity: 0.45;
  pointer-events: none;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='0.18'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  z-index: 0;
}

/* ─── HEADER ─── */
.site-header {
  text-align: center;
  padding: 60px 20px 20px;
}

.logo-badge {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--pastel-pink);
  border: 3px dashed var(--ink);
  border-radius: 50%;
  width: 110px;
  height: 110px;
  font-family: 'Fredoka', sans-serif;
  font-weight: 700;
  font-size: 15px;
  line-height: 1.2;
  letter-spacing: 1px;
  color: var(--ink);
  margin-bottom: 18px;
  position: relative;
}
.logo-badge::after {
  content: '✿';
  position: absolute;
  top: -12px;
  right: -8px;
  font-size: 24px;
}

.site-title {
  font-family: 'Fredoka', sans-serif;
  font-weight: 700;
  font-size: clamp(32px, 6vw, 56px);
  color: var(--ink);
  letter-spacing: 2px;
  line-height: 1.1;
}
.site-title span { color: #E8889A; }

.site-tagline {
  font-family: 'Special Elite', monospace;
  font-size: clamp(13px, 2vw, 17px);
  color: var(--ink-light);
  margin-top: 10px;
  letter-spacing: 1.5px;
}

/* ─── NAV ─── */
.nav-strip {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin: 30px auto 10px;
  padding: 0 20px;
}
.nav-strip a {
  font-family: 'Fredoka', sans-serif;
  font-weight: 600;
  font-size: 13px;
  text-decoration: none;
  color: var(--ink);
  background: var(--butter);
  padding: 8px 20px;
  border: 2px solid var(--ink);
  border-radius: 24px;
  letter-spacing: 0.5px;
  transition: 0s !important;
  cursor: pointer;
}
.nav-strip a:hover {
  background: var(--pastel-pink);
  transform: rotate(-2deg);
}

/* ─── BOARD ─── */
.board {
  position: relative;
  max-width: 1260px;
  margin: 40px auto 0;
  padding: 20px 40px;
  min-height: 1440px;
}

/* ─── NOTE BASE ─── */
.note {
  position: absolute;
  background: #fff;
  border: 2px solid rgba(58, 50, 38, 0.10);
  border-radius: 3px;
  padding: 38px 36px 30px;
  cursor: default;
  user-select: auto;
  box-shadow:
    2px 3px 0px rgba(58,50,38,0.04),
    4px 6px 12px rgba(58,50,38,0.07);
  transition: 0s !important;
  opacity: 0;
}

.note .drag-handle {
  position: absolute;
  left: 0;
  right: 0;
  height: 30px;
  cursor: grab;
  z-index: 11;
}
.note .drag-handle--top { top: 0; }
.note .drag-handle--bottom { bottom: 0; }
.note.dragging .drag-handle { cursor: grabbing; }
.note--4.dragging { clip-path: none; }
.note--3.dragging { clip-path: none; }
.note--9.dragging { clip-path: none; }
.note *, .note *::before, .note *::after { transition: 0s !important; }

.note.dragging {
  box-shadow:
    3px 4px 0px rgba(58,50,38,0.05),
    6px 10px 18px rgba(58,50,38,0.10);
}

/* Sparkle container */
.sparkles {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  pointer-events: none;
  overflow: visible;
  z-index: 10;
}
.sparkle-dot {
  position: absolute;
  font-size: 16px;
  color: #FFB347;
  opacity: 0;
  pointer-events: none;
  transition: 0s !important;
}
.sparkle-dot:nth-child(1) { top: 4px; left: 6px; font-size: 20px; }
.sparkle-dot:nth-child(2) { top: -8px; left: 34px; font-size: 14px; color: #FF8FAB; }
.sparkle-dot:nth-child(3) { top: 16px; left: -6px; font-size: 12px; color: #87CEEB; }

.note:hover .sparkle-dot { opacity: 1; }
.note:hover .sparkle-dot:nth-child(1) { transform: scale(1.3); }
.note:hover .sparkle-dot:nth-child(2) { transform: scale(1.1) rotate(20deg); }
.note:hover .sparkle-dot:nth-child(3) { transform: scale(1.2) rotate(-15deg); }

.note:hover {
  transform: rotate(0deg) !important;
  background: #FFE4EC !important;
}

/* ─── TAPE (realistic gradient + torn edges) ─── */
.tape {
  position: absolute;
  border-radius: 1px;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(135deg, var(--tape-hi) 0%, var(--tape) 40%, var(--tape-lo) 100%);
  border-top: 1px solid rgba(255,255,255,0.5);
  border-bottom: 1px solid rgba(135,206,235,0.15);
  box-shadow: 0 1px 2px rgba(0,0,0,0.04);
}
.tape-tl { top: -9px; left: 14px; width: 60px; height: 22px; transform: rotate(-8deg);
  clip-path: polygon(2% 0%, 98% 2%, 100% 95%, 97% 100%, 3% 98%, 0% 5%); }
.tape-tr { top: -7px; right: 16px; width: 54px; height: 20px; transform: rotate(12deg);
  clip-path: polygon(1% 3%, 97% 0%, 100% 96%, 98% 100%, 2% 97%, 0% 6%); }
.tape-bl { bottom: -7px; left: 18px; width: 58px; height: 20px; transform: rotate(5deg);
  clip-path: polygon(3% 0%, 99% 3%, 97% 100%, 1% 97%); }
.tape-br { bottom: -9px; right: 12px; width: 62px; height: 21px; transform: rotate(-6deg);
  clip-path: polygon(2% 2%, 98% 0%, 100% 98%, 0% 100%); }
.tape-tc { top: -8px; left: 50%; width: 66px; height: 21px; transform: translateX(-50%) rotate(2deg);
  clip-path: polygon(1% 0%, 100% 3%, 98% 100%, 2% 97%); }

/* ─── Note typography ─── */
.note-title {
  font-family: 'Fredoka', sans-serif;
  font-weight: 700;
  font-size: 24px;
  color: var(--ink);
  margin-bottom: 12px;
  line-height: 1.2;
  position: relative; z-index: 1;
}
.note-body {
  font-family: 'Special Elite', monospace;
  font-size: 15.5px;
  line-height: 1.75;
  color: var(--ink-light);
  position: relative; z-index: 1;
}
.note-tag {
  display: inline-block;
  font-family: 'Fredoka', sans-serif;
  font-weight: 600;
  font-size: 12px;
  background: var(--butter);
  color: var(--ink);
  padding: 4px 14px;
  border-radius: 20px;
  margin-top: 14px;
  letter-spacing: 0.5px;
  position: relative; z-index: 1;
}

/* ─── NOTE 1 — Hero / Intro (large) ─── */
.note--1 {
  width: min(520px, 85vw);
  top: 0; left: 4%;
  transform: rotate(-3deg);
  z-index: 5;
}
.note--1 .profile-pic {
  width: 140px;
  height: 180px;
  object-fit: cover;
  border: 3px solid var(--pastel-pink);
  border-radius: 4px;
  float: right;
  margin: 0 0 10px 18px;
  transform: rotate(3deg);
  box-shadow: 2px 3px 8px rgba(58,50,38,0.08);
  position: relative;
  z-index: 1;
}

.note--1 .note-hero-text {
  font-family: 'Fredoka', sans-serif;
  font-weight: 700;
  font-size: clamp(28px, 4vw, 48px);
  color: #E8889A;
  line-height: 1.15;
  margin-bottom: 16px;
  position: relative; z-index: 1;
}

/* ─── NOTE 2 — Polaroid Project Card ─── */
.note--2 {
  width: min(370px, 72vw);
  top: 20px; right: 6%;
  transform: rotate(4deg);
  z-index: 4;
  background: #fff;
  padding: 18px 18px 28px;
  border: 2px solid rgba(58,50,38,0.08);
  box-shadow:
    2px 3px 0px rgba(58,50,38,0.04),
    4px 6px 14px rgba(58,50,38,0.08);
}
.polaroid-frame {
  width: 100%;
  aspect-ratio: 1 / 0.85;
  border: 1px solid rgba(58,50,38,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.polaroid-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: relative;
  z-index: 1;
}
.polaroid-frame::before {
  content: '';
  position: absolute;
  inset: 10px;
  border: 2px dashed rgba(255,255,255,0.3);
  z-index: 2;
}
.polaroid-caption {
  text-align: center;
  padding-top: 16px;
}
.polaroid-caption .note-title { font-size: 20px; margin-bottom: 8px; }
.polaroid-caption .note-body { font-size: 14px; }

/* ─── NOTE 3 — Sticky Note (square, skills) ─── */
.note--3 {
  width: min(300px, 65vw);
  top: 380px; left: 6%;
  transform: rotate(2.5deg);
  z-index: 6;
  background: var(--mint);
  border: none;
  border-radius: 2px;
  box-shadow:
    1px 2px 0px rgba(58,50,38,0.04),
    3px 5px 10px rgba(58,50,38,0.08);
  padding: 28px 28px 38px;
  background-image: linear-gradient(to bottom right, var(--mint) 85%, rgba(0,0,0,0.04) 100%);
  clip-path: polygon(
    0% -4%, 100% -4%, 100% 93%,
    95% 95%, 90% 92%, 85% 95%, 80% 93%,
    74% 96%, 68% 93%, 62% 95%, 56% 92%,
    50% 96%, 44% 93%, 38% 95%, 32% 92%,
    26% 96%, 20% 93%, 14% 95%, 8% 92%,
    4% 95%, 0% 93%
  );
}
.note--3 .checklist {
  list-style: none;
  padding: 0;
}
.note--3 .checklist li {
  font-family: 'Special Elite', monospace;
  font-size: 15px;
  color: var(--ink);
  padding: 4px 0;
  line-height: 1.6;
}
.note--3 .checklist li::before {
  content: '✔ ';
  color: #5AAF78;
}

/* ─── NOTE 4 — Testimonial (torn paper) ─── */
.note--4 {
  width: min(440px, 80vw);
  top: 420px; right: 3%;
  transform: rotate(-2deg);
  z-index: 3;
  background: var(--coral-light);
  clip-path: polygon(
    0% -4%, 100% -4%, 100% 94%,
    96% 95%, 92% 93%, 88% 96%, 84% 94%,
    78% 97%, 72% 94%, 66% 96%, 60% 93%,
    54% 97%, 48% 94%, 42% 96%, 36% 93%,
    30% 97%, 24% 94%, 18% 96%, 12% 93%,
    6% 95%, 0% 94%
  );
  padding-bottom: 44px;
}
.note--4 .quote-mark {
  font-family: 'Fredoka', sans-serif;
  font-size: 60px;
  color: rgba(58,50,38,0.12);
  line-height: 0.7;
  margin-bottom: 6px;
  position: relative; z-index: 1;
}
.note--4 .attribution {
  font-family: 'Fredoka', sans-serif;
  font-weight: 600;
  font-size: 13px;
  color: var(--ink);
  margin-top: 10px;
  letter-spacing: 0.5px;
  position: relative; z-index: 1;
}

/* ─── NOTE 5 — Contact / CTA ─── */
.note--5 {
  width: min(340px, 72vw);
  top: 1120px; left: 28%;
  transform: rotate(-4.5deg);
  z-index: 7;
  background: var(--butter);
}
.note--5 .cta-doodle {
  font-size: 42px;
  margin-bottom: 10px;
  position: relative; z-index: 1;
}
.note--5 .cta-link {
  display: inline-block;
  font-family: 'Fredoka', sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: var(--ink);
  background: var(--pastel-pink);
  padding: 10px 26px;
  border: 2px solid var(--ink);
  border-radius: 20px;
  text-decoration: none;
  margin-top: 12px;
  cursor: pointer;
  transition: 0s !important;
  position: relative; z-index: 1;
}
.note--5 .cta-link:hover { background: #fff; }

/* ─── NOTE 6 — Second Project (Polaroid style) ─── */
.note--6 {
  width: min(340px, 72vw);
  top: 660px; right: 4%;
  transform: rotate(3deg);
  z-index: 4;
  background: #fff;
  padding: 18px 18px 28px;
  border: 2px solid rgba(58,50,38,0.08);
  box-shadow:
    2px 3px 0px rgba(58,50,38,0.04),
    4px 6px 14px rgba(58,50,38,0.08);
}
.note--6 .polaroid-frame img {
  filter: sepia(0.15) saturate(0.9);
}
.note--6 .polaroid-caption .note-title { font-size: 20px; margin-bottom: 8px; }
.note--6 .polaroid-caption .note-body { font-size: 14px; }

/* ─── NOTE 7 — Currently Into (small, peach) ─── */
.note--7 {
  width: min(260px, 65vw);
  top: 700px; left: 3%;
  transform: rotate(-2.5deg);
  z-index: 5;
  background: var(--peach);
  border: none;
  padding: 26px 24px 22px;
}
.note--7 .fun-list {
  list-style: none;
  padding: 0;
}
.note--7 .fun-list li {
  font-family: 'Special Elite', monospace;
  font-size: 14.5px;
  color: var(--ink);
  padding: 3px 0;
  line-height: 1.6;
}
.note--7 .fun-list li::before {
  content: '♡ ';
  color: #E8889A;
}

/* ─── NOTE 8 — How I Work (wide, lavender) ─── */
.note--8 {
  width: min(420px, 80vw);
  top: 920px; left: 8%;
  transform: rotate(1.5deg);
  z-index: 3;
  background: var(--lavender);
}
.note--8 .process-steps {
  list-style: none;
  padding: 0;
  counter-reset: step;
}
.note--8 .process-steps li {
  font-family: 'Special Elite', monospace;
  font-size: 15px;
  color: var(--ink);
  padding: 6px 0 6px 36px;
  line-height: 1.6;
  position: relative;
  counter-increment: step;
}
.note--8 .process-steps li::before {
  content: counter(step);
  position: absolute;
  left: 0;
  top: 5px;
  width: 24px;
  height: 24px;
  background: var(--pastel-pink);
  border-radius: 50%;
  font-family: 'Fredoka', sans-serif;
  font-weight: 700;
  font-size: 13px;
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ─── NOTE 9 — Links (small, coral) ─── */
.note--9 {
  width: min(240px, 60vw);
  top: 500px; left: 34%;
  transform: rotate(3.5deg);
  z-index: 5;
  background: var(--coral-light);
  border: none;
  padding: 26px 24px 34px;
  clip-path: polygon(
    0% -4%, 100% -4%, 100% 95%,
    90% 97%, 80% 94%, 70% 97%,
    60% 94%, 50% 97%, 40% 94%,
    30% 97%, 20% 94%, 10% 97%, 0% 95%
  );
}
.note--9 .link-list {
  list-style: none;
  padding: 0;
}
.note--9 .link-list li {
  padding: 5px 0;
}
.note--9 .link-list a {
  font-family: 'Special Elite', monospace;
  font-size: 15px;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 2px dashed rgba(58,50,38,0.2);
  padding-bottom: 2px;
  position: relative;
  z-index: 1;
}
.note--9 .link-list a:hover {
  border-bottom-color: #E8889A;
  color: #E8889A;
}
.note--9 .link-list a::before {
  content: '→ ';
  color: #E8889A;
}

/* ─── DOODLE ACCENTS ─── */
.doodle {
  position: absolute;
  pointer-events: none;
  font-size: 28px;
  opacity: 0.3;
  z-index: 1;
}
.doodle--1 { top: 60px; left: 48%; font-size: 22px; transform: rotate(15deg); }
.doodle--2 { top: 340px; right: 42%; font-size: 18px; transform: rotate(-20deg); }
.doodle--3 { top: 620px; left: 42%; font-size: 24px; transform: rotate(10deg); }
.doodle--4 { top: 900px; right: 8%; font-size: 20px; transform: rotate(-12deg); }
.doodle--5 { top: 180px; left: 2%; font-size: 16px; transform: rotate(25deg); }
.doodle--6 { top: 1080px; left: 6%; font-size: 18px; transform: rotate(-8deg); }

/* ─── JIGGLE ─── */
@keyframes jiggle {
  0%   { transform: rotate(0deg); }
  15%  { transform: rotate(-5deg); }
  30%  { transform: rotate(5deg); }
  45%  { transform: rotate(-5deg); }
  60%  { transform: rotate(5deg); }
  75%  { transform: rotate(-2deg); }
  100% { transform: rotate(0deg); }
}
.note.jiggling {
  animation: jiggle 0.35s ease-in-out;
  z-index: 100 !important;
}

/* ─── ENTRANCE SCATTER ─── */
@keyframes scatterIn1 {
  from { opacity: 0; transform: translate(-80px, -50px) rotate(-14deg); }
  to   { opacity: 1; transform: translate(0, 0) rotate(-3deg); }
}
@keyframes scatterIn2 {
  from { opacity: 0; transform: translate(90px, -60px) rotate(16deg); }
  to   { opacity: 1; transform: translate(0, 0) rotate(4deg); }
}
@keyframes scatterIn3 {
  from { opacity: 0; transform: translate(-60px, 70px) rotate(-10deg); }
  to   { opacity: 1; transform: translate(0, 0) rotate(2.5deg); }
}
@keyframes scatterIn4 {
  from { opacity: 0; transform: translate(70px, 50px) rotate(12deg); }
  to   { opacity: 1; transform: translate(0, 0) rotate(-2deg); }
}
@keyframes scatterIn5 {
  from { opacity: 0; transform: translate(-40px, 80px) rotate(-18deg); }
  to   { opacity: 1; transform: translate(0, 0) rotate(-4.5deg); }
}
@keyframes scatterIn6 {
  from { opacity: 0; transform: translate(80px, 40px) rotate(14deg); }
  to   { opacity: 1; transform: translate(0, 0) rotate(3deg); }
}
@keyframes scatterIn7 {
  from { opacity: 0; transform: translate(-70px, -40px) rotate(-12deg); }
  to   { opacity: 1; transform: translate(0, 0) rotate(-2.5deg); }
}
@keyframes scatterIn8 {
  from { opacity: 0; transform: translate(50px, 60px) rotate(10deg); }
  to   { opacity: 1; transform: translate(0, 0) rotate(1.5deg); }
}
@keyframes scatterIn9 {
  from { opacity: 0; transform: translate(60px, -50px) rotate(16deg); }
  to   { opacity: 1; transform: translate(0, 0) rotate(3.5deg); }
}

.note--1 { animation: scatterIn1 0.5s cubic-bezier(.22,.68,.36,1.0) 0.1s forwards; }
.note--2 { animation: scatterIn2 0.5s cubic-bezier(.22,.68,.36,1.0) 0.22s forwards; }
.note--3 { animation: scatterIn3 0.5s cubic-bezier(.22,.68,.36,1.0) 0.34s forwards; }
.note--4 { animation: scatterIn4 0.5s cubic-bezier(.22,.68,.36,1.0) 0.46s forwards; }
.note--5 { animation: scatterIn5 0.5s cubic-bezier(.22,.68,.36,1.0) 0.58s forwards; }
.note--6 { animation: scatterIn6 0.5s cubic-bezier(.22,.68,.36,1.0) 0.70s forwards; }
.note--7 { animation: scatterIn7 0.5s cubic-bezier(.22,.68,.36,1.0) 0.82s forwards; }
.note--8 { animation: scatterIn8 0.5s cubic-bezier(.22,.68,.36,1.0) 0.94s forwards; }
.note--9 { animation: scatterIn9 0.5s cubic-bezier(.22,.68,.36,1.0) 1.06s forwards; }

/* ─── FOOTER ─── */
.site-footer {
  text-align: center;
  padding: 80px 20px 40px;
  position: relative;
  z-index: 10;
  margin-top: 60px;
}
.footer-line {
  width: 60px; height: 3px;
  background: var(--pastel-pink);
  border: none;
  margin: 0 auto 18px;
  border-radius: 2px;
}
.site-footer p {
  font-family: 'Special Elite', monospace;
  font-size: 13px;
  color: var(--ink-light);
  letter-spacing: 0.5px;
}
.site-footer .footer-heart { color: #E8889A; font-size: 15px; }

/* ─── RESPONSIVE: 2-col overlap grid ─── */
@media (max-width: 820px) {
  .board {
    min-height: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    padding: 10px;
    max-width: 520px;
  }
  .note {
    position: relative !important;
    top: auto !important; left: auto !important; right: auto !important;
    width: 100% !important;
    max-width: none;
  }
  .note--1 {
    grid-column: 1 / -1;
    transform: rotate(-1.5deg);
    margin-bottom: -18px;
    z-index: 5;
  }
  .note--2 {
    transform: rotate(2.5deg);
    margin-top: -10px;
    margin-right: -20px;
    z-index: 4;
  }
  .note--3 {
    transform: rotate(-1.5deg);
    margin-top: -14px;
    margin-left: -16px;
    z-index: 6;
    aspect-ratio: auto !important;
  }
  .note--4 {
    grid-column: 1 / -1;
    transform: rotate(1deg);
    margin-top: -12px;
    z-index: 3;
  }
  .note--5 {
    grid-column: 1 / -1;
    max-width: 300px;
    margin: -8px auto 0;
    transform: rotate(-2deg);
    z-index: 7;
  }
  .note--6 {
    transform: rotate(2deg);
    margin-top: -10px;
    margin-right: -18px;
    z-index: 4;
  }
  .note--7 {
    transform: rotate(-2deg);
    margin-top: -12px;
    margin-left: -14px;
    z-index: 5;
  }
  .note--8 {
    grid-column: 1 / -1;
    transform: rotate(1deg);
    margin-top: -10px;
    z-index: 3;
  }
  .note--9 {
    transform: rotate(2.5deg);
    margin-top: -10px;
    z-index: 5;
  }
  .note--1 { animation-name: scatterIn1; }
  .note--2 { animation-name: scatterIn2; }
  .note--3 { animation-name: scatterIn3; }
  .note--4 { animation-name: scatterIn4; }
  .note--5 { animation-name: scatterIn5; }
  .note--6 { animation-name: scatterIn6; }
  .note--7 { animation-name: scatterIn7; }
  .note--8 { animation-name: scatterIn8; }
  .note--9 { animation-name: scatterIn9; }
  .doodle { display: none; }
  .site-footer { margin-top: 40px; }
}

@media (max-width: 640px) {
  .board {
    grid-template-columns: 1fr;
    max-width: 360px;
  }
  .note--2, .note--3, .note--6, .note--7, .note--9 {
    margin-left: 0; margin-right: 0;
  }
}