@charset "utf-8";
/* CSS Document */
/* =========================
   THEME TOKENS (Light default)
   ========================= */
:root{
  /* Base */
  --bg: #F8FAFF;
  --text: #1F2937;
  --muted: #4B5563;

  /* Surfaces */
  --surface: rgba(255,255,255,.85);
  --surface-2: rgba(255,255,255,.95);
  --border: rgba(0,0,0,.08);
  --border-strong: rgba(0,0,0,.14);
  --shadow: 0 18px 40px rgba(0,0,0,.12);

  /* Shape / layout */
  --radius: 20px;
  --max: 1100px;
  --heroMax: 1200px;

  /* KidFest palette */
  --purple: #8B5CF6;
  --magenta:#EC4899;
  --orange: #FB923C;
  --yellow: #FACC15;
  --aqua:   #38BDF8;
  --mint:   #34D399;

  /* Gradients */
  --accent:  linear-gradient(135deg, var(--magenta), var(--purple));
  --accent2: linear-gradient(135deg, var(--yellow), var(--orange));
  --accent3: linear-gradient(135deg, var(--aqua), var(--mint));

  /* Glows / focus */
  --focus: rgba(56,189,248,.55);
  --glow: 0 0 0 4px rgba(56,189,248,.25);

  /* Decorative tints */
  --tint-1: rgba(236,72,153,.20);
  --tint-2: rgba(139,92,246,.18);
  --tint-3: rgba(250,204,21,.18);
  --tint-4: rgba(251,146,60,.18);

  /* Parallax vars */
  --parallax-bg: 0px;
  --parallax-kids: 0px;
  --kid-mx: 0px;
  --kid-my: 0px;
}

/* =========================
   DARK THEME OVERRIDES
   ========================= */
:root[data-theme="dark"]{
  --bg: #0A0F2C;
  --text: rgba(255,255,255,.97);
  --muted: rgba(255,255,255,.82);

  --surface: rgba(255,255,255,.12);
  --surface-2: rgba(255,255,255,.18);
  --border: rgba(255,255,255,.28);
  --border-strong: rgba(255,255,255,.40);
  --shadow: 0 24px 70px rgba(0,0,0,.30);

  --focus: rgba(56,189,248,.75);
  --glow: 0 0 0 5px rgba(56,189,248,.28);

  --tint-1: rgba(236,72,153,.22);
  --tint-2: rgba(139,92,246,.20);
  --tint-3: rgba(250,204,21,.18);
  --tint-4: rgba(251,146,60,.18);
}

/* If user hasn't chosen a theme, follow system preference */
@media (prefers-color-scheme: dark){
  :root:not([data-theme]){
    --bg: #0A0F2C;
    --text: rgba(255,255,255,.97);
    --muted: rgba(255,255,255,.82);

    --surface: rgba(255,255,255,.12);
    --surface-2: rgba(255,255,255,.18);
    --border: rgba(255,255,255,.28);
    --border-strong: rgba(255,255,255,.40);
    --shadow: 0 24px 70px rgba(0,0,0,.30);

    --focus: rgba(56,189,248,.75);
    --glow: 0 0 0 5px rgba(56,189,248,.28);

    --tint-1: rgba(236,72,153,.22);
    --tint-2: rgba(139,92,246,.20);
    --tint-3: rgba(250,204,21,.18);
    --tint-4: rgba(251,146,60,.18);
  }
}

*{ box-sizing: border-box; }
html, body { height: 100%; }
body{
	margin: 0;
  min-height: 100vh;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
  color: var(--text);

  background:
    radial-gradient(900px 520px at 18% 10%, var(--tint-2), transparent 60%),
    radial-gradient(900px 520px at 85% 15%, var(--tint-1), transparent 60%),
    radial-gradient(900px 520px at 55% 95%, var(--tint-3), transparent 60%),
    linear-gradient(180deg, var(--bg) 0%, color-mix(in srgb, var(--bg) 70%, white 30%) 100%);
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  line-height: 1.5;
}

a{ color: inherit; text-decoration: none; }
img{ max-width: 100%; display:block; }

.container{
	width: min(var(--max), calc(100% - 40px));
    margin: 0 auto;
}

/* Top nav */
.nav{
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: color-mix(in srgb, var(--surface-2) 80%, transparent 20%);
  border-bottom: 1px solid var(--border);
}

