/* Reset */
html, body {
  height: 100%;
  margin: 0;
  padding: 0;
}
@font-face {
  font-family: 'StrawberryShortcake';
  src: url('/strawberry-shortcake.eot');
  src: url('/strawberry-shortcake.eot?#iefix') format('embedded-opentype'),
       local('StrawberryShortcake'),
       local('StrawberryShortcake-Regular'),
       url('/strawberry-shortcake.woff2') format('woff2'),
       url('/strawberry-shortcake.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}

/* Body: pink gradient, sparkles, strawberry cursor */
body {
  background: linear-gradient(135deg, #ffdde1 0%, #ee9ca7 100%);
  color: #5a3b3b;
  font-family: "Kristi", "Comic Sans MS", "Chalkboard SE", cursive;
  line-height: 1.6;
  padding: 20px;
  cursor: url("/strawberry.png") 16 16, pointer;
  overflow-x: hidden;
  position: relative;
}

/* Sparkles overlay */
body::after {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  background: radial-gradient(circle, rgba(255,255,255,0.3) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.3;
}

/* Headings: bouncy, strawberry red, glowing, fantasy font */
h1, h2, h3 {
  color: #d62839;
  text-align: center;
  text-shadow: 2px 2px 5px rgba(255, 200, 200, 0.8), 0 0 10px rgba(255, 182, 193, 0.6);
  font-family: "StrawberryShortcake", cursive, sans-serif;
  letter-spacing: 1px;
  transition: 0.3s;
}
h1:hover, h2:hover, h3:hover {
  transform: scale(1.05) rotate(-1deg);
  text-shadow: 2px 2px 8px rgba(255, 150, 170, 0.9), 0 0 15px rgba(255, 200, 220, 0.7);
}

/* Paragraphs: pastel bubble boxes with hover */
p {
  max-width: 800px;
  margin: 1em auto;
  background-color: rgba(255, 255, 255, 0.7);
  padding: 12px 18px;
  border-radius: 15px;
  box-shadow: 2px 2px 6px rgba(200, 150, 150, 0.3);
  transition: 0.3s;
}
p:hover {
  box-shadow: 0 0 12px rgba(255, 150, 170, 0.6);
  transform: scale(1.02);
}

/* Lists: cute strawberry bullets */
ul, ol {
  margin: 1em auto;
  padding-left: 1.5em;
  max-width: 800px;
  list-style: none;
}
li {
  margin: 0.5em 0;
  padding-left: 1.8em;
  position: relative;
}
li::before {
  content: "🍓";
  position: absolute;
  left: 0;
}

/* Links: fun hover effect, strawberry shortcake colors */
a {
  color: #ff5c8a;
  text-decoration: none;
  border-bottom: 2px dotted #ff85a1;
  transition: 0.3s;
}
a:hover {
  color: #d62839;
  border-bottom-color: #d62839;
  text-shadow: 1px 1px 4px rgba(255, 200, 200, 0.7);
}

/* Images: rounded, playful shadow, hover bounce */
img {
  border-radius: 15px;
  box-shadow: 4px 4px 12px rgba(255, 150, 170, 0.4);
  transition: 0.3s;
}
img:hover {
  transform: scale(1.03) rotate(-1deg);
  box-shadow: 6px 6px 18px rgba(255, 150, 170, 0.6);
}

/* Optional subtle animations for early internet vibes */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}
h1, h2, h3, li::before {
  animation: float 3s ease-in-out infinite;
}
