
body {
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: white;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  background-color: #fff;
  padding: 10px 40px;
  border-bottom: 2px solid #eee;
}

.logo {
  height: 200px;
  margin-right: 40px;
}

nav {
  flex-grow: 1;
}

nav ul {
  display: flex;
  justify-content: space-around;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
}

nav ul li a {
  text-decoration: none;
  color: #333;
  font-weight: bold;
  display: flex;
  align-items: center;
}

.social-icon {
  height: 30px;
  width: 30px;
}

.hero-image-container {
  width: 100%;
  overflow: hidden;
}

.hero-image {
  display: block
  margin: 0 auto;
  max-width: 100%;
  height: auto;
}

.package-list,
.character-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  padding: 40px;
  max-width: 1200px;
  margin: auto;
}

.package,
.character {
  text-align: center;
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 20px;
  background-color: #fafafa;
}

.package img,
.character img {
  width: 100%;
  max-width: 220px;
  border-radius: 10px;
  margin-bottom: 15px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .navbar {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
  }

  .logo {
    height: 140px;
    margin-bottom: 10px;
    margin-right: 20px;
  }

  nav ul {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    padding-top: 10px;
  }

  nav ul li {
    margin: 5px 10px;
  }

  .hero-image-container,
  .home-bio {
    padding: 0 20px;
  }
}

/* Magic list with sparkle bullets */
.magic-list {
  list-style: none;
  padding-left: 0;
}

.magic-list li::before {
  content: "✨";
  margin-right: 10px;
  color: #f09;
}

/* Sparkle background effect */
.sparkle-background {
  position: relative;
  overflow: hidden;
  background-color: #fef4ff; /* Light pink background */
}

.sparkle-background::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(#ffffff 1px, transparent 1px), /* White sparkle */
              radial-gradient(#ffd1f7 1px, transparent 1px); /* Pink sparkle */
  background-size: 30px 30px;
  opacity: 0.7;
  animation: sparkleMove 15s linear infinite;
  pointer-events: none;
  z-index: 0;
}

@keyframes sparkleMove {
  0% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(30px, 30px);
  }
  100% {
    transform: translate(0, 0);
  }
}

/* Bio content wrapper to sit above sparkles */
.bio-wrapper {
  position: relative;
  z-index: 1;
  padding: 20px;
  max-width: 800px;
  margin: auto;
  text-align: center;
}

.contact-wrapper {
  max-width: 700px;
  margin: auto;
  padding: 40px;
  text-align: center;
}

.contact-links p {
  font-size: 1.2rem;
  margin: 10px 0;
}

.contact-links a {
  color: #cc3399;
  text-decoration: none;
}

.contact-links a:hover {
  text-decoration: underline;
}

.events-section {
  padding: 40px 20px;
  text-align: center;
}

.events-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

.event {
  background-color: #fafafa;
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.event:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.event h2 {
  color: #cc3399;
  margin-bottom: 10px;
}
