/* Birthday package page — screen (dark, image-rich) + print (light brochure).
   Ctrl/Cmd-P on this page produces the shareable PDF deck. */

body {
  margin: 0;
  background: var(--ink);
  color: #fff;
  font-family: "Poppins", sans-serif;
}

.bd-body { display: block; }

/* ---------- shared bits ---------- */
.bd-eyebrow {
  display: inline-block;
  background: var(--pink);
  color: #fff;
  font-family: "Fredoka", sans-serif;
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: 999px;
  margin-bottom: 1rem;
}

.bd-h2 {
  font-family: "Fredoka", sans-serif;
  font-weight: 700;
  font-size: clamp(1.9rem, 4.4vw, 3rem);
  line-height: 1.05;
  text-transform: uppercase;
  margin: 0 0 0.8rem;
  color: #fff;
}
.bd-h2 em { font-style: normal; color: var(--cyan); }

.bd-lead {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.98rem;
  line-height: 1.6;
  margin: 0;
  max-width: 62ch;
}

.bd-chip {
  display: inline-block;
  border: 1.5px solid var(--cyan);
  color: #fff;
  border-radius: 999px;
  padding: 0.35rem 0.9rem;
  font-size: 0.78rem;
  font-weight: 600;
}
.bd-chip--yellow { background: var(--yellow); color: var(--ink); border-color: var(--yellow); }

.bd-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: "Fredoka", sans-serif;
  font-weight: 700;
  font-size: 0.92rem;
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  text-decoration: none;
  transition: transform 0.18s ease;
}
.bd-btn:hover { transform: translateY(-2px); }
.bd-btn--pink { background: var(--pink); color: #fff; border: 2px solid var(--cyan); }
.bd-btn--ghost { background: transparent; color: #fff; border: 2px solid rgba(255, 255, 255, 0.4); }
.bd-btn--yellow { background: var(--yellow); color: var(--ink); border: 2px solid var(--ink); }

/* tick lists */
.bd-ticks { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 0.6rem; }
.bd-ticks li {
  position: relative;
  padding-left: 1.7rem;
  font-size: 0.95rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.9);
}
.bd-ticks li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--yellow);
  font-weight: 700;
}
.bd-ticks--sm li { font-size: 0.87rem; padding-left: 1.4rem; }
.bd-ticks--cyan li::before { color: var(--cyan); }

/* ---------- hero ---------- */
.bd-hero {
  position: relative;
  min-height: 78vh;
  display: flex;
  align-items: flex-end;
  padding: 8rem 5vw 3.5rem;
  overflow: hidden;
}
.bd-hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.bd-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.92) 12%, rgba(0, 0, 0, 0.6) 55%, rgba(0, 0, 0, 0.35));
}
.bd-hero__inner { position: relative; z-index: 2; max-width: 1320px; margin: 0 auto; width: 100%; }
.bd-hero__kicker {
  display: inline-block;
  background: var(--yellow);
  color: var(--ink);
  font-family: "Fredoka", sans-serif;
  font-weight: 700;
  font-size: 0.74rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: 999px;
  margin-bottom: 1.1rem;
}
.bd-hero__title {
  font-family: "Fredoka", sans-serif;
  font-weight: 700;
  font-size: clamp(2.4rem, 7vw, 5rem);
  line-height: 1;
  text-transform: uppercase;
  margin: 0 0 1rem;
}
.bd-hero__title em { font-style: normal; color: var(--pink); }
.bd-hero__sub { color: rgba(255, 255, 255, 0.85); max-width: 60ch; line-height: 1.6; margin: 0 0 1.4rem; }
.bd-hero__meta { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-bottom: 1.6rem; }
.bd-hero__ctas { display: flex; flex-wrap: wrap; gap: 0.8rem; }

