/* Fonts */
@import url('https://fonts.googleapis.com/css2?family=Fredoka:wght@400;600&family=Quicksand:wght@400;600&display=swap');

body {

  cursor: url('pusheen.png'), auto;
}

a:hover {
  cursor: url('leaf.png'), pointer;

 background: #f8e9d2 url('paper-texture.png');
  background-size: cover;
  background-attachment: fixed;
  font-family: 'Quicksand', sans-serif;
  color: #5a3b28;
  margin: 0;
  padding: 20px;
}

.page {
  max-width: 1100px;
  margin: auto;
  background: rgba(253, 250, 245, 0.95);
  border: 8px solid #c08a5a;
  border-radius: 12px;
  padding: 20px 30px 40px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
  position: relative;
}

.title {
  font-family: 'Fredoka', sans-serif;
  font-size: 2.8em;
  text-align: center;
  color: #d98c5f;
  margin-bottom: 25px;
  text-shadow: 2px 2px #fdf2df;
}

/* Journal wrapper with subtle background */
.journal-wrapper {
  position: relative;
  background: #fffef9 url('page-texture.png');
  background-size: 300px;
  border-radius: 12px;
  box-shadow: inset 0 0 15px rgba(0,0,0,0.1);
  padding: 30px;
  overflow: hidden;
}

/* Spine down the middle */
.spine {
  position: absolute;
  top: 20px;
  bottom: 20px;
  left: 50%;
  width: 8px;
  background: linear-gradient(to bottom, #b07b53, #915c36);
  transform: translateX(-50%);
  box-shadow: inset -1px 0 2px rgba(0,0,0,0.3), inset 1px 0 2px rgba(255,255,255,0.4);
  z-index: 1;
  border-radius: 2px;
}

/* Rings */
.rings {
  position: absolute;
  top: 60px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  gap: 70px;
  z-index: 2;
}
.rings span {
  width: 26px;
  height: 26px;
  border: 3px solid #8b5a3c;
  border-radius: 50%;
  background: #fdfaf5;
  box-shadow: 1px 2px 3px rgba(0,0,0,0.2);
}

/* Layout for pages */
.journal {
  display: flex;
  gap: 40px;
  position: relative;
  z-index: 0;
}

.page-left, .page-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 20px;
}

/* Scrapbook-style boxes */
.box {
  background: #fff8ec;
  border: 3px solid #d2a676;
  border-radius: 10px;
  padding: 15px;
  box-shadow: 3px 3px 0 #c08a5a;
  position: relative;
}

.box h2 {
  margin-top: 0;
  font-family: 'Fredoka', sans-serif;
  font-size: 1.3em;
  color: #a0522d;
}

/* Background variations */
.welcome { background: #ffe9c7; }
.updates { background: #fff3da; }
.chat { background: #ffe6d2; }
.about { background: #e9d7c7; }
.commission { background: #fcd5a5; text-align: center; font-size: 1.2em; }
.websummary { background: #f8ecd7; }
.playlist { background: #f7dfc8; }
.map { background: #f3d6b5; }

a {
  color: #b85c38;
  text-decoration: none;
  font-weight: 600;
}
a:hover { text-decoration: underline; }

/* --- Cute Scrapbook Effects --- */
.taped::before, .taped::after {
  content: "";
  position: absolute;
  width: 60px;
  height: 18px;
  background: rgba(255, 221, 170, 0.7);
  top: -12px;
  transform: rotate(-6deg);
}
.taped::after {
  right: 20px;
  transform: rotate(6deg);
}
.sticky { background: #fffcc7; transform: rotate(-2deg); }
.pinned::before {
  content: "📌";
  position: absolute;
  top: -14px;
  left: 10px;
  font-size: 1.5em;
}
.sticker { border-radius: 50%; border: 3px dashed #d98c5f; }
.heart::after {
  content: "💖";
  font-size: 2em;
  position: absolute;
  bottom: -12px;
  right: -12px;
}

/* Doodles */
.doodle {
  position: absolute;
  width: 70px;
  opacity: 0.85;
  pointer-events: none;
}
.flower { bottom: 15px; left: -35px; }
.cat { top: 30px; right: -45px; }

/* Decorative corners */
.corner {
  position: absolute;
  width: 90px;
  opacity: 0.9;
  pointer-events: none;
}
.top-left { top: 0; left: 0; }
.top-right { top: 0; right: 0; transform: scaleX(-1); }
.bottom-left { bottom: 0; left: 0; transform: scaleY(-1); }
.bottom-right { bottom: 0; right: 0; transform: scale(-1,-1); }
