/* ——— ESTILO RETRO KAWAII POMPOMPURIN + MACAROON ——— */

/* Fondo general con puntitos y stickers */
body {
  margin: 0;
  font-family: "Trebuchet MS", sans-serif;
  background-color: #ffeef5;
  background-image: 
    url("sticker1.png"),
    radial-gradient(#fff7c9 2px, transparent 2px);
  background-size: 130px, 20px 20px;
  background-repeat: repeat, repeat;
  color: #6b4a43;
}

/* Sticker grande flotando (Pompompurin) */
body::after {
  content: "";
  position: fixed;
  bottom: 20px;
  right: 15px;
  width: 200px;
  height: 200px;
  background-image: url("pompom.png");
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0.9;
  animation: flotando 5s ease-in-out infinite;
  pointer-events: none;
}

/* Sticker grande flotando (Macaroon) */
body::before {
  content: "";
  position: fixed;
  top: 10px;
  left: 10px;
  width: 150px;
  height: 150px;
  background-image: url("macaroon.png");
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0.85;
  animation: flotando 6s ease-in-out infinite;
  pointer-events: none;
}

/* Animación suave */
@keyframes flotando {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-6px); }
}

/* Encabezado con textura crema + borde retro */
header {
  background-color: #ffeb9c;
  border-bottom: 5px dotted #e7b7b7;
  text-align: center;
  padding: 25px 0 35px;
  box-shadow: inset 0 0 10px rgba(255, 187, 200, 0.7);
}

/* Título pastel cursivo */
header h1 {
  font-family: "Georgia", cursive;
  color: #d77c8f;
  font-size: 3rem;
  margin: 10px 0;
  text-shadow: 2px 2px #fff5e6;
}

/* Navegación como etiquetas cosidas */
nav a {
  display: inline-block;
  padding: 10px 20px;
  margin: 5px;
  font-size: 1.2rem;
  text-decoration: none;
  color: #9c5b4a;
  background-color: #ffe6f0;
  border: 3px dashed #f4b7c3;
  border-radius: 10px;
  box-shadow: 0 4px #ffcfda;
  transition: transform .1s;
}
nav a:hover {
  background-color: #fffdf6;
  color: #d4736d;
  transform: scale(1.06);
}

/* Secciones estilo recuadro de álbum */
section {
  position: relative;
  max-width: 900px;
  margin: 60px auto;
  padding: 35px 30px;
  background-color: #fffdf7;
  border: 4px dotted #ffd6e8;
  border-radius: 22px;
  box-shadow: 0 0 15px rgba(255, 218, 230, 0.9);
}

/* Sellito Macaroon en esquinita */
section::after {
  content: "";
  position: absolute;
  width: 80px;
  height: 80px;
  bottom: -20px;
  right: -20px;
  background-image: url("macaroon.png");
  background-size: contain;
  background-repeat: no-repeat;
  opacity: .85;
  transform: rotate(-5deg);
}

/* Títulos poéticos */
section h2 {
  text-align: center;
  font-family: "Georgia", cursive;
  color: #c96a77;
  font-size: 2rem;
  margin-bottom: 15px;
  text-shadow: 1px 1px #fff1e6;
}

/* Texto suave */
section p {
  text-align: center;
  font-size: 1.2rem;
  padding: 0 20px;
}

/* Reproductor decorado */
audio {
  display: block;
  margin: 20px auto 0;
  border: 4px dotted #ffdeb7;
  border-radius: 10px;
  background-color: #fffef8;
}

/* Pie de página */
footer {
  text-align: center;
  padding: 20px;
  margin-top: 50px;
  background-color: #fffadb;
  border-top: 4px dotted #f3b8c3;
  font-size: 1rem;
  color: #96605c;
  box-shadow: inset 0 0 10px rgba(255, 201, 215, 0.8);
}