/* ---------- sections ---------- */
.bd-section { padding: 4.5rem 5vw; max-width: 1320px; margin: 0 auto; }
.bd-section--alt { background: #101014; max-width: none; }
.bd-section--alt > * { max-width: 1320px; margin-left: auto; margin-right: auto; }
.bd-section__head { margin-bottom: 2.4rem; }
.bd-note { color: rgba(255, 255, 255, 0.5); font-size: 0.82rem; margin-top: 1.6rem; }

/* includes */
.bd-includes { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; align-items: center; }
.bd-includes__media { margin: 0; }
.bd-includes__media img { width: 100%; border-radius: 18px; border: 2px solid var(--cyan); display: block; }
.bd-includes__media figcaption { color: rgba(255, 255, 255, 0.55); font-size: 0.8rem; margin-top: 0.6rem; }

/* packages */
.bd-packages { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; align-items: start; }
.bd-pkg {
  position: relative;
  background: #16161b;
  border: 2px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.bd-pkg--popular { border-color: var(--yellow); }
.bd-pkg__flag {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 3;
  background: var(--yellow);
  color: var(--ink);
  font-family: "Fredoka", sans-serif;
  font-weight: 700;
  font-size: 0.66rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
}
.bd-pkg__media { position: relative; }
.bd-pkg__media img { width: 100%; height: 190px; object-fit: cover; display: block; }
.bd-pkg__price {
  position: absolute;
  left: 14px;
  bottom: -18px;
  background: var(--pink);
  color: #fff;
  font-family: "Fredoka", sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  border: 2px solid var(--cyan);
}
.bd-pkg__price small { font-family: "Poppins", sans-serif; font-size: 0.65rem; font-weight: 500; margin-left: 0.25rem; }
.bd-pkg__body { padding: 2rem 1.3rem 1.5rem; display: flex; flex-direction: column; gap: 0.5rem; flex: 1; }
.bd-pkg__name {
  font-family: "Fredoka", sans-serif;
  font-weight: 700;
  font-size: 1.6rem;
  text-transform: uppercase;
  margin: 0;
}
.bd-pkg__tag { color: rgba(255, 255, 255, 0.7); font-size: 0.85rem; line-height: 1.45; margin: 0 0 0.5rem; }
.bd-pkg__label {
  font-family: "Fredoka", sans-serif;
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cyan);
  margin: 0.7rem 0 0.1rem;
}
.bd-pkg__label span { color: rgba(255, 255, 255, 0.45); text-transform: none; letter-spacing: 0; }
.bd-pkg__cta { margin-top: auto; justify-content: center; }

/* decor add-on */
.bd-decor { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; align-items: center; }
.bd-decor__media { margin: 0; }
.bd-decor__media img { width: 100%; border-radius: 18px; border: 2px solid var(--pink); display: block; }
.bd-decor__price {
  font-family: "Fredoka", sans-serif;
  font-size: 1.4rem;
  margin-top: 1.2rem;
  color: rgba(255, 255, 255, 0.75);
}
.bd-decor__price strong { color: var(--yellow); font-size: 2rem; }

/* entertainment add-ons */
.bd-addons { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 0.7rem; }
.bd-addons li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  background: #16161b;
  border: 1.5px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: 0.85rem 1.1rem;
  font-size: 0.9rem;
}
.bd-addons li b { color: var(--yellow); font-family: "Fredoka", sans-serif; white-space: nowrap; }

/* itinerary */
.bd-itin { display: grid; grid-template-columns: 1.15fr 1fr; gap: 2.5rem; align-items: start; }
.bd-flow { list-style: none; margin: 0; padding: 0; position: relative; }
.bd-flow::before { content: ""; position: absolute; left: 7px; top: 8px; bottom: 8px; width: 2px; background: rgba(255, 255, 255, 0.15); }
.bd-flow li { position: relative; padding-left: 2rem; padding-bottom: 1.5rem; }
.bd-flow li:last-child { padding-bottom: 0; }
.bd-flow__dot { position: absolute; left: 0; top: 4px; width: 16px; height: 16px; border-radius: 50%; background: var(--pink); border: 3px solid var(--ink); }
.bd-flow strong { display: block; font-family: "Fredoka", sans-serif; font-size: 1.02rem; margin-bottom: 0.15rem; }
.bd-flow span:not(.bd-flow__dot) { color: rgba(255, 255, 255, 0.6); font-size: 0.85rem; }

