@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;
  --nav-height: 100px;
}
* {
  box-sizing: border-box;
}
html, body {
  height: 100%;
}
html {
  font-size: 18px;
  -webkit-text-size-adjust: 100%;
}
body {
  line-height: 1.6;
}
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;
}
section {
  scroll-margin-top: calc(var(--nav-height) + 20px);
}
.kf-main {
  width: min(var(--heroMax), calc(100% - 40px));
  margin: 0 auto;
}
.kf-container {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}
/* Top nav */
.kf-nav {
  position: sticky;
  top: 0;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  margin-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);
}
.kf-nav-links a {
  position: relative;
  color: var(--muted);
  font-weight: 700;
  padding: 10px 10px;
  border-radius: 12px;
  transition: .2s ease;
}
.kf-nav-links a:hover {
  color: var(--text);
  background: rgba(255, 255, 255, .06);
}
.kf-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;
}
.kf-nav-links a:hover::after {
  opacity: .9;
  transform: translateY(0);
}
.kf-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 {}
.kf-nav-left {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-direction: row;
}
/* =========================
   BRAND LOGOS (NAV)
   ========================= */
.brand-logos {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 6px 8px;
  border-radius: 14px;
  flex-direction: row;
}
/* 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 */
/* Subtle hover polish */
.brand-logos:hover {
  background: rgba(255, 255, 255, .06);
}
/* =========================
   NAV SPONSOR AREA
   ========================= */
.kf-nav-sponsored {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: auto;
  padding-left: 20px;
  border-left: 1px solid var(--border);
}
.kf-nav-sponsored-label {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .8px;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
}
.kf-nav-sponsored-logos {
  display: flex;
  align-items: center;
  gap: 10px;
}
.kf-nav-sponsored-logos img {
  height: 28px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, .15));
  transition: transform .2s ease;
}
.kf-nav-sponsored-logos img:hover {
  transform: translateY(-2px);
}
.kf-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: 700;
  transition: transform .3s 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;
}
.kf-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);
}
.kf-btn-primary {
  background: var(--accent);
  border-color: rgba(255, 255, 255, 0);
  color: #fff;
  box-shadow: 0 14px 34px rgba(255, 43, 214, .15);
  letter-spacing: 1px;
  font-weight: 500;
}
.kf-btn-primary:hover {
  filter: brightness(1.06);
  color: #07111f;
  box-shadow: 0 18px 44px rgba(176, 0, 255, .18);
}
.kf-btn-secondary {
  background: var(--accent2);
  border-color: rgba(255, 255, 255, 0);
  color: #07111f;
  box-shadow: 0 14px 34px rgba(255, 138, 0, .14);
}
.kf-btn-secondary:hover {
  filter: brightness(1.05);
  box-shadow: 0 18px 44px rgba(255, 230, 0, .14);
}
/* =========================
   MOBILE MENU
   ========================= */
.menu-btn {
  display: none;
  align-items: center;
  justify-content: center;
  width: clamp(56px, 9vw, 78px);
  height: clamp(56px, 9vw, 78px);
  border-radius: 18px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  cursor: pointer;
  transition: transform .15s ease, background .2s ease, box-shadow .2s ease;
  box-shadow: 0 12px 28px rgba(0, 0, 0, .15);
}
.menu-btn:hover {
  background: var(--surface-2);
  transform: translateY(-2px);
}
.menu-btn:active {
  transform: scale(.96);
}
/* Hamburger icon (CSS) */
.menu-icon {
  position: relative;
  width: clamp(26px, 4.2vw, 36px);
  height: 3px;
  border-radius: 999px;
  background: currentColor;
  display: block;
}
.menu-icon::before, .menu-icon::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 3px;
  border-radius: 999px;
  background: currentColor;
  transition: transform .18s ease, top .18s ease, opacity .18s ease;
}
.menu-icon::before {
  top: -10px;
}
.menu-icon::after {
  top: 10px;
}
/* Animate to X when open */
.menu-btn.is-open .menu-icon {
  background: transparent;
}
.menu-btn.is-open .menu-icon::before {
  top: 0;
  transform: rotate(45deg);
}
.menu-btn.is-open .menu-icon::after {
  top: 0;
  transform: rotate(-45deg);
}
/* Accessibility utility */
.kf-visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.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 — full width, not a card */
.hero-banner {
  position: relative;
  height: 460px;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  margin-top: 0;
  overflow: hidden;
  /* Remove card styling */
  border: none;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
}
.hero-banner::before {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 120px;
  background: linear-gradient(to bottom, transparent, var(--bg));
  z-index: 2;
  pointer-events: none;
}
/* 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;
}
/* 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(350px, 42vw, 600px);
  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;
}
/* =========================
   MOBILE HERO BANNER
   ========================= */
