/* ── Background effect layer ── */
#bg-effect {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

#cursor-glow {
  position: fixed;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 200, 220, 0.25), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: -1;
  transition: transform 0.1s ease;
}

/* ── Main page ── */
body {
  background-color: transparent;
  color: #3a3a3a;
  font-family: 'Comfortaa', sans-serif;
  font-weight: 300;
  max-width: 650px;
  margin: 120px auto;
  padding: 0 20px;
  line-height: 1.8;
  font-size: 17px;
  letter-spacing: 0.3px;
}

/* ── Content container ── */
.page-wrap {
  position: relative;
  z-index: 1;
  background: rgba(244, 241, 234, 0.85);
  backdrop-filter: blur(6px);
  padding: 20px;
  border-radius: 6px;
}

/* ── Headings ── */
h1, h2, h3 {
  font-weight: 400;
  margin-bottom: 30px;
  letter-spacing: 0.5px;
}

/* ── Links ── */
a {
  color: #6a7f7f;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: all 0.3s ease;
}

a:hover {
  border-bottom: 1px solid #6a7f7f;
}

/* ── Navigation ── */
nav {
  margin-bottom: 60px;
  font-size: 15px;
  letter-spacing: 1px;
}

/* ── Footer ── */
footer {
  margin-top: 100px;
  font-size: 14px;
  opacity: 0.6;
}

/* ── Optional: divider styling ── */
.divider {
  border: none;
  border-top: 1px solid rgba(0,0,0,0.1);
  margin: 40px 0;
}