/* EasyPlanner — custom overrides (Tailwind used via CDN in HTML) */

/* Brand title — Gold Badge. To use the font, add the font file (e.g. .woff2) to the project
   and uncomment the @font-face below with the correct path.
@font-face {
  font-family: 'Gold Badge';
  src: url('/assets/fonts/GoldBadge.woff2') format('woff2');
  font-weight: normal;
  font-display: swap;
}
*/
.brand-title {
  font-family: 'Gold Badge', Georgia, 'Times New Roman', serif;
}

/* Scroll-spy active states (shared by Privacy Policy and Terms of Use) */
/* Active tab: same style on both pages (Terms of Use is source of truth) */
.page-privacy .nav-link.is-active,
.page-terms .nav-link.is-active {
  background-color: #2c2c2e;
  color: #fff;
}

/* Header navigation — active tab (same on all pages) */
.header-nav-link.nav-active {
  background-color: #2d2d2d;
}
.header-nav-link.nav-active:hover {
  background-color: #3d3d3d;
}

/* FAQ accordion — smooth expand/collapse */
.faq-card-answer {
  transition: height 0.3s ease-out;
}
.faq-card-chevron svg {
  transition: transform 0.2s ease;
}