.hero-mobile {
  display: none;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  margin-top: 0;
  overflow: hidden;
}
.hero-mobile img {
  width: 100%;
  height: auto;
  display: block;
}
/* =========================
   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: -200px;
  bottom: -20px;
  transform: translate3d(calc(var(--kid-mx, 0px) * -1), calc(var(--parallax-kids, 0px) + var(--kid-my, 0px)), 0);
}
.kid-right {
  right: -150px;
  bottom: -100px;
	transform: scale(1.1)
}
/* 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 {
  display: grid;
  grid-template-columns: 1fr;
  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;
}
/* HERO TEXT + CHIP SIDE LAYOUT */
.hero-content-row{
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: start;
}

/* Chips vertical */
.info-column{
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 180px;
	font-size: 1.5rem;
	border-left: 2px dotted var(--border);
	margin-top: 20px;
}

.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;
  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);
  padding: 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;
  background: rgba(255, 255, 255, .04);
  color: var(--muted);
  font-weight: 700;
	white-space: nowrap;
}
.pill, .chip {
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .18);
}
/* 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;
  letter-spacing: -0.2px;
}
.side p {
  margin: 0;
  color: var(--muted);
}
.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(4, 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;
}
.kf-section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  margin: 8px 0 14px;
}
.kf-section-head h2 {
  margin: 0;
  letter-spacing: -0.3px;
}
.kf-section-head p {
  margin: 0;
  color: var(--muted);
}
.kf-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 14px;
}
.kf-grid-dd {
  display: grid;
  grid-template-columns: repeat(18, 1fr);
  gap: 14px;
}
.kf-grid-baseAccess {
  display: grid;
  grid-template-columns: 1.4fr .8fr;
  gap: 22px;
}
.kf-card-dd {
  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);
}
.kf-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);
}
.kf-card h3 {
  margin: 0 0 8px;
  letter-spacing: -0.2px;
}
.kf-card p {
  margin: 0;
  color: var(--muted);
}
/* Cards with clickable images */
.kf-card-media {
  padding: 0;
  overflow: hidden;
}
.kf-card-image-link {
  position: relative;
  display: block;
  border-bottom: 1px solid var(--border);
}
.kf-card-image-link img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  display: block;
  transform: scale(1);
  transition: transform .25s ease, filter .25s ease;
}
.kf-card-image-link:hover img {
  transform: scale(1.03);
  filter: saturate(1.08);
}
.kf-card-image-badge {
  position: absolute;
  left: 12px;
  bottom: 12px;
  padding: 8px 10px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--surface-2) 70%, transparent 30%);
  border: 1px solid var(--border);
  color: var(--text);
  font-weight: 800;
  backdrop-filter: blur(10px);
}
.kf-card-body {
  padding: 18px;
}
.kf-card-body p {
  margin: 0;
  color: var(--muted);
}
.kf-card, .hero-card, .side, .hero-banner {
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.kf-card:hover, .hero-card:hover, .side:hover {
  border-color: var(--border-strong);
}
.kf-card {
  position: relative;
  overflow: hidden;
}
.kf-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;
}
.kf-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;
}
.callout span {
  color: var(--muted);
  display: block;
  margin-top: 4px;
}
/* =========================
   EVENT LOCATION
   ========================= */
