
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Soft pink background */
body {
    font-family: 'Baloo 2', cursive;
    background: #ffeef5;               /* base soft pink */
    color: #c2185b;                     /* darker pink for text */
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

/* --------------------------------------------------------------
   Glitter overlay (subtle animation)
   -------------------------------------------------------------- */
body::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: url('data:image/svg+xml,\
      <svg xmlns="http://www.w3.org/2000/svg" width="200" height="200">\
        <circle cx="100" cy="100" r="2" fill="%23ffb3c1"/>\
      </svg>') repeat;
    opacity: 0.25;
    animation: glitter 8s linear infinite;
}

@keyframes glitter {
    0%   { transform: translate(0, 0); }
    50%  { transform: translate(-20px, -20px); }
    100% { transform: translate(0, 0); }
}

/* --------------------------------------------------------------
   Header – big rounded title
   -------------------------------------------------------------- */
header {
    text-align: center;
    padding: 2rem 1rem;
}
header h1 {
    font-size: 2.8rem;
    color: #c2185b;
    text-shadow: 2px 2px 4px rgba(255,255,255,0.6);
}

/* --------------------------------------------------------------
   Gallery – three images side‑by‑side, responsive
   -------------------------------------------------------------- */
.gallery {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    padding: 1rem;
}
.gallery img {
    max-width: 30%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

/* --------------------------------------------------------------
   Book link – cute button‑style anchor
   -------------------------------------------------------------- */
.book {
    text-align: center;
    margin: 2rem 0;
}
.book a {
    display: inline-block;
    background: #f48fb1;          /* lighter pink button */
    color: #880e4f;               /* dark pink text */
    padding: 0.8rem 1.5rem;
    border-radius: 24px;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.3s, transform 0.2s;
}
.book a:hover {
    background: #ec407a;
    transform: translateY(-2px);
}

/* --------------------------------------------------------------
   Footer
   -------------------------------------------------------------- */
footer {
    text-align: center;
    padding: 1rem;
    font-size: 0.9rem;
    color: #7b1fa2;
}