.nav-links a{
  position: relative;
  color: var(--muted);
  font-weight: 700;
  padding: 10px 10px;
  border-radius: 12px;
  transition: .2s ease;
}

.nav-links a:hover{
  color: var(--text);
  background: rgba(255,255,255,.06);
}

.nav-links a::after{
  content:"";
  position:absolute;
  left: 12px;
  right: 12px;
  bottom: 7px;
  height: 2px;
  border-radius: 999px;
  background: var(--accent);
  opacity: 0;
  transform: translateY(3px);
  transition: .2s ease;
}

.nav-links a:hover::after{
  opacity: .9;
  transform: translateY(0);
}
.nav-inner{
    display:flex;
    align-items:center;
    justify-content: space-between;
    gap: 30px;
    padding: 14px 0;
}
.brand{
    display:flex;
    align-items:center;
    gap: 10px;
    font-weight: 800;
    letter-spacing: .2px;
	width: 25%;
}
.logo{
	width: 33%;
      border-radius: 12px;
      place-items:center;
      font-weight: 900;
    }
    .logo span{ font-size: 18px; }

/* =========================
   BRAND LOGOS (NAV)
   ========================= */

.brand-logos{
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 6px 8px;
  border-radius: 14px;
}

/* All logos */
.brand-logo{
  height: 30px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 6px 14px rgba(0,0,0,.18));
}

/* Primary logo (slightly bigger) */
.brand-logo-main{
  height: 70px;
}

/* Keep nav height tidy */
.nav-inner{
  min-height: 64px;
}

/* Subtle hover polish */
.brand-logos:hover{
  background: rgba(255,255,255,.06);
}

    .nav-links{
      display:flex;
      align-items:center;
      gap: 20px;
    }
    .nav-links a{
      color: var(--muted);
      font-weight: 600;
      padding: 10px 10px;
      border-radius: 12px;
      transition: .2s ease;
    }
    .nav-links a:hover{ color: var(--text); background: rgba(255,255,255,.06); }

    .nav-cta{
      display:flex;
      gap: 10px;
      align-items:center;
    }

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.06);
  color: var(--text);
  font-weight: 800;
  transition: transform .15s ease, background .2s ease, border-color .2s ease, box-shadow .2s ease;
  box-shadow: 0 8px 20px rgba(0,0,0,.18);
  cursor: pointer;
  white-space: nowrap;
}

.btn:hover{
  transform: translateY(-1px);
  background: rgba(255,255,255,.10);
  border-color: var(--border-strong);
  box-shadow: 0 12px 26px rgba(0,0,0,.24);
}

.btn-primary{
  background: var(--accent);
  border-color: rgba(255,255,255,0);
  color: #07111f;
  box-shadow: 0 14px 34px rgba(255,43,214,.15);
}

.btn-primary:hover{
  filter: brightness(1.06);
	color: #07111f;
  box-shadow: 0 18px 44px rgba(176,0,255,.18);
}

.btn-secondary{
  background: var(--accent2);
  border-color: rgba(255,255,255,0);
  color: #07111f;
  box-shadow: 0 14px 34px rgba(255,138,0,.14);
}

.btn-secondary:hover{
  filter: brightness(1.05);
  box-shadow: 0 18px 44px rgba(255,230,0,.14);
}
    /* Mobile menu */
    .menu-btn{
      display:none;
      width: 44px;
      height: 44px;
      border-radius: 14px;
      border: 1px solid var(--border);
      background: rgba(255,255,255,.06);
      color: var(--text);
      align-items:center;
      justify-content:center;
    }
    .menu{
      display:none;
      padding: 10px 0 18px;
    }
    .menu a{
      display:block;
      padding: 12px 12px;
      margin: 6px 0;
      border-radius: 14px;
      border: 1px solid rgba(255,255,255,.0);
      color: var(--muted);
      background: rgba(255,255,255,.04);
      font-weight: 700;
    }
    .menu a:hover{ color: var(--text); border-color: rgba(255,255,255,.18); background: rgba(255,255,255,.07); }
    .menu .menu-cta{
      display:grid;
      gap: 10px;
      margin-top: 10px;
    }

    /* Hero */
.wide-section {
  width: min(1200px, 100%);
  margin-left: auto;
  margin-right: auto;
}

