/* =====================================================
   BNI Plus Collection — site-wide stylesheet
   One file, used by every page. Edit here to change the
   whole site at once — no per-page overrides needed.
   ===================================================== */

:root {
  --red: #CF2030;
  --red-hover: #C8C8C8;
  --grey-active: #64666A;
  --text: #222222;
  --max-width: 960px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0 1rem;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  line-height: 1.5;
}

a {
  color: var(--red);
}

a:hover {
  color: var(--grey-active);
}

/* -----------------------------------------------------
   NAV — pill buttons, centered, wraps to 2 rows on desktop
   ----------------------------------------------------- */

.site-nav {
  max-width: var(--max-width);
  margin: 1rem auto 0.5rem;
}

.site-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem 1rem;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 200px;
  padding: 0.55rem 1rem;
  background-color: var(--red);
  color: #ffffff;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.3px;
  text-align: center;
}

.site-nav a:hover {
  background-color: var(--red-hover);
  color: #ffffff;
}

.site-nav a.active {
  background-color: var(--grey-active);
  color: #ffffff;
}

@media (max-width: 700px) {
  .site-nav a {
    width: 100%;
    max-width: 320px;
  }
}

/* -----------------------------------------------------
   PAGE HEADER — logo + "The BNI Plus Collection" + intro
   ----------------------------------------------------- */

.page-header {
  max-width: var(--max-width);
  margin: 0.4rem auto 0;
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.page-header .logo {
  width: 220px;
  height: auto;
  flex-shrink: 0;
}

.page-header .intro h2 {
  color: var(--red);
  font-size: 1.5rem;
  line-height: 1.2;
  margin: 0 0 0.3rem 0;
  font-weight: 700;
}

.page-header .intro p {
  margin: 0 0 0.2rem 0;
  font-size: 0.95rem;
  line-height: 1.4;
}

/* -----------------------------------------------------
   MAIN CONTENT
   ----------------------------------------------------- */

main {
  max-width: var(--max-width);
  margin: 0 auto;
  padding-bottom: 2rem;
}

main h1 {
  color: var(--red);
  text-align: center;
  font-size: 1.8rem;
  margin: 0.75rem 0 0.25rem;
}

.section {
  margin: 1.75rem 0;
}

.section h3 {
  text-align: center;
  font-weight: 600;
  font-size: 1.15rem;
  margin: 0 0 0.5rem;
}

.section p {
  margin: 0 0 0.6rem;
}

.section ul {
  margin: 0 0 0.6rem;
  padding-left: 1.4rem;
}

.section li {
  margin-bottom: 0.25rem;
}

.strike {
  text-decoration: line-through;
  color: #888888;
}

.big-number {
  font-weight: 700;
  font-size: 1.2rem;
  text-align: center;
}

.centered {
  text-align: center;
}

/* -----------------------------------------------------
   VIDEO EMBED — responsive 16:9 wrapper
   ----------------------------------------------------- */

.video-caption {
  text-align: center;
  font-weight: 600;
  margin: 0 0 0.5rem;
}

.video-wrap {
  position: relative;
  width: 100%;
  max-width: 720px;
  margin: 0 auto 1rem;
  padding-bottom: 40.5%; /* 720 * 9/16, matches max-width */
  height: 0;
  overflow: hidden;
  background: #000;
}

.video-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* -----------------------------------------------------
   FOOTER
   ----------------------------------------------------- */

footer {
  max-width: var(--max-width);
  margin: 2rem auto 1.5rem;
  text-align: center;
  font-size: 0.85rem;
  color: #555555;
}
