/* ============================================================
   BUBBLE BRUSH — kids.css
   Kids page — home palette
   ============================================================ */

.nav__active { color: #7c3aed !important; font-weight: 900 !important; }

/* ──────────────────────────────────────────
   KIDS HERO
────────────────────────────────────────── */
.kids-hero {
  background: linear-gradient(160deg, #2E1B4E 0%, #6A3EB4 100%);
  min-height: 60vh;
  padding: 0 0 3rem;
  overflow: visible;
}

.kids-hero__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
  position: relative;
  padding: 7rem 2.5rem 0;
}

.kids-hero__bubbles {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  padding-top: 1rem;
}

.kids-bubble {
  background: rgba(255,255,255,0.15);
  color: #ffffff;
  border-radius: 10px;
  padding: 0.9rem 1.1rem;
  font-size: 0.85rem;
  font-weight: 600;
  max-width: 300px;
  line-height: 1.5;
  position: relative;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.2);
}

/* Desktop: arrow RIGHT → toward image */
.kids-bubble::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -13px;
  transform: translateY(-50%);
  border: 8px solid transparent;
  border-left-color: rgba(255,255,255,0.15);
  border-right: none;
}

.kb--2 { align-self: center; margin-left: 2rem; }
.kb--3 { align-self: flex-end; }

.kids-hero__img {
  flex-shrink: 0;
  width: 500px;
  align-self: flex-start;
  margin-top: -4rem;
  position: relative;
}
.kids-hero__img img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

/* ──────────────────────────────────────────
   HOW IT WORKS
────────────────────────────────────────── */
.kids-how {
  background: #EDE6F7;
  padding: 3rem 2.5rem 3rem;
  overflow: hidden;
}

.kids-how__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
}

.kids-how__content { flex: 1; }

.kids-how__title {
  text-align: left !important;
  margin-bottom: 1.5rem;
}

.kids-how__img {
  flex-shrink: 0;
  width: 280px;
  align-self: flex-end;
}
.kids-how__img img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 8px 24px rgba(0,0,0,0.12));
}

.kids-steps {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  max-width: 480px;
}

.kids-step {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.kids-step__num {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 3.5rem;
  font-weight: 900;
  color: #1a0533;
  line-height: 1;
  min-width: 60px;
}

.kids-step p {
  font-size: 1.05rem;
  font-weight: 700;
  color: #1a0533;
}

/* ──────────────────────────────────────────
   NO VENUE + WE'VE GOT YOU
────────────────────────────────────────── */
.kids-venue-wgot {
  background: #ED76A9;
  padding: 2.5rem 2.5rem 0;
}

.kids-venue__line {
  max-width: 1100px;
  margin: 0 auto;
  display: block;
  font-size: 1rem;
  color: #ffffff;
  line-height: 1.6;
}
.kids-venue__line--bold {
  font-weight: 800;
  font-size: 1.05rem;
}

.kids-wgot {
  text-align: center;
  padding: 1rem 2rem 2.5rem;
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 900;
  color: #ffffff;
  line-height: 1.1;
}
.kids-wgot .diamond { color: #ffffff; margin-right: 0.2em; }
.kids-wgot__you {
  display: block;
  color: #2E1B4E;
  font-style: italic;
}

/* ──────────────────────────────────────────
   GALLERY SLIDER
────────────────────────────────────────── */
.kids-gallery {
  background: #F7F4FF;
  padding: 2rem 0 3rem;
}

.kids-gallery .section-title {
  padding: 0 2.5rem;
  margin-bottom: 1.5rem;
}

.kids-gallery__slider {
  position: relative;
  overflow: hidden;
}

.kids-gallery__track {
  display: flex;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

.kids-gallery__slide {
  flex: 0 0 calc(33.333% - 0.67rem);
  margin-right: 1rem;
  border-radius: 10px;
  overflow: hidden;
  height: 280px;
}

.kids-gallery__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}
.kids-gallery__slide:hover img { transform: scale(1.04); }

.kids-gallery__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.9);
  border: none;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: background 0.2s, transform 0.2s;
  box-shadow: 0 2px 12px rgba(0,0,0,0.15);
}
.kids-gallery__btn:hover { background: #fff; transform: translateY(-50%) scale(1.08); }
.kids-gallery__btn--prev { left: 1rem; }
.kids-gallery__btn--next { right: 1rem; }

.kids-gallery__dots {
  display: flex;
  justify-content: center;
  gap: 0.4rem;
  margin-top: 1rem;
  padding: 0 2.5rem;
}
.kids-gallery__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(0,0,0,0.2);
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  padding: 0;
}
.kids-gallery__dot.active {
  background: #1a0533;
  transform: scale(1.2);
}

@media (max-width: 700px) {
  .kids-gallery__slide {
    flex: 0 0 calc(100% - 1rem);
    height: 240px;
  }
}