/* HERO BANNER — match card layout */
.hero-banner{
  position: relative;
  width: min(var(--heroMax), 100%);
  margin: 22px auto 0;          /* aligns with card spacing */
  height: 440px;

  overflow: hidden;
  border-radius: calc(var(--radius) + 6px);
  border: 1px solid var(--border);

  /* match your card surfaces */
  background: rgba(255,255,255,.06);
  box-shadow: var(--shadow);
}

/* Soft glass layer so banner looks like your other cards */
.hero-banner::before{
  content:"";
  position:absolute;
  inset:0;
  background: rgba(255,255,255,.04);
  backdrop-filter: blur(1px);
  pointer-events:none;
  z-index: 1; /* sits above image, below hero-layer */
}

/* Confetti background (scroll parallax) */
.hero-bg{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translateY(var(--parallax-bg)) scale(1.06);
  will-change: transform;
  z-index: 0;
}

/* Color-sync overlay */
.hero-banner::after{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(900px 380px at 50% 40%, rgba(255,230,0,.22), transparent 60%),
    radial-gradient(900px 380px at 65% 55%, rgba(255,42,214,.18), transparent 60%),
    radial-gradient(900px 380px at 35% 55%, rgba(176,0,255,.16), transparent 60%);
  mix-blend-mode: soft-light;
  pointer-events:none;
  z-index: 2;
}

/* Foreground layer */
.hero-layer{
  position: absolute;
  inset: 0;
  z-index: 3;
}

/* Center logo */
.hero-logo{
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  max-width: clamp(300px, 42vw, 560px);
  height: auto;
  z-index: 5;

  filter:
    drop-shadow(0 18px 40px rgba(0,0,0,.35))
    drop-shadow(0 0 30px rgba(255,42,214,.22));

  animation: logoFloat 5.5s ease-in-out infinite;
  transform-origin: 50% 60%;
  will-change: transform;
}


/* =========================
   COMING SOON SECTION
   ========================= */

.coming-soon-section{
  width: min(var(--heroMax), 100%);
  margin: 22px auto 0;
}

.coming-soon-card{
  position: relative;
  padding: clamp(22px, 4vw, 34px);
  text-align: center;

  background: var(--surface);
  border: 1px dashed var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);

  overflow: hidden;
}

/* Soft playful glow */
.coming-soon-card::before{
  content:"";
  position:absolute;
  inset:-2px;
  background:
    radial-gradient(500px 200px at 20% 0%, var(--tint-2), transparent 55%),
    radial-gradient(500px 200px at 80% 100%, var(--tint-3), transparent 55%);
  opacity: .6;
  pointer-events:none;
}

/* Icon */
.coming-soon-icon{
  font-size: 42px;
  margin-bottom: 10px;
  filter: drop-shadow(0 6px 14px rgba(0,0,0,.18));
}

/* Title */
.coming-soon-title{
  margin: 0 0 10px;
  font-size: clamp(20px, 3vw, 28px);
  letter-spacing: -0.4px;
}

/* Text */
.coming-soon-text{
  margin: 0 auto 18px;
  max-width: 60ch;
  color: var(--muted);
  font-size: 16px;
}

/* Actions */
.coming-soon-actions{
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}


/* Kid wrappers */
.kid-wrap{
  position: absolute;
  bottom: -6px;
  width: clamp(420px, 52vw, 760px); /* VERY BIG */
  pointer-events: none;
  z-index: 4;
  will-change: transform;

  transform: translate3d(
    var(--kid-mx, 0px),
    calc(var(--parallax-kids, 0px) + var(--kid-my, 0px)),
    0
  );
}

/* Left / right positioning (allows overlap behind logo) */
.kid-left{
  left: -400px;
	bottom: -20px;
  transform: translate3d(
    calc(var(--kid-mx, 0px) * -1),
    calc(var(--parallax-kids, 0px) + var(--kid-my, 0px)),
    0
  );
}

.kid-right{
  right: -360px;
	bottom: -120px
}

/* Kid image */
.hero-kids{
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 18px 22px rgba(0,0,0,.24));
}

/* Soft feet shadow */
.kid-wrap::after{
  content:"";
  position:absolute;
  left: 50%;
  bottom: 10px;
  width: 64%;
  height: 36px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: radial-gradient(closest-side, rgba(0,0,0,.42), transparent 70%);
  filter: blur(7px);
  opacity: .55;
  z-index: -1;
}

