 * {
     margin: 0;
     padding: 0;
     box-sizing: border-box;
 }

 body {
     font-family: 'Quicksand', sans-serif;
     background: linear-gradient(135deg, #fef9f3 0%, #fdf4e7 100%);
     overflow-x: hidden;
     overflow-y: hidden;
 }

 .trail {
     position: fixed;
     pointer-events: none;
     font-size: 18px;
     opacity: 0;
     transform: scale(0);
     transition: opacity 0.3s ease, transform 0.3s ease;
 }

 /* Hero Section */
 .hero {
     /* background: linear-gradient(135deg, rgb(251, 200, 212), #ff6be4 50%, #A8E6CF 100%); */
     background: linear-gradient(135deg, rgb(251, 200, 212), #9da0f6 50%, #A8E6CF 100%);
     color: white;
     padding: 100px 20px;
     text-align: center;
     position: relative;
     overflow: hidden;
 }

 /* Hero Section */
 .hero::before {
     content: "★ ✿ ★ ✿ ★ ✿ ★ ✿ ★ ✿ ★ ✿ ★ ✿ ★";
     position: absolute;
     top: 20px;
     width: 100%;
     font-size: 2em;
     opacity: 0.3;
 }

 .hero h1 {
     font-size: 3em;
     margin-bottom: 20px;
     text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3);
 }

 .hero p {
     font-size: 1.8em;
     max-width: 700px;
     margin: 0 auto;
     text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
 }

 /* EVENT SECTION */
 .section-1 {
     width: 100%;
     background-color: rgb(154, 68, 131);
     color: pink;
     align-items: center;
     justify-items: center;
     text-align: center;
     padding: 40px 6%;
 }

 .section-2 {
     width: 100%;
     background-color: rgb(147, 111, 136);
     color: #58f514;
     align-items: center;
     justify-items: center;
     text-align: center;
     padding: 40px 6%;
 }

 .section-1 h3,
 .section-2 h3 {
     font-size: 2.5rem;
 }

 .section-1 p {
     font-size: 1.2rem;
     color: white;
 }

 .container {
     background-color: white;
     border: 5px solid #e4de32;
     border-radius: 15px;
     padding: 15px;
     margin: 20px;
     transition: all 0.4s ease;
 }

 .image-collage {
     display: grid;
     grid-template-columns: repeat(4, 1fr);
     gap: 15px;
 }

 .collage-item {
     height: 250px;
     width: 190px;
     border-radius: 15px;
     border: 4px solid rgb(215, 93, 146);
     box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
     overflow: hidden;
     object-fit: cover;
 }

 /* ZOO SECTION */
 .section-zoo {
     width: 100%;
     background-color: #b1e9b1;
     color: #2F855A;
     align-items: center;
     justify-items: center;
     text-align: center;
     padding: 40px 6%;
 }

 .section-zoo h3 {
     font-size: 2.5rem;
 }

 .section-zoo p {
     font-size: 1.2rem;
     color: 4A5568;
 }

 .section-zoo .container {
     background-color: #FFFFFF;
     border: 5px solid #e4de32;
     border-radius: 15px;
     padding: 15px;
     margin: 20px;
     transition: all 0.4s ease;
 }

 .section-zoo .image-collage {
     display: grid;
     grid-template-columns: repeat(4, 1fr);
     gap: 15px;
 }

 .section-zoo .collage-item {
     height: 250px;
     width: 190px;
     border-radius: 15px;
     border: 4px solid #68D391;
     box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
     overflow: hidden;
     object-fit: cover;
 }

 .decor {
     display: inline-block;
     font-size: inherit;
     animation: pulse 2s ease-in-out infinite;
     transform-origin: center;
 }

 @keyframes pulse {
     0% {
         transform: scale(1);
     }

     50% {
         transform: scale(1.3);
     }

     100% {
         transform: scale(1);
     }
 }

 @media (max-width: 900px) {

     .image-collage,
     .section-zoo .image-collage {
         grid-template-columns: repeat(3, 1fr);
     }

     .hero h1 {
         font-size: 2.7em;
     }

     .hero p {
         font-size: 1.5em;
     }

     .section-1 h3,
     .section-2 h3,
     .section-zoo h3 {
         font-size: 2rem;
     }
 }

 @media (max-width: 650px) {

     .image-collage,
     .section-zoo .image-collage {
         grid-template-columns: repeat(2, 1fr);
     }

     .hero h1 {
         font-size: 2.4em;
     }

     .section-1 h3,
     .section-2 h3,
     .section-zoo h3 {
         font-size: 1.7rem;
     }

     .section-1 p,
     .section-2 p,
     .section-zoo p {
         font-size: 1rem;
     }
 }

 @media (max-width: 480px) {

     .image-collage,
     .section-zoo .image-collage {
         grid-template-columns: repeat(1, 1fr);
     }

     .hero h1 {
         font-size: 2em;
     }

     .section-1 h3,
     .section-2 h3,
     .section-zoo h3 {
         font-size: 1.4rem;
     }
 }

 /* ================= FOOTER ================= */
 .kid-footer {
     position: relative;
     background: linear-gradient(135deg, #bde0fe, #caffbf);
     padding: 120px 8% 40px;
     overflow: hidden;
 }

 .footer-cloud {
     position: absolute;
     top: -60px;
     left: 0;
     width: 100%;
     height: 120px;
     background: #fff;
     border-bottom-left-radius: 100% 60%;
     border-bottom-right-radius: 100% 60%;
 }

 .footer-container {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
     gap: 50px;
     position: relative;
     z-index: 2;
 }

 .footer-box h3 {
     font-size: 26px;
     margin-bottom: 18px;
     font-family: 'Fredoka', sans-serif;
     color: #5a4a7d;
 }

 .footer-box h4 {
     font-size: 20px;
     margin-bottom: 18px;
     font-family: 'Fredoka', sans-serif;
     color: #5a4a7d;
 }

 .footer-box p,
 .footer-box a {
     font-size: 16px;
     line-height: 1.7;
     color: #333;
     text-decoration: none;
     display: block;
     margin-bottom: 10px;
 }

 .footer-box a:hover {
     color: #ff6b6b;
 }

 .footer-social {
     display: flex;
     gap: 12px;
     margin-top: 15px;
 }

 .footer-social a {
     width: 42px;
     height: 42px;
     background: #fff;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 20px;
     box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
     transition: transform 0.3s ease;
 }

 .footer-social a:hover {
     transform: scale(1.2) rotate(10deg);
 }

 .footer-animals {
     position: absolute;
     bottom: -10px;
     left: 50%;
     transform: translateX(-50%);
     display: flex;
     gap: 30px;
     z-index: 3;
 }

 .animal {
     font-size: 60px;
     transform: translateY(40%);
     transition: transform 0.4s ease;
     cursor: pointer;
     animation: animalBounce 4s ease-in-out infinite;
 }

 .animal:hover {
     transform: translateY(0);
 }

 .animal:nth-child(2) {
     animation-delay: 1s;
 }

 .animal:nth-child(3) {
     animation-delay: 2s;
 }

 .animal:nth-child(4) {
     animation-delay: 3s;
 }

 @keyframes animalBounce {

     0%,
     100% {
         transform: translateY(40%);
     }

     50% {
         transform: translateY(30%);
     }
 }

 .footer-bottom {
     margin-top: 60px;
     text-align: center;
     padding-top: 20px;
     border-top: 2px dashed rgba(0, 0, 0, 0.15);
 }

 .footer-bottom p {
     font-size: 14px;
     color: #555;
 }

 .creator {
     margin-bottom: 4vh;
 }

 /* Back to Top */
 .back-to-top {
     position: fixed;
     bottom: 35px;
     right: 35px;
     width: 60px;
     height: 60px;
     background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
     color: white;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 26px;
     cursor: pointer;
     box-shadow: 0 8px 25px rgba(102, 126, 234, 0.5);
     opacity: 0;
     transition: all 0.4s ease;
     z-index: 1000;
 }

 .back-to-top.visible {
     opacity: 1;
 }

 .back-to-top:hover {
     transform: translateY(-8px) scale(1.1);
     box-shadow: 0 12px 35px rgba(102, 126, 234, 0.7);
 }