/* ============================================
   HERO DUAL-IMAGE: Divya + Kid Premium Layout
   ============================================ */

.hero__image--duo {
  position: relative;
  flex: 1;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  min-height: 560px;
  padding-top: 20px;
}

/* Decorative background blobs */
.hero__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
  z-index: 0;
}
.hero__blob--gold {
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(255,215,0,0.25) 0%, transparent 70%);
  top: 0;
  right: -40px;
}
.hero__blob--soft {
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, rgba(30,58,95,0.1) 0%, transparent 70%);
  bottom: 80px;
  left: -20px;
}

/* === DIVYA — Large Primary Portrait === */
.hero__divya-wrap {
  position: relative;
  z-index: 2;
  width: 360px;
  flex-shrink: 0;
}

.hero__divya-img {
  width: 360px;
  height: 500px;
  object-fit: cover;
  object-position: 50% 15%;
  border-radius: 28px 28px 100px 28px;
  box-shadow: 0 32px 80px rgba(0,0,0,0.16), 0 0 0 6px rgba(255,215,0,0.35);
  display: block;
  transition: transform 0.6s var(--ease-out);
}

.hero__divya-wrap:hover .hero__divya-img {
  transform: scale(1.02) translateY(-4px);
}

/* Divya name badge */
.hero__divya-badge {
  position: absolute;
  top: 10px;
  left: -140px;
  background: var(--cz-white);
  border-radius: 100px;
  padding: 10px 24px 10px 10px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 16px 45px rgba(0,0,0,0.2);
  white-space: nowrap;
  z-index: 10;
}

.hero__divya-badge-avatar {
  width: 48px;
  height: 48px;
  background: var(--cz-yellow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--cz-charcoal);
  flex-shrink: 0;
}

.hero__divya-badge-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--cz-charcoal);
  line-height: 1.2;
}

.hero__divya-badge-role {
  font-size: 0.75rem;
  color: var(--cz-text-light);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* Remove old founder float since we now have the badge */
.hero__founder-float {
  display: none !important;
}

/* === KID — Smaller accent card overlapping bottom-right === */
.hero__kid-overlap {
  position: absolute;
  bottom: -40px;
  right: -50px;
  z-index: 3;
  animation: float 8s ease-in-out infinite;
}

.hero__kid-img {
  width: 240px;
  height: 310px;
  object-fit: cover;
  object-position: center top;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.22);
  border: 5px solid var(--cz-white);
  display: block;
}

.hero__kid-tag {
  position: absolute;
  bottom: -18px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--cz-charcoal);
  color: var(--cz-white);
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 100px;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 8px;
  letter-spacing: 0.04em;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.hero__kid-tag-dot {
  width: 8px;
  height: 8px;
  background: var(--cz-yellow);
  border-radius: 50%;
  display: inline-block;
  animation: pulse 2s infinite;
}

/* === Star Rating Chip === */
.hero__rating-chip {
  position: absolute;
  top: 30px;
  right: 10px;
  background: var(--cz-white);
  border-radius: 100px;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
  z-index: 4;
  animation: float 7s ease-in-out infinite 1s;
}

.hero__rating-stars {
  color: #FBBC05;
  font-size: 0.95rem;
  letter-spacing: 2px;
}

.hero__rating-text {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--cz-charcoal);
}

/* Responsive adjustments */
@media (max-width: 1200px) {
  .hero__divya-img {
    width: 320px;
    height: 440px;
    object-position: 50% 15%;
  }
  .hero__divya-wrap { width: 320px; }
  .hero__kid-overlap { right: -30px; bottom: -20px; }
  .hero__kid-img { width: 210px; height: 270px; }
}

@media (max-width: 900px) {
  .hero__image--duo {
    min-height: 480px;
    margin-top: 20px;
    justify-content: center;
  }
  .hero__divya-img { width: 280px; height: 380px; object-position: 50% 15%; border-radius: 20px 20px 60px 20px; }
  .hero__divya-wrap { width: 280px; }
  .hero__kid-overlap { right: 0px; bottom: -30px; }
  .hero__kid-img { width: 180px; height: 230px; }
  .hero__rating-chip { top: -20px; right: 20px; }
  .hero__divya-badge {
    top: auto;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
  }
}

@media (max-width: 500px) {
  .hero__image--duo {
    min-height: 420px;
    margin-top: 10px;
  }
  .hero__divya-img { width: 250px; height: 340px; object-position: 50% 15%; }
  .hero__divya-wrap { width: 250px; }

  /* On very small screens, fix the badge and kid overlapping perfectly */
  .hero__divya-badge {
    bottom: auto;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    padding: 8px 16px 8px 8px;
  }
  .hero__divya-badge-avatar { width: 36px; height: 36px; font-size: 0.8rem; }
  .hero__divya-badge-name { font-size: 0.85rem; }
  .hero__divya-badge-role { font-size: 0.65rem; }

  .hero__kid-overlap { right: -10px; bottom: -30px; }
  .hero__kid-img { width: 160px; height: 210px; border-width: 4px; }
  .hero__kid-tag { font-size: 0.7rem; bottom: -12px; padding: 6px 12px; }

  .hero__rating-chip { display: none; /* Hide on smallest screens to reduce clutter */ }
}
