  * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
  }

  body {
      font-family: 'Comic Sans MS', 'Chalkboard SE', 'Arial Rounded MT Bold', sans-serif;
      line-height: 1.8;
      color: #333;
      background: #fff9e6;
      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;
}


  /* Navigation Bar Placeholder */
  .navbar-placeholder {
      background: linear-gradient(135deg, #FF6B9D 0%, #FFA07A 100%);
      padding: 20px;
      text-align: center;
      color: white;
      font-size: 14px;
      letter-spacing: 2px;
      font-weight: bold;
  }

  /* Hero Section */
  .hero {
      background: linear-gradient(135deg, #FFD93D 0%, #FF6B9D 50%, #A8E6CF 100%);
      color: white;
      padding: 80px 20px;
      text-align: center;
      position: relative;
      overflow: hidden;
  }

  .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);
      transform: rotate(-2deg);
  }

  .hero p {
      font-size: 1.3em;
      max-width: 700px;
      margin: 0 auto;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
  }

  /* Container */
  .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 40px 20px;
  }

  /* Tour Blog Section */
  .tour-section {
      background: #FFF9E6;
  }

  .section-title {
      text-align: center;
      font-size: 2.5em;
      background: linear-gradient(135deg, #FF6B9D, #FFD93D, #A8E6CF);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      margin-bottom: 15px;
      transform: rotate(-1deg);
  }

  .section-subtitle {
      text-align: center;
      font-size: 1.2em;
      color: #FF6B9D;
      margin-bottom: 40px;
      font-weight: bold;
  }

  .blog-post {
      background: white;
      border-radius: 30px;
      padding: 30px;
      margin-bottom: 40px;
      box-shadow: 0 10px 30px rgba(255, 107, 157, 0.2);
      border: 5px solid #FFD93D;
  }

  .blog-post h3 {
      color: #FF6B9D;
      font-size: 1.8em;
      margin-bottom: 20px;
      display: flex;
      align-items: center;
      gap: 10px;
      flex-wrap: wrap;
  }

  .blog-post h3::before {
      content: "🎨";
      font-size: 1.2em;
  }

  .blog-image {
      width: 100%;
      height: 400px;
      border-radius: 20px;
      margin: 30px 0;
      object-fit: cover;
      border: 5px solid #FFD93D;
  }

  /* Image Collage */
  .image-collage {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 15px;
      margin: 30px 0;
  }
  
  .image-collage-2 {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 15px;
      margin: 30px 0;
  }

  .collage-item {
      height: 250px;
      border-radius: 15px;
      border: 4px solid white;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
      overflow: hidden;
  }

  .collage-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
  }

  .large {
      grid-column: span 2;
      grid-row: span 2;
      height: auto;
  }
  
  .wide {
      grid-row: span 2;
      height: auto;
  }

  .blog-content {
      font-size: 1.1em;
      color: #555;
      line-height: 2;
  }

  .blog-content p {
      margin-bottom: 20px;
  }

  .fun-list {
      list-style: none;
      margin: 30px 0;
  }

  .fun-list li {
      padding: 15px;
      margin: 15px 0;
      background: linear-gradient(135deg, #FFE5F1 0%, #FFF9E6 100%);
      border-radius: 20px;
      border-left: 8px solid #FF6B9D;
      font-size: 1.1em;
      position: relative;
      padding-left: 60px;
  }

  .fun-list li::before {
      position: absolute;
      left: 20px;
      font-size: 1.8em;
  }

  .fun-list li:nth-child(1)::before {
      content: "🎪";
  }

  .fun-list li:nth-child(2)::before {
      content: "📚";
  }

  .fun-list li:nth-child(3)::before {
      content: "🎭";
  }

  .fun-list li:nth-child(4)::before {
      content: "🌈";
  }

  .fun-list li:nth-child(5)::before {
      content: "🧩";
  }

  .cta-button {
      display: inline-block;
      background: linear-gradient(135deg, #FF6B9D 0%, #FFD93D 100%);
      color: white;
      padding: 18px 40px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.2em;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      box-shadow: 0 8px 20px rgba(255, 107, 157, 0.4);
      border: 4px solid white;
  }

  .cta-button:hover {
      transform: scale(1.1) rotate(-2deg);
      box-shadow: 0 12px 30px rgba(255, 107, 157, 0.6);
  }

  .button-center {
      text-align: center;
      margin: 50px 0;
  }

  /* Events Section */
  .events-section {
      background: linear-gradient(135deg, #E0F7FA 0%, #FFF9E6 100%);
  }

  .events-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
  }

  .event-card {
      background: white;
      border-radius: 30px;
      overflow: hidden;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
      border: 5px solid #A8E6CF;
      transition: transform 0.3s ease;
  }

  .event-card:hover {
      transform: rotate(-2deg) scale(1.05);
  }

  .event-header {
      background: linear-gradient(135deg, #A8E6CF 0%, #FFD93D 100%);
      color: white;
      padding: 30px;
      text-align: center;
      position: relative;
  }

  .event-header::before {
      content: "🎉";
      position: absolute;
      top: 10px;
      left: 20px;
      font-size: 2em;
  }

  .event-header::after {
      content: "🎈";
      position: absolute;
      top: 10px;
      right: 20px;
      font-size: 2em;
  }

  .event-date {
      font-size: 3em;
      font-weight: bold;
      margin-bottom: 10px;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
  }

  .event-month {
      font-size: 1.3em;
      text-transform: uppercase;
      letter-spacing: 3px;
      font-weight: bold;
  }

  .event-body {
      padding: 30px;
  }

  .event-body h3 {
      color: #FF6B9D;
      font-size: 1.6em;
      margin-bottom: 15px;
  }

  .event-body p {
      color: #555;
      margin-bottom: 20px;
      font-size: 1em;
  }

  .event-details {
      background: #FFF9E6;
      padding: 20px;
      border-radius: 15px;
      margin-top: 20px;
  }

  .event-detail-item {
      padding: 8px 0;
      color: #666;
      font-size: 1em;
  }

  .event-detail-item strong {
      color: #FF6B9D;
  }

  /* Special Event Headers */
  .event-card.halloween .event-header {
      background: linear-gradient(135deg, #FF6B35 0%, #1E1E1E 100%);
  }

  .event-card.christmas .event-header {
      background: linear-gradient(135deg, #C41E3A 0%, #0F8A5F 100%);
  }

  .event-card.valentines .event-header {
      background: linear-gradient(135deg, #FF6B9D 0%, #FF1744 100%);
  }

  .event-card.easter .event-header {
      background: linear-gradient(135deg, #FFE066 0%, #B39DDB 100%);
  }

  .event-card.summer .event-header {
      background: linear-gradient(135deg, #FFD93D 0%, #4FC3F7 100%);
  }

  .event-card.thanksgiving .event-header {
      background: linear-gradient(135deg, #FF6F00 0%, #8D6E63 100%);
  }

  /* Footer Placeholder */
  .footer-placeholder {
      background: linear-gradient(135deg, #6B5B95 0%, #FF6B9D 100%);
      color: white;
      padding: 30px 20px;
      text-align: center;
      font-size: 14px;
      letter-spacing: 2px;
      font-weight: bold;
  }

  /* Mobile Responsive */
  @media (max-width: 768px) {
      .hero {
          padding: 60px 20px;
      }

      .hero h1 {
          font-size: 2em;
      }

      .hero p {
          font-size: 1.1em;
      }

      .section-title {
          font-size: 2em;
      }

      .section-subtitle {
          font-size: 1.1em;
      }

      .blog-post {
          padding: 20px;
          border-radius: 20px;
      }

      .blog-post h3 {
          font-size: 1.4em;
      }

      .blog-image {
          height: 250px;
          margin: 20px 0;
      }

      .blog-content {
          font-size: 1em;
      }

      .image-collage, .image-collage-2 {
          grid-template-columns: 1fr;
          gap: 10px;
      }

      .collage-item {
          height: 200px;
      }

      .large, .wide {
          grid-column: span 1;
          grid-row: span 1;
      }

      .fun-list li {
          font-size: 1em;
          padding-left: 50px;
      }

      .fun-list li::before {
          font-size: 1.5em;
          left: 15px;
      }

      .cta-button {
          font-size: 1em;
          padding: 15px 30px;
      }

      .events-grid {
          grid-template-columns: 1fr;
          gap: 20px;
      }

      .event-header {
          padding: 25px;
      }

      .event-date {
          font-size: 2.5em;
      }

      .event-month {
          font-size: 1.1em;
      }

      .event-body {
          padding: 20px;
      }

      .event-body h3 {
          font-size: 1.4em;
      }

      .container {
          padding: 30px 15px;
      }
  }

  @media (max-width: 480px) {
      .hero h1 {
          font-size: 1.6em;
      }

      .hero::before {
          font-size: 1.5em;
      }

      .section-title {
          font-size: 1.6em;
      }

      .blog-post {
          border-width: 3px;
      }

      .navbar-placeholder,
      .footer-placeholder {
          font-size: 12px;
          padding: 15px;
      }
  }

  .hero-video {
      width: 100%;
      height: 100vh;
      object-fit: cover;
      display: block;
  }

/* ================= 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;
}

.creator{
    margin-bottom: 7vh;
}

.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;
}

  /* 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);
        }