/* ======================================================
   site.css — 12.16.2025 — Texas Time (CST)
   Global Styles + Navigation + Banner + Footer
   GDRankin The Bee Place 3.0 — TBP-3.5 SandBox
   ====================================================== */

/* ======================================================
   GLOBAL
   ====================================================== */

html, body {
  background: #000;
  margin: 0;
  padding: 0;
}

.tbp-body {
  background: #000;
  color: #CFBA6F;
  font-family: Segoe UI, Arial, sans-serif;
}

/* ======================================================
   FOOTER (TYPOGRAPHY)
   ====================================================== */

.tbp-footer,
.tbp-footer-copy,
.tbp-footer-small,
.tbp-footer-happy {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  color: #F1D77B;
}

.tbp-footer-happy {
  font-size: 14px;
  font-weight: bold;
  margin-top: 6px;
  color: #F6EDCE;
}

.tbp-footer-copy {
  font-size: 12px;
  font-weight: bold;
  padding-top: 8px;
  color: #FFA346;
}

.tbp-footer-small {
  font-size: 10px;
  font-weight: normal;
  line-height: 1.4em;
  margin-top: 4px;
  color: #CFBA6F;
}

/* ======================================================
   BANNER
   ====================================================== */

.tbp-banner-wrap {
  width: 100%;
  text-align: center;
}

.tbp-banner-img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

@media (max-width: 640px) {
  .tbp-banner-wrap {
    margin-top: 40px;
  }
}

/* ======================================================
   FOOTER BAR IMAGE
   ====================================================== */