.location-section {
  width: min(var(--heroMax), 100%);
  margin-left: auto;
  margin-right: auto;
}
/* Full-width inside the grid */
.base-access-card {
  grid-column: span 12;
  padding: clamp(18px, 3.2vw, 26px);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--surface);
  position: relative;
  overflow: hidden;
}
/* Distinct playful header glow */
.base-access-card::before {
  content: "";
  position: absolute;
  inset: -2px;
  background:
    radial-gradient(700px 240px at 10% 10%, var(--tint-3), transparent 60%), radial-gradient(700px 240px at 85% 20%, var(--tint-1), transparent 60%), radial-gradient(700px 240px at 50% 110%, var(--tint-2), transparent 60%);
  opacity: .9;
  pointer-events: none;
}
/* Header layout */
.base-access-head {
  position: relative;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  z-index: 1;
}
.base-access-icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: var(--accent3);
  border: 1px solid var(--border);
  box-shadow: 0 12px 28px rgba(0, 0, 0, .14);
  flex: 0 0 auto;
  font-size: 22px;
}
.base-access-head h3 {
  margin: 0;
}
.base-access-head p {
  margin: 0;
  color: var(--muted);
  max-width: 95%
}
/* Foreign nationals panel */
.base-access-foreign {
  position: relative;
  z-index: 1;
  margin-top: 16px;
  padding: 16px;
  border-radius: calc(var(--radius) - 6px);
  background: color-mix(in srgb, var(--surface-2) 80%, transparent 20%);
  border: 1px dashed var(--border);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.kf-badge-foreign {
  display: inline-flex;
  align-items: center;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .06);
  color: var(--muted);
  font-weight: 900;
}
.base-access-foreign-info {
  padding: 0 18px;
  border-radius: calc(var(--radius) - 6px);
  background: var(--surface-2);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}
.base-access-foreign-text {
  margin: 0;
  color: var(--muted);
}
.base-access-foreign-text a {
  font-weight: bold;
  text-decoration: underline;
}
/* =========================
   DOS AND DONTS
   ========================= */
.dosdonts-section {
  width: min(var(--heroMax), 100%);
  margin: 0 auto 0;
}
/* =========================
   CONNECT WITH US
   ========================= */
.connect-section {
  width: min(var(--heroMax), 100%);
  margin: 0px auto 0;
}
.connect-card {
  display: grid;
  grid-template-columns: 1.4fr .8fr;
  gap: 22px;
  padding: clamp(22px, 4vw, 32px);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--surface);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}
/* Subtle playful glow */
.connect-card::before {
  content: "";
  position: absolute;
  inset: -2px;
  background:
    radial-gradient(600px 220px at 10% 10%, var(--tint-2), transparent 60%), radial-gradient(600px 220px at 90% 20%, var(--tint-1), transparent 60%);
  opacity: .7;
  pointer-events: none;
}
/* Left column */
.connect-title {
  margin: 0 0 10px;
  letter-spacing: .5px;
}
.connect-text {
  margin: 0 0 18px;
  color: var(--muted);
  max-width: 60ch;
}
/* Facebook graphic placeholder */
.connect-graphic-link {
  display: inline-block;
}
.connect-graphic-placeholder {
  height: auto;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: var(--accent3);
  color: #111827;
  font-weight: 900;
  box-shadow: 0 14px 30px rgba(0, 0, 0, .18);
  transition: transform .2s ease, box-shadow .2s ease;
}
.connect-graphic-placeholder:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 22px rgba(0, 0, 0, .22);
}
.connect-graphic-placeholder img {
  background-size: cover;
  border-radius: 16px
}
/* Right column */
.connect-right {
  padding: 18px;
  border-radius: calc(var(--radius) - 6px);
  background: var(--surface-2);
  border: 1px dashed var(--border);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}
.connect-right h4 {
  margin: 0;
  letter-spacing: .8px;
}
.connect-right p {
  margin: 0;
  color: var(--muted);
}
/* =========================
   EXHIBITOR APPLICATION
   ========================= */
.exhibitor-section {
  width: min(var(--heroMax), 100%);
  margin: 28px auto 0;
}
.exhibitor-card {
  display: grid;
  grid-template-columns: 1.4fr .8fr;
  gap: 22px;
  padding: clamp(22px, 4vw, 32px);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--surface);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}