/* ──────────────────────────────────────────
   WORKSHOPS
────────────────────────────────────────── */
.kids-workshops,
.workshops {
  background: linear-gradient(180deg, #2E1B4E 0%, #6A3EB4 100%);
  max-width: 100%;
  padding: 2rem 2.5rem 4rem;
}
.kids-workshops .section-title,
.workshops .section-title { color: #ffffff; }
.workshops .workshop-card { color: #ffffff; }
.workshops .workshop-card__body h3 { color: #ffffff; }
.workshops .workshop-card__body p  { color: rgba(255,255,255,0.8); }
.workshops .workshop-card:first-child { border-top: 5px solid #fbbf24; }
.workshops .workshop-card:last-child  { border-top: 5px solid #ED76A9; }
.workshops .tag { background: rgba(255,255,255,0.15); color: #ffffff; }
.workshops .btn--outline { border-color: #ffffff; color: #ffffff; }
.workshops .btn--outline:hover { background: #ffffff; color: #7c3aed; }

/* ──────────────────────────────────────────
   QUALITY GUARANTEE — zigzag
────────────────────────────────────────── */
.kids-quality {
  background: #EDE6F7;
  padding: 3rem 2.5rem 0;
  position: relative;
  overflow: hidden;
}

.kids-quality__layout {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  gap: 2rem;
}

.kids-quality__left {
  flex: 1;
  min-width: 0;
  padding-bottom: 3rem;
}

.kids-quality__title {
  text-align: left !important;
  margin-bottom: 2rem;
}

.kids-quality__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.4rem;
  align-items: start;
}

.why-col--left  { align-self: start; }
.why-col--right { align-self: start; margin-top: 3.5rem; }

.kids-quality__girl {
  flex-shrink: 0;
  width: 260px;
  align-self: flex-end;
}
.kids-quality__girl img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 8px 24px rgba(0,0,0,0.12));
}

.kids-qzag-card {
  border-radius: 10px;
  padding: 1.5rem 1.3rem;
  position: relative;
  transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.3s ease;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.25);
  box-shadow: 0 8px 32px rgba(46,27,78,0.18), inset 0 1px 0 rgba(255,255,255,0.2);
  width: 100%;
  min-height: 260px;
}
.kids-qzag-card:hover {
  transform: scale(1.05) translateY(-4px);
  box-shadow: 0 20px 48px rgba(46,27,78,0.28), inset 0 1px 0 rgba(255,255,255,0.3);
}

.kids-qzag--pink   { background: linear-gradient(180deg, #5B8FD4 0%, #A8C8F0 100%); }
.kids-qzag--teal   { background: linear-gradient(180deg, #C94040 0%, #F0908A 100%); }
.kids-qzag--orange { background: linear-gradient(180deg, #D4732A 0%, #F0B87A 100%); }

.kids-qzag__icon {
  font-size: 64px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  line-height: 1;
  margin-bottom: 0.8rem;
}
.kids-qzag__icon--right { justify-content: flex-end; }

.kids-qzag-card h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 2rem;
  font-weight: 900;
  color: #2E1B4E;
  line-height: 1.1;
  margin-bottom: 0.45rem;
}
.kids-qzag-card p {
  font-size: 0.88rem;
  line-height: 1.55;
  color: #2E1B4E;
}

/* ──────────────────────────────────────────
   RESPONSIVE
────────────────────────────────────────── */
@media (max-width: 900px) {
  .kids-hero { padding: 0 0 2rem; }
  .kids-hero__inner {
    flex-direction: column;
    align-items: stretch;
    padding: 0;
    gap: 0;
  }
  .kids-hero__img {
    order: -1;
    width: 100%;
    margin-top: 0;
    position: static;
    align-self: stretch;
    aspect-ratio: 1120 / 840;
    overflow: hidden;
  }
  .kids-hero__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
  }
  .kids-hero__bubbles {
    align-items: flex-start;
    width: 100%;
    padding: 0.8rem 1.2rem 0;
    gap: 0.8rem;
  }
  .kids-bubble::after {
    top: -13px;
    right: auto;
    left: 22px;
    transform: none;
    border: 8px solid transparent;
    border-bottom-color: rgba(255,255,255,0.15);
    border-left-color: transparent;
    border-top: none;
  }
  .kb--2 { align-self: flex-start; margin-left: 0; }
  .kb--3 { align-self: flex-start; }
  .kids-how__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }
  .kids-how__img { width: 180px; align-self: center; }
  .kids-quality__layout {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }
  .kids-quality__left { width: 100%; padding-bottom: 0; order: 1; }
  .kids-quality__girl { width: 200px; align-self: center; order: 2; }
  .kids-quality__title { text-align: center !important; }
  .kids-quality__grid  { grid-template-columns: 1fr; }
  .why-col--right { margin-top: 0; }
}

@media (max-width: 600px) {
  .kids-how { padding: 2rem 1.2rem; }
  .kids-venue-wgot, .kids-gallery, .kids-quality {
    padding-left: 1.2rem;
    padding-right: 1.2rem;
  }
  .kids-quality { padding: 2rem 1.2rem 0; }
}