.tbp-footer-bar {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

/* ======================================================
   MISC OVERRIDES
   ====================================================== */

header,
footer {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

/* ======================================================
   FIXES: Nav offset / Banner
   ====================================================== */

/* Push banner below fixed navigation bar */
.tbp-banner,
.tbp-banner-wrap {
  margin-top: 66px !important;
}

/* ======================================================
   tbp-snippet-styles.css — Custom Snippet Tags and Colors (12.16.2025)
   GDRankin The Bee Place 3.0
   ====================================================== */

/* H1 - High Value e.g. Price & Titles */
.h1 {
  font-size: 2.5rem; /* 40px */
  font-weight: 700;
  color: #FFFFFF; /* White */
}

/* H2 - Snip Header/Block Title */
.h2 {
  font-size: 2.0rem; /* 32px */
  font-weight: 600;
  color: #FFD000; /* Gold */
}

/* H3 - Strong Subtitle - Hover Links */
.h3 {
  font-size: 1.5rem; /* 24px */
  font-weight: 600;
  color: #FFA346; /* Pollen */
}

/* SUB - Subtitle or smaller headers */
.sub {
  font-size: 1.125rem; /* 18px */
  font-weight: 400;
  color: #FFD000; /* Gold */
}

/* NOTE - Regular Snippet Text */
.note {
  font-size: 1.0rem; /* 16px */
  font-weight: 400;
  color: #FAF5E2; /* Butter */
}

/* OFFER - Special - Product Qty Pills */
.offer {
  font-size: 1.0rem; /* 16px */
  font-weight: 600;
  color: #87B0EC; /* Blue */
}

/* FAQ - Italic text */
.faq {
  font-size: 1.0rem; /* 16px */
  font-weight: 500;
  color: #F0ECB6; /* Honey */
  font-style: italic;
}

/* RELATED - Hyperlinks */
.related {
  font-size: 1.0rem; /* 16px */
  font-weight: 500;
  color: #EBD96F; /* Golden */
  text-decoration: underline;
}

/* LIST - List items and secondary lines */
.list {
  font-size: 1.0rem; /* 16px */
  font-weight: 400;
  color: #FFD000; /* Gold for primary lines */
}

.list .secondary {
  color: #F0ECB6; /* Honey for second lines in bullet list */
}

/* OLIST - Ordered list items */
.olist {
  font-size: 1.0rem; /* 16px */
  font-weight: 400;
  color: #FAF5E2; /* Butter */
}

/* Additional color classes */
.blue { color: #87B0EC; /* Blue */ }
.pollen { color: #FFA346; /* Pollen */ }
.gold { color: #FFD000; /* Gold */ }
.ogold { color: #EBD96F; /* Golden */ }
.honey { color: #F0ECB6; /* Honey */ }
.butter { color: #FAF5E2; /* Butter */ }
.white { color: #FFFFFF; /* White */ }
.yellow { color: #FDFC01; /* Yellow */ }
.wax { color: #CFBA6F; /* Wax */ }
.comb { color: #9B9375; /* Comb */ }
.black { color: #000000; /* Black */ }


/* ======================================================
   SNIPPETS / ACCORDION TAG STYLING — 01.14.2026 (CST)
   Matches parser output classes: tbp-note / tbp-faq etc.
   SAFE: scoped to .tbp-snippet-raw only
   ====================================================== */

/* wrapper created by parser */
.tbp-snippet-raw{
  margin: 10px 0;
}

/* ---------- H1 / H2 / H3 (from tag chart) ---------- */
/* Your parser currently outputs h2/h3 only */
.tbp-snippet-raw h1{
  font-size: 2.50rem;     /* 40px */
  font-weight: 700;
  color: #FFFFFF;         /* White */
  margin: 14px 0 8px;
}

.tbp-snippet-raw h2{
  font-size: 2.00rem;     /* 32px */
  font-weight: 600;
  color: #FFD000;         /* Gold */
  margin: 16px 0 10px;
}

.tbp-snippet-raw h3{
  font-size: 1.50rem;     /* 24px */
  font-weight: 600;
  color: #FFA346;         /* Pollen */
  margin: 12px 0 8px;
}

/* ---------- Base snippet paragraph text ---------- */
.tbp-snippet-raw p{
  margin: 0 0 12px;
  font-size: 1.00rem;     /* 16px */
  font-weight: 400;
  color: #FAF5E2;         /* Butter */
  line-height: 1.55;
}

/* ---------- SUB / NOTE / OFFER / FAQ / RELATED ---------- */
/* SUB = slightly larger than normal paragraph */
.tbp-snippet-raw .tbp-sub{
  font-size: 1.125rem;    /* 18px */
  font-weight: 400;
  color: #FFD000;         /* Gold */
}

/* NOTE = default snippet text (Butter) */
.tbp-snippet-raw .tbp-note{
  font-size: 1.00rem;
  font-weight: 400;
  color: #FAF5E2;         /* Butter */
}

/* OFFER = Blue highlight text */
.tbp-snippet-raw .tbp-offer{
  font-size: 1.00rem;
  font-weight: 600;
  color: #87B0EC;         /* Blue */
}

/* FAQ = italic Honey */
.tbp-snippet-raw .tbp-faq{
  font-size: 1.00rem;
  font-weight: 500;
  color: #F0ECB6;         /* Honey */
  font-style: italic;
}

/* RELATED = Golden link style */
.tbp-snippet-raw .tbp-related{
  font-size: 1.00rem;
  font-weight: 500;
  color: #EBD96F;         /* Golden */
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ---------- Links inside snippets ---------- */
.tbp-snippet-raw a{
  color: #FDFC01;         /* Yellow (active links) */
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ---------- LIST styling ---------- */
.tbp-snippet-raw ul.tbp-list{
  margin: 10px 0 14px 22px;
  padding: 0;
}

.tbp-snippet-raw .tbp-list-main{
  color: #FFD000;         /* Gold */
  font-size: 1.00rem;
  font-weight: 400;
  margin: 6px 0;
}

.tbp-snippet-raw .tbp-list-sub{
  color: #F0ECB6;         /* Honey */
  font-size: 1.00rem;
  font-weight: 400;
  margin: 6px 0;
  font-style: italic;
}

/* ======================================================
   END OF FILE: site.css
   ====================================================== */
