@font-face {
  font-family: "BlueVinyl";
  src: url("fonts/Fontspring-DEMO-blue_vinyl_regular_ps_ot.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #fff;
  --pink-light: #ffe4f0;
  --pink: #ff3d7f;
  --pink-dark: #c2185b;
  --muted: #555;
  --border: #e5e5e5;
  --ink: #111;
}

* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  background: var(--bg);
  color: var(--ink);
}

/* HEADER */
header {
  border-bottom: 1px solid var(--border);
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 100;
}
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1000px;
  margin: auto;
  padding: 1rem;
}
.brand {
  font-family: "BlueVinyl", cursive; /* Ensure font-family matches @font-face */
  font-size: 2.2rem;
  color: var(--pink);
  letter-spacing: 1px;
  line-height: 1;
  white-space: nowrap;
}
.nav-right {
  display: flex;
  align-items: center;
}
.plus-badge {
  display: inline-grid;
  place-items: center;
  width: 36px; height: 36px;
  border: 2px solid var(--pink);
  border-radius: 8px;
  color: var(--pink);
  text-decoration: none;
  font-weight: 700;
  font-size: 1.2rem;
  line-height: 1;
  transition: transform .15s ease;
  user-select: none;
}
.plus-badge:hover { transform: translateY(-1px); }

/* PROFILE */
.profile {
  max-width: 1000px;
  margin: 2rem auto;
  padding: 0 1rem;
  display: flex;
  gap: 2rem;
  align-items: center;
}
.profile img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  border: 3px solid var(--pink);
  object-fit: cover;
}
.profile-info h1 {
  margin: 0;
  font-size: 2.2rem;
  color: var(--pink);
}
.profile-info p { color: var(--muted); }
.stats {
  display: flex; gap: 2rem; margin: 1rem 0; font-size: 1rem;
}
.stats div { text-align: center; }
.stats strong { display: block; font-size: 1.2rem; font-weight: 700; color: #000; }

/* HIGHLIGHTS — titles inside circles, pink shades, white inner + dark outer */
.story-highlights {
  display: flex; gap: 1rem; margin-top: 1rem; flex-wrap: wrap;
}
.highlight {
  background: none; border: 0; padding: 0;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; font: inherit; text-decoration: none;
}
.hl-thumb {
  width: 78px; height: 78px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  border: 3px solid #fff; /* inner white border */
  box-shadow: 0 0 0 2px var(--pink-dark), 0 6px 12px rgba(194,24,91,.15); /* dark ring + shadow */
  transition: transform .15s ease, box-shadow .15s ease;
  background: linear-gradient(135deg, #ffe6f2 0%, #ffc1de 100%);
  color: var(--pink-dark); font-weight: 700; font-size: .78rem; letter-spacing: .02em;
  text-align: center; padding: .5rem; user-select: none;
}
.highlight:hover .hl-thumb { transform: translateY(-2px); box-shadow: 0 0 0 2px var(--pink-dark), 0 10px 18px rgba(194,24,91,.22); }
.story-highlights .highlight:nth-child(1) .hl-thumb { background: linear-gradient(135deg, #ffe6f2 0%, #ffb6d2 100%); }
.story-highlights .highlight:nth-child(2) .hl-thumb { background: linear-gradient(135deg, #ffd1e6 0%, #ff9fc4 100%); }
.story-highlights .highlight:nth-child(3) .hl-thumb { background: linear-gradient(135deg, #ffcbe0 0%, #ff8fb8 100%); }
.story-highlights .highlight:nth-child(4) .hl-thumb { background: linear-gradient(135deg, #ffd9ea 0%, #ffaad0 100%); }
.story-highlights .highlight:nth-child(5) .hl-thumb { background: linear-gradient(135deg, #ffe2f0 0%, #ffbcd8 100%); }

/* GRID — six perfect-square static-image tiles */
.grid {
  max-width: 1000px;
  margin: 1.5rem auto 2.5rem;
  padding: 0 1rem;
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}
.tile {
  position: relative;
  border: 1px solid var(--border);
  border-radius: 0; /* square edges */
  overflow: hidden;
  aspect-ratio: 1 / 1; /* perfect square */
  background: #f8f8f8;
  transition: transform .18s ease;
}
.tile:hover { transform: translateY(-4px); }
.tile img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}

/* ABOUT + FOOTER */
#about {
  max-width: 1000px;
  margin: 2rem auto;
  padding: 0 1rem 1rem;
  color: var(--muted);
}
#about h2 { color: var(--pink-dark); }

footer {
  text-align: center;
  padding: 2rem 1rem;
  border-top: 1px solid var(--border);
  font-size: 0.9rem;
  color: var(--muted);
}

@media (max-width: 640px) {
  .profile { flex-direction: column; text-align: center; }
  .stats { justify-content: center; }
}