.bd-slots__title { font-family: "Fredoka", sans-serif; font-size: 1.05rem; text-transform: uppercase; letter-spacing: 0.05em; margin: 0 0 0.9rem; }
.bd-slots__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 0.6rem; }
.bd-slots__grid span {
  background: rgba(0, 172, 220, 0.14);
  border: 1.5px solid var(--cyan);
  border-radius: 999px;
  padding: 0.5rem 0.9rem;
  font-size: 0.84rem;
  font-weight: 600;
  text-align: center;
}

/* activities */
.bd-activities { display: grid; grid-template-columns: 1.3fr 1fr; gap: 2.5rem; align-items: center; }
.bd-tags { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 0.6rem; }
.bd-tags li {
  background: #16161b;
  border: 1.5px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
  font-weight: 500;
}
.bd-tags .bd-tags--more { border-color: var(--pink); color: var(--pink); font-weight: 700; }
.bd-activities__media { margin: 0; }
.bd-activities__media img { width: 100%; border-radius: 18px; border: 2px solid var(--yellow); display: block; }

/* CTA band */
.bd-cta { position: relative; padding: 5rem 5vw; text-align: center; overflow: hidden; }
.bd-cta__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.bd-cta::after { content: ""; position: absolute; inset: 0; z-index: 1; background: rgba(0, 0, 0, 0.72); }
.bd-cta__inner { position: relative; z-index: 2; max-width: 720px; margin: 0 auto; }
.bd-cta .bd-lead { margin: 0 auto 1.6rem; }
.bd-cta .bd-hero__ctas { justify-content: center; }

/* terms */
.bd-terms__list { list-style: none; margin: 0; padding: 0; columns: 2; column-gap: 2.5rem; }
.bd-terms__list li {
  break-inside: avoid;
  position: relative;
  padding-left: 1.1rem;
  margin-bottom: 0.7rem;
  font-size: 0.85rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.72);
}
.bd-terms__list li::before { content: "•"; position: absolute; left: 0; color: var(--pink); }