/* Logo float */
@keyframes logoFloat {
  0%, 100% { transform: translate(-50%, -50%) translateY(0) rotate(-0.6deg); }
  50%      { transform: translate(-50%, -50%) translateY(-12px) rotate(0.6deg); }
}

/* Subtle divider between banner and hero */
.hero-divider{
  width: min(1200px, 100%);
  height: 24px;
  margin: 10px auto 10px;
  position: relative;
}

.hero-divider::before{
  content:"";
  position:absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(255,255,255,.18),
      transparent
    );
}

.hero-divider::after{
  content:"";
  position:absolute;
  inset: 0;
  background:
    radial-gradient(
      600px 20px at 50% 50%,
      rgba(255,42,214,.25),
      transparent 60%
    );
  mix-blend-mode: screen;
}

    .hero{
      padding: 0 0 18px;
    }

.hero > .hero-grid,
.hero > .side-below,
.hero-divider{
  width: min(var(--heroMax), 100%);
  margin-left: auto;
  margin-right: auto;
}
    .hero-grid{
      gap: 22px;
      align-items: stretch;
    }
    .hero-card{
      border: 1px solid var(--border);
      background: rgba(255,255,255,.06);
      border-radius: calc(var(--radius) + 6px);
      box-shadow: var(--shadow);
      padding: 26px;
      position: relative;
      overflow: hidden;
    }
    .hero-card::before{
      content:"";
      position:absolute;
      inset: -80px -120px auto auto;
      width: 320px;
      height: 320px;
      background: radial-gradient(circle at 30% 30%, rgba(110,231,255,.30), transparent 60%),
                  radial-gradient(circle at 70% 70%, rgba(167,139,250,.30), transparent 60%);
      transform: rotate(18deg);
      filter: blur(0px);
      pointer-events:none;
    }
    .pill{
      display:inline-flex;
      align-items:center;
      gap: 8px;
      padding: 8px 12px;
      border-radius: 999px;
      border: 1px solid var(--border);
      background: rgba(255,255,255,.06);
      color: var(--muted);
      font-weight: 700;
      font-size: 13px;
		backdrop-filter: blur(10px);
    }
    .h1{
      margin: 14px 0 10px;
      font-size: clamp(34px, 4.3vw, 54px);
      line-height: 1.02;
      letter-spacing: -0.8px;
    }
    .sub{
      margin: 0 0 18px;
      color: var(--muted);
      font-size: 16px;
		padding: 0 20% 0 0;
      width: auto;
    }
    .hero-actions{
      display:flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 14px;
    }

    .info-row{
      display:flex;
		justify-content: space-between;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 18px;
    }
    .chip{
      display:inline-flex;
      align-items:center;
      gap: 8px;
      padding: 10px 12px;
      border-radius: 999px;
      border: 1px solid var(--border);
      background: rgba(255,255,255,.04);
      color: var(--muted);
      font-weight: 700;
      font-size: 20px;
    }

.pill, .chip{
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.18);
  box-shadow: 0 10px 22px rgba(0,0,0,.14);
}

    /* Side panel */
    .side{
      border: 1px solid var(--border);
      background: rgba(255,255,255,.05);
      border-radius: calc(var(--radius) + 6px);
      box-shadow: var(--shadow);
      padding: 20px;
      display:flex;
      flex-direction: column;
      gap: 12px;
    }
    .side h3{
      margin: 4px 0 0;
      font-size: 16px;
      letter-spacing: -0.2px;
    }
    .side p{
      margin: 0;
      color: var(--muted);
      font-size: 14px;
    }

.side-below{
  margin-top: 25px;
}
    .quick{
      display:grid;
      gap: 10px;
      margin-top: 8px;
    }
    .quick a{
      display:flex;
      align-items:center;
      justify-content: space-between;
      gap: 12px;
      padding: 12px 14px;
      border-radius: 16px;
      border: 1px solid var(--border);
      background: rgba(255,255,255,.04);
      transition: .2s ease;
      color: var(--text);
      font-weight: 800;
    }
    .quick a:hover{ background: rgba(255,255,255,.08); transform: translateY(-1px); }
    .arrow{
      width: 34px;
      height: 34px;
      border-radius: 12px;
      display:grid;
      place-items:center;
      background: rgba(255,255,255,.06);
      border: 1px solid rgba(255,255,255,.12);
      color: var(--muted);
      font-weight: 900;
    }

