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

/* General body setup */
body {
  background: linear-gradient(135deg, #3a0057, #8b00c9);
  color: #fff;
  font-family: 'Quicksand', sans-serif;
  margin: 0;
  text-align: center;
  min-height: 100vh;
  display: flex;
  flex-direction: column;

  /* Paw cursor */
  cursor: url('paw.png'), auto;
}

/* Header styling */
header {
  padding: 20px;
  background: rgba(0, 0, 0, 0.4);
}

header h1 {
  font-family: 'Fredoka One', cursive;
  font-size: 2.5em;
  color: #ffb3ff;
  text-shadow: 0 0 8px #ff66ff, 0 0 15px #ff33cc;
}

.tagline {
  font-style: italic;
  color: #ffd6ff;
}

/* Navigation */
nav {
  margin-top: 10px;
}

nav a {
  color: #ff99ff;
  margin: 0 15px;
  text-decoration: none;
  font-weight: 600;
}

nav a:hover {
  text-shadow: 0 0 8px #ff99ff, 0 0 15px #ff66ff;
}

/* Banner image */
.banner {
  max-width: 80%;
  border: 3px solid #ffb3ff;
  border-radius: 15px;
  margin: 20px 0;
  box-shadow: 0 0 15px #ff99ff;
}

/* Intro section */
.intro h2 {
  font-family: 'Fredoka One', cursive;
  font-size: 2em;
  color: #ffe6ff;
  text-shadow: 0 0 6px #ff66ff;
}

.intro p {
  font-size: 1.1em;
  line-height: 1.6;
  color: #fceaff;
  margin: 0 auto;
  max-width: 600px;
}

/* Highlight section */
.highlight {
  background: rgba(255, 255, 255, 0.05);
  margin: 30px auto;
  padding: 20px;
  border-radius: 12px;
  max-width: 500px;
  box-shadow: 0 0 12px rgba(255, 153, 255, 0.5);
}

.highlight h3 {
  font-family: 'Fredoka One', cursive;
  color: #ffccff;
  text-shadow: 0 0 6px #ff66ff;
}

.highlight ul {
  list-style: none;
  padding: 0;
}

.highlight li {
  margin: 10px 0;
  font-size: 1.1em;
}

/* Footer */
footer {
  margin-top: auto;
  padding: 15px;
  font-size: 0.9em;
  color: #ffd6ff;
  background: rgba(0, 0, 0, 0.4);
}

/* ✨ Sparkle Paw Background ✨ */
.sparkles {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
  z-index: -1;
}

.sparkle {
  position: absolute;
  width: 24px;
  height: 24px;
  background: url('paw.png') no-repeat center center;
  background-size: contain;
  animation: sparkle 6s infinite;
  opacity: 0.9;
}

@keyframes sparkle {
  0% {
    transform: translateY(-10%) scale(0.5) rotate(0deg);
    opacity: 0;
  }
  20% {
    opacity: 1;
    transform: translateY(20vh) scale(1) rotate(45deg);
  }
  80% {
    opacity: 1;
    transform: translateY(80vh) scale(1.2) rotate(180deg);
  }
  100% {
    opacity: 0;
    transform: translateY(100vh) scale(0.5) rotate(360deg);
  }
}