/* ============================================================
   FATHER'S DAY — page-specific styles
   Loads after celebrate.css, host-event.css and party-packages.css;
   tokens come from colors_and_type.css, bands and type from home.css.
   ============================================================ */

/* Bands flow into each other without divider lines on this page */
.hr-band + .hr-band { border-top: 0; }

/* Tall hero, short of full screen so the intro band peeks above the fold */
.hr-subhero--tall { min-height: 560px; height: 82svh; }

/* Hero CTA chip */
.hr-herocta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 26px; }
.hr-herocta__btn {
  display: inline-block;
  font-family: var(--rm-font-ui);
  font-size: 14px;
  letter-spacing: 0.04em;
  text-decoration: none;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 999px;
  padding: 12px 24px;
  transition: background .2s, color .2s;
}
.hr-herocta__btn:hover { background: rgba(255, 255, 255, 0.16); color: #fff; }

/* Promo-code line under the price */
.hr-pkg__code { font-family: var(--rm-font-ui); font-size: 13px; letter-spacing: 0.02em; color: var(--rm-text-light, #96999F); margin: 2px 0 0; }
.hr-pkg__code strong { color: var(--accent, #B5462E); letter-spacing: 0.06em; }

/* Struck-through pre-promo price and the save pill on package cards */
.hr-was { text-decoration: line-through; color: var(--rm-text-light, #96999F); font-weight: 400; margin-right: 10px; }
.hr-save {
  display: inline-block;
  margin-left: 10px;
  vertical-align: middle;
  font-family: var(--rm-font-ui);
  font-size: 11.5px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: #fff;
  background: var(--accent, #B5462E);
  border-radius: 999px;
  padding: 5px 12px;
}

/* Cross-sell note under the package cards */
.hr-note { text-align: center; font-family: var(--rm-font-body); font-size: 16px; color: var(--rm-text-light, #96999F); margin: 34px 0 0; }

/* Three-step how-it-works grid (host-event.css defaults to four) */
.hr-steps--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
@media (max-width: 980px) { .hr-steps--3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .hr-steps--3 { grid-template-columns: 1fr; } }

/* Closing CTA button row; ghost variant matches petting-zoo.css */
.hr-ctabtns { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; margin-top: 26px; }
.hr-btn--ghost {
  background: transparent;
  color: var(--rm-text);
  border: 1.5px solid var(--rm-border);
}
.hr-btn--ghost:hover { background: var(--rm-white); border-color: var(--accent); color: var(--accent); transform: translateY(-2px); }
