/* =========================================================================
   HUSHABOO — "DREAMY PASTEL" DESIGN SYSTEM
   Premium children's sleep brand. Mobile-first. Used across all pages.
   ========================================================================= */

/* ---- Fonts (Baloo 2 for headings, Nunito for body) ---- */
@import url('https://fonts.googleapis.com/css2?family=Baloo+2:wght@500;600;700;800&family=Nunito:wght@400;500;600;700;800&display=swap');

:root {
  /* Brand palette */
  --blush:       #FDE8E4;
  --cream:       #FDF6EE;
  --coral:       #FF7A59;   /* primary CTA */
  --coral-dark:  #F2603C;
  --navy:        #1E2A5E;   /* headings */
  --slate:       #5B6472;   /* body text */
  --slate-soft:  #8A93A3;

  /* Accents */
  --baby-blue:   #BFE3F5;
  --lavender:    #D9CFF5;
  --mint:        #CBEFDD;
  --butter:      #FFE9B8;

  --white:       #FFFFFF;

  /* Radii */
  --r-sm: 12px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-pill: 999px;

  /* Shadows — very soft, large */
  --shadow-sm: 0 6px 18px rgba(30, 42, 94, 0.06);
  --shadow-md: 0 14px 40px rgba(30, 42, 94, 0.08);
  --shadow-lg: 0 24px 60px rgba(30, 42, 94, 0.10);
  --shadow-coral: 0 12px 26px rgba(255, 122, 89, 0.35);

  --maxw: 1120px;
}

/* ---- Reset-ish ---- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Nunito', system-ui, -apple-system, sans-serif;
  color: var(--slate);
  font-size: 17px;
  line-height: 1.65;
  /* soft vertical gradient blush -> cream */
  background: linear-gradient(180deg, var(--blush) 0%, #FDEFE9 22%, var(--cream) 60%, var(--cream) 100%);
  background-attachment: fixed;
  min-height: 100vh;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Baloo 2', 'Nunito', sans-serif;
  color: var(--navy);
  line-height: 1.15;
  margin: 0 0 .5em;
  font-weight: 800;
}
h1 { font-size: clamp(2rem, 6vw, 3.4rem); letter-spacing: -0.5px; }
h2 { font-size: clamp(1.6rem, 4.4vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 3vw, 1.5rem); }
p  { margin: 0 0 1rem; }
a  { color: var(--coral-dark); text-decoration: none; }

img { max-width: 100%; display: block; }

/* =========================================================================
   Top multicolor pastel gradient bar (fixed, ~6px)
   ========================================================================= */
.topbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 6px;
  z-index: 1000;
  background: linear-gradient(90deg,
    #A6D4FF 0%, #BFE3F5 18%, #D9CFF5 40%,
    #F5C6E0 60%, #FFB3A0 80%, #FFD59E 100%);
}

/* =========================================================================
   Layout
   ========================================================================= */
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 20px; }
.section { padding: 56px 0; position: relative; }
.section--tight { padding: 36px 0; }
.center { text-align: center; }
.muted { color: var(--slate-soft); }
.kicker {
  display: inline-block;
  font-family: 'Baloo 2', sans-serif;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: .78rem;
  color: var(--coral-dark);
  margin-bottom: 10px;
}

/* =========================================================================
   Buttons — coral pill (primary) / white pill w/ navy border (secondary)
   ========================================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5em;
  font-family: 'Baloo 2', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  padding: 15px 30px;
  border-radius: var(--r-pill);
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  text-align: center;
  line-height: 1;
}
.btn:active { transform: translateY(1px) scale(.99); }

.btn--primary {
  background: var(--coral);
  color: #fff;
  box-shadow: var(--shadow-coral);
}
.btn--primary:hover { background: var(--coral-dark); transform: translateY(-2px); }

.btn--secondary {
  background: #fff;
  color: var(--navy);
  border-color: var(--navy);
  box-shadow: var(--shadow-sm);
}
.btn--secondary:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }

.btn--block { width: 100%; }
.btn--lg { font-size: 1.15rem; padding: 17px 36px; }

/* =========================================================================
   Badge chips (pill)
   ========================================================================= */
.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #fff;
  color: var(--navy);
  font-weight: 700;
  font-size: .9rem;
  padding: 9px 16px;
  border-radius: var(--r-pill);
  box-shadow: var(--shadow-sm);
  white-space: nowrap;
}
.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

/* =========================================================================
   Cards
   ========================================================================= */
.card {
  background: #fff;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-md);
  padding: 26px;
}
.card--soft { box-shadow: var(--shadow-sm); }

/* =========================================================================
   Decorative floating shapes (clouds / stars / butterflies)
   Absolutely positioned, subtle, non-interactive.
   ========================================================================= */
.decor { position: absolute; pointer-events: none; opacity: .8; z-index: 0; }
.decor svg { display: block; }
@keyframes floaty {
  0%,100% { transform: translateY(0); }
  50%     { transform: translateY(-14px); }
}
.decor--float { animation: floaty 7s ease-in-out infinite; }
.decor--slow  { animation: floaty 11s ease-in-out infinite; }

/* Keep content above decorations */
.wrap, .section > .wrap { position: relative; z-index: 1; }

/* =========================================================================
   Coming-soon (Phase 1) hero
   ========================================================================= */
.coming {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px 60px;
  position: relative;
}
.coming__inner { max-width: 640px; position: relative; z-index: 1; }
.logo-placeholder {
  width: 132px; height: 132px;
  margin: 0 auto 24px;
  border-radius: 32px;
  background: linear-gradient(135deg, var(--baby-blue), var(--lavender));
  display: flex; align-items: center; justify-content: center;
  font-family: 'Baloo 2', sans-serif; font-weight: 800; font-size: 2rem;
  color: var(--navy);
  box-shadow: var(--shadow-md);
}
.logo-img { width: 132px; height: auto; margin: 0 auto 24px; }
.coming h1 { margin-bottom: .35em; }
.coming .sub { font-size: 1.25rem; color: var(--slate); margin-bottom: 2rem; }
.coming .chip-row { margin-top: 28px; }

/* Reusable image-placeholder block (used until real assets are dropped in) */
.img-ph {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: var(--r-lg);
  background:
    radial-gradient(circle at 30% 30%, rgba(255,255,255,.7), transparent 60%),
    linear-gradient(135deg, var(--baby-blue), var(--mint) 55%, var(--butter));
  display: flex; align-items: center; justify-content: center;
  color: var(--navy); font-family: 'Baloo 2', sans-serif; font-weight: 700;
  box-shadow: var(--shadow-sm);
  text-align: center; padding: 12px;
}

/* =========================================================================
   Responsive
   ========================================================================= */
@media (max-width: 640px) {
  body { font-size: 16px; }
  .section { padding: 40px 0; }
  .btn { width: 100%; }
  .coming .btn { max-width: 320px; }
}