/* QUICK LINKS – horizontal row layout */
.side-below .quick{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 12px;
}

.side-below .quick a{
  height: 100%;
  justify-content: center;
  text-align: center;
  font-weight: 800;
}

    /* Sections */
    section{
      padding: 22px 0;
    }
    .section-head{
      display:flex;
      align-items:flex-end;
      justify-content: space-between;
      gap: 12px;
      margin: 8px 0 14px;
    }
    .section-head h2{
      margin: 0;
      font-size: 22px;
      letter-spacing: -0.3px;
    }
    .section-head p{
      margin: 0;
      color: var(--muted);
      font-size: 14px;
    }

    .grid{
      display:grid;
      grid-template-columns: repeat(12, 1fr);
      gap: 14px;
    }
    .card{
      grid-column: span 6;
      border: 1px solid var(--border);
      background: rgba(255,255,255,.05);
      border-radius: var(--radius);
      padding: 18px;
      box-shadow: 0 12px 30px rgba(0,0,0,.18);
    }
    .card h3{
      margin: 0 0 8px;
      font-size: 16px;
      letter-spacing: -0.2px;
    }
    .card p{
      margin: 0;
      color: var(--muted);
      font-size: 14px;
    }

.card,
.hero-card,
.side,
.hero-banner{
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.card:hover,
.hero-card:hover,
.side:hover{
  border-color: var(--border-strong);
}

.card{
  position: relative;
  overflow: hidden;
}

.card::before{
  content:"";
  position:absolute;
  inset:-2px;
  background: radial-gradient(600px 220px at 20% 10%, rgba(255,43,214,.12), transparent 55%),
              radial-gradient(600px 220px at 80% 20%, rgba(255,230,0,.10), transparent 55%);
  opacity: .0;
  transition: .25s ease;
  pointer-events:none;
}

.card:hover::before{
  opacity: 1;
}

    .list{
      margin: 10px 0 0;
      padding: 0 0 0 18px;
      color: var(--muted);
    }
    .list li{ margin: 8px 0; }

    .callout{
      grid-column: span 12;
      border: 1px dashed rgba(255,255,255,.22);
      background: rgba(255,255,255,.04);
      border-radius: var(--radius);
      padding: 18px;
      display:flex;
      align-items:center;
      justify-content: space-between;
      gap: 14px;
    }
    .callout strong{ display:block; font-size: 16px; }
    .callout span{ color: var(--muted); font-size: 14px; display:block; margin-top: 4px; }

    /* Footer */
    footer{
      padding: 28px 0 36px;
      border-top: 1px solid var(--border);
      margin-top: 18px;
      color: var(--muted);
    }
    .footer-grid{
      display:flex;
      align-items:center;
      justify-content: space-between;
      gap: 14px;
      flex-wrap: wrap;
    }
.footer-info {
	width:200%;
}
    .small-links{
      display:flex;
      gap: 14px;
      flex-wrap: wrap;
    }
    .small-links a{
      padding: 8px 10px;
      border-radius: 12px;
      background: rgba(255,255,255,.04);
      border: 1px solid rgba(255,255,255,.10);
    }
    .small-links a:hover{ background: rgba(255,255,255,.07); }


a:focus-visible, button:focus-visible{
  outline: none;
  box-shadow: var(--glow);
  border-color: color-mix(in srgb, var(--focus) 60%, transparent 40%);
}

    /* Responsive */
    @media (max-width: 900px){
      .hero-grid{ grid-template-columns: 1fr; }
      .card{ grid-column: span 12; }
      .nav-links, .nav-cta{ display:none; }
      .menu-btn{ display:inline-flex; }
      .menu{ display:none; }
      .menu.open{ display:block; }
    }
/* Responsive tweaks */
@media (max-width: 900px){
  .hero-banner{ height: 360px; }
  .kid-wrap{ width: clamp(320px, 64vw, 600px); }
}

@media (max-width: 600px){
  .hero-banner{ height: 280px; }
  .kid-wrap{ display: none; }
  .hero-logo{ max-width: 92%; }
	#themeToggle .theme-label{ display:none; }
}

@media (max-width: 600px){
  .brand-logo{
    height: 26px;
	  display: none;
  }
  .brand-logo-main{
    height: 34px;
	  display: block;
  }
}