/* contact */
.bd-contact__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 1.2rem; }
.bd-contact__grid > div { background: #16161b; border: 1.5px solid rgba(255, 255, 255, 0.12); border-radius: 14px; padding: 1rem 1.1rem; }
.bd-contact__grid strong {
  display: block;
  font-family: "Fredoka", sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 0.3rem;
}
.bd-contact__grid a, .bd-contact__grid span { color: #fff; text-decoration: none; font-size: 0.92rem; }
.bd-contact__grid a:hover { color: var(--yellow); }

/* ---------- responsive ---------- */
@media (max-width: 980px) {
  .bd-packages { grid-template-columns: 1fr; }
  .bd-includes, .bd-decor, .bd-itin, .bd-activities { grid-template-columns: 1fr; gap: 1.8rem; }
  .bd-decor__media { order: -1; }
  .bd-terms__list { columns: 1; }
}
@media (max-width: 620px) {
  .bd-hero { min-height: 70vh; padding: 7rem 5vw 2.5rem; }
  .bd-section { padding: 3.2rem 5vw; }
  .bd-addons { grid-template-columns: 1fr; }
}

/* ============================================================
   PRINT — same page becomes the share-ready brochure (Ctrl/Cmd-P)
   ============================================================ */
@media print {
  @page { size: A4; margin: 14mm 12mm; }

  html, body {
    background: #fff !important;
    color: #111 !important;
    font-size: 10.5pt;
  }
  /* keep the brand colours in the printed deck */
  * { -webkit-print-color-adjust: exact !important; print-color-adjust: exact !important; }

  /* chrome that shouldn't print */
  .nav, .nav-backdrop, .site-footer, .bd-cta, .bd-btn, .bd-hero__ctas, .bd-pkg__cta { display: none !important; }

  /* hero.css tiles an SVG feTurbulence grain over body::before — the print
     renderer rasterises it per page and it dominated the PDF size (24MB). */
  body::before, body::after { display: none !important; content: none !important; background: none !important; }

  .bd-hero {
    min-height: auto;
    padding: 0 0 10mm;
    display: block;
    page-break-after: always;
  }
  .bd-hero__bg { position: relative; height: 78mm; border-radius: 6px; }
  .bd-hero::after { display: none; }
  .bd-hero__title { color: #111; font-size: 30pt; margin-top: 6mm; }
  .bd-hero__title em { color: #ee2a7b; }
  .bd-hero__sub, .bd-lead { color: #444 !important; }
  .bd-hero__kicker { background: #ffde59; color: #111; }

  .bd-section, .bd-section--alt { background: #fff !important; padding: 0 0 8mm; max-width: none; page-break-inside: avoid; }
  .bd-section + .bd-section { page-break-before: always; }
  .bd-h2 { color: #111 !important; font-size: 19pt; }
  .bd-h2 em { color: #00acdc !important; }
  .bd-eyebrow { background: #ee2a7b !important; color: #fff !important; }

  .bd-ticks li, .bd-terms__list li, .bd-addons li, .bd-flow span:not(.bd-flow__dot) { color: #222 !important; }
  .bd-ticks li::before { color: #0a6b82 !important; }

  /* --- dark-theme colours that are unreadable once the page goes white --- */
  /* brand cyan is only 2.65:1 on white — darken it for print */
  .bd-h2 em, .bd-pkg__label, .bd-contact__grid strong, .bd-slots__title { color: #0a6b82 !important; }
  /* these were white-on-white, i.e. completely invisible */
  .bd-chip { color: #111 !important; border-color: #888 !important; }
  .bd-chip--yellow { background: #ffde59 !important; color: #111 !important; border-color: #e2c33f !important; }
  .bd-includes__media figcaption,
  .bd-note,
  .bd-pkg__label span,
  .bd-decor__price { color: #555 !important; }
  /* yellow on white is 1.33:1 — use the deep pink used elsewhere in print */
  .bd-decor__price strong { color: #c2185b !important; }
  .bd-flow strong, .bd-hero__meta, .bd-contact__grid { color: #111 !important; }

  /* packages side by side on one page */
  .bd-packages { grid-template-columns: repeat(3, 1fr) !important; gap: 5mm; page-break-inside: avoid; }
  .bd-pkg { background: #fff !important; border: 1pt solid #ccc !important; page-break-inside: avoid; }
  .bd-pkg--popular { border-color: #ffde59 !important; border-width: 2pt !important; }
  .bd-pkg__media img { height: 40mm; }
  .bd-pkg__name { color: #111; }
  .bd-pkg__tag { color: #555 !important; }
  .bd-pkg__label { color: #0a6b82 !important; }
  .bd-pkg__price { background: #ee2a7b !important; color: #fff !important; font-size: 14pt; }

  .bd-addons li, .bd-contact__grid > div, .bd-tags li {
    background: #fff !important;
    border: 0.8pt solid #ccc !important;
    color: #222 !important;
  }
  .bd-addons li b { color: #c2185b !important; }
  .bd-slots__grid span { background: #fff !important; border: 0.8pt solid #00acdc !important; color: #111 !important; }
  .bd-contact__grid a, .bd-contact__grid span { color: #111 !important; }
  .bd-terms__list { columns: 2; }

  .bd-includes__media img, .bd-decor__media img, .bd-activities__media img { border-width: 1pt !important; max-height: 70mm; object-fit: cover; }

  a[href]::after { content: ""; } /* don't print raw URLs */
}
