/* Body = background + font */
body {
  background: linear-gradient(to bottom right, #fce4ec, #fff1f5); /* soft gradient */
  font-family: 'Fredoka One', sans-serif;
}


/* Main box */
.box {
  border: 2px solid #FFBFD5; /* soft pink border */
background: rgba(255, 255, 255, 0.9); /* slightly transparent */
  background-color: rgba(255, 255, 255, 0.9);
  width: 500px;          /* bigger width */
  padding: 30px;         /* more space inside for stickers/text */
  margin: 30px auto;     /* keeps it centered */
  text-align: center;
  border-radius: 15px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

/* Links */
a {
  color: #CC91CA;          /* pink links */
  text-decoration: none;    /* no underline */
}

a:hover {
  text-decoration: none;
  color: #E68EE1; /* brighter pink on hover */
  transform: scale(1.1);
  transition: 0.2s;
}


/* Cat sticker */
img {
  width: 200px;             /* sets image size */
  display: block;           /* makes it a block for centering */
  margin: 20px auto;        /* centers the image */
}
h1 {
  font-family: 'Bubblegum Sans', cursive;
  color: #9E6D9D;
}

p {
  font-family: 'Fredoka One', sans-serif;
  color: #333;
}
img:nth-of-type(2) {
  width: 100px;
  margin: 10px auto;
  display: block;
}

.banner img {
  width: 100%;       /* keeps it full width */
  max-width: 1000px; /* optional: stops it from getting too wide on huge screens */
  height: 200px;     /* limits the height so it’s not huge */
  object-fit: cover; /* crops nicely if image is bigger than the height */
  display: block;
  margin: 0 auto;
}


.section {
  background-color: rgba(255, 255, 255, 0.9);
  width: 500px;          /* same as main box */
  margin: 20px auto;     /* spacing between sections */
  padding: 20px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}
.stickers {
  display: flex;            /* places stickers in a row */
  flex-wrap: wrap;          /* wraps to next line if needed */
  justify-content: center;  /* centers stickers in the box */
  gap: 15px;                /* space between stickers */
  margin-top: 20px;         /* space above stickers */
}

.stickers img {
  width: 100px;             /* size of each sticker */
  height: 100px;            /* keeps them square */
  border-radius: 10px;      /* optional: rounded corners */
  box-shadow: 0 2px 5px rgba(0,0,0,0.1); /* soft shadow */
}
.stickers img:hover {
  transform: scale(1.1);      /* grows slightly */
  transition: 0.2s;            /* smooth animation */
  cursor: pointer;      

}
.float-sticker {
  position: absolute;  /* allows free placement */
  width: 80px;         /* size of the sticker */
  height: 80px;
  z-index: 1;          /* keeps it below or above boxes as needed */
}

.top-left {
  top: 20px;
  left: 20px;
}

.bottom-right {
  bottom: 20px;
  right: 20px;
}
.topnav {
  text-align: center;
  margin-bottom: 15px;
}

.topnav a {
  color: #CC91CA;
  text-decoration: none;
  margin: 0 8px;
}

.topnav a:hover {
  color: #E68EE1;
  transform: scale(1.1);
  transition: 0.2s;
  cursor: pointer;
}
/* Floating background stickers */
.float-bg {
  position: fixed;   /* sticks relative to viewport */
  width: 80px;
  height: 80px;
  z-index: 0;        /* behind main boxes */
  pointer-events: none; /* click through */
}

/* Floating background stickers */
.float-bg {
  position: fixed;   /* sticks relative to viewport */
  width: 80px;
  height: 80px;
  z-index: 0;        /* behind main boxes */
  pointer-events: none; /* click through */
}

/* Animations for each sticker */
@keyframes float1 {
  0% { top: 10%; left: 5%; }
  50% { top: 30%; left: 15%; }
  100% { top: 10%; left: 5%; }
}

@keyframes float2 {
  0% { top: 70%; left: 80%; }
  50% { top: 50%; left: 75%; }
  100% { top: 70%; left: 80%; }
}

@keyframes float3 {
  0% { top: 40%; left: 14%; }
  50% { top: 60%; left: 20%; }
  100% { top: 40%; left: 18%; }
}

.float1 { animation: float1 8s infinite ease-in-out; }
.float2 { animation: float2 10s infinite ease-in-out; }
.float3 { animation: float3 12s infinite ease-in-out; }

.stickers img, .box img, .section img {
  transition: transform 0.3s;
}

.stickers img:hover, .box img:hover, .section img:hover {
  transform: scale(1.2) rotate(5deg);  /* grows + slight rotation */
  cursor: pointer;
}
.mini-box ul {
  list-style: none;
  padding-left: 0;
}

.mini-box li {
  margin: 5px 0;
  font-size: 16px;
}
.mini-box {
  background-color: rgba(255, 255, 255, 0.95);
  border: 3px dotted #ff99cc;
  padding: 15px;
  margin: 15px auto;
  width: 400px;
  border-radius: 12px;
  text-align: left;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