.exhibitor-content {
  display: flex;
  flex-direction: column;
}
/* Text content */
.exhibitor-content p {
  margin: 0 0 14px;
  color: var(--text);
}
.exhibitor-notes {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}
.exhibitor-notes li {
  margin: 10px 0;
}
/* Helper text */
.exhibitor-help {
  color: var(--muted);
}
.exhibitor-help a {
  color: inherit;
  text-decoration: underline;
  font-weight: 700;
}
/* Footer */
footer {
  padding: 28px 0 36px;
  border-top: 1px solid var(--border);
  margin-top: 18px;
  color: var(--muted);
}
.kf-footer {
  padding: 28px 0 36px;
  border-top: 1px solid var(--border);
  margin-top: 18px;
  color: var(--muted);
}
.kf-footer-inner {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}
.kf-footer-left {
  display: flex;
  align-items: center;
  gap: 12px;
}
.kf-footer-mark {
  width: 96px;
  height: auto;
  filter: drop-shadow(0 10px 22px rgba(0, 0, 0, .18));
}
.kf-footer-title {
  font-weight: 900;
  color: var(--text);
  font-size: 1.1rem;
  line-height: 1.1;
}
.kf-footer-copy {
  font-size: 0.95rem;
}
.kf-footer-sponsored {
  text-align: right;
}
.kf-footer-sponsored-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 900;
  letter-spacing: .8px;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.kf-footer-sponsored-logos {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
}
.kf-footer-sponsored-logos img {
  height: 54px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, .14));
}
/* Right column container */
/* Proudly Sponsored By */
/* Sponsor logos row */
.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: 1200px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .kf-card {
    grid-column: span 12;
  }
  .kf-nav-links, .nav-cta {
    display: none;
  }
  .menu-btn {
    display: inline-flex;
  }
  .menu {
    display: none;
  }
  .menu.open {
    display: block;
  }
  .hero-banner {
    display: none;
  }
  .hero-logo {
    position: relative;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }
  .hero-mobile {
    display: block;
  }
  .kid-wrap {
    width: clamp(320px, 64vw, 600px);
  }
  .kid-right {
    bottom: -100px;
  }
  .exhibitor-card {
    grid-template-columns: 1fr;
    text-align: left;
  }
  .connect-card {
    grid-template-columns: 1fr;
  }
  .kf-grid-baseAccess {
    grid-template-columns: 1fr;
  }
  .kf-grid-dd {
    grid-template-columns: 1fr;
  }
  .kf-footer-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .kf-footer-sponsored {
    text-align: center;
  }
  .kf-footer-sponsored-logos {
    justify-content: center;
  }
  .kf-footer-mark {
    width: 84px;
  }
}
/* ========================================
   TABLET SCALE MODE (<=1200px)
   Match 600px visual scale
   ======================================== */
@media (max-width: 1200px) {
  .kf-main {
    width: min(var(--heroMax), calc(100% - 60px));
    margin: 0 auto;
  }
  .kf-section-head {
    margin-top: 120px;
  }
  .menu {
    font-size: 1.5rem;
  }
  html {
    font-size: 1.5rem /* down from 18px */
  }
  body {
    line-height: 1.55;
  }
  /* Section headings */
  .h1 {
    font-size: 3rem;
  }
  h2 {
    font-size: 2.5rem;
  }
  h3 {
    font-size: 2em;
  }
  h4 {
    font-size: 1.75rem;
  }
  p {
    font-size: 1.75rem;
  }
  .brand-logo {
    height: 2rem;
  }
  .brand-logo-main {
    height: 100px;
  }
  .kf-nav-sponsored-label {
    font-size: 20px;
    ;
  }
  .kf-nav-sponsored-logos img {
    height: 50px
  }
  .list {
    font-size: 1.75rem;
  }
  .kf-badge-foreign {
    font-size: 1.75em
  }
  /* Hero banner height slightly reduced */
  .hero-banner {
    height: 420px;
  }
  .hero-banner {
    height: 280px;
  }
  .kid-wrap {
    display: none;
  }
  .hero-logo {
    max-width: 92%;
  }
  /* Hero card padding reduced */
  .hero-card {
    padding: 40px;
  }
	.hero-content-row{
		display: flex;
		flex-direction: column;
	}
	.info-column {
		border-left: none;
		border-top: 2px dotted var(--border);
		padding-top: 15px;
		flex-direction: row;
		flex-wrap: wrap;
		gap: 20px;
		align-items: center;
		justify-content: center;
		font-size: 1.75rem;
	}
  /* General card padding tightened */
  .kf-card {
    padding: 40px;
  }
	.kf-card-image-link img {
  width: 100%;
  height: 300px;
	}
  /* Buttons slightly smaller */
  .kf-btn {
    padding: 20px 14px;
    font-size: 1.75rem;
  }
	.exhibitor-card .kf-btn-primary{
		font-size: 1.45rem;
	}
  section {
    scroll-margin-top: 400px;
  }
  /* Reduce nav spacing slightly */
  .kf-nav-inner {
    padding: 10px 16px;
  }
  .exhibitor-notes {
    font-size: 1.75rem;
	  padding: 0 60px;
  }
  /* Footer scaling */
  .kf-footer-inner {
    gap: 18px;
  }
  .kf-footer-left {
    display: flex;
    flex-direction: column;
  }
  .kf-footer-mark {
    width: 30vw;
  }
  .kf-footer-title {
    display: none;
  }
}