/* ======================================================
   search.css — 1.30.26 — 9:00 PM Texas Time
     --- updated to include hero image
   Desktop + Mobile Search UI
   ====================================================== */

/* ===============================
   MOBILE SEARCH PANEL (overlay)
   =============================== */

.tbp-mobile-search-panel {
  display: none;
}

@media (max-width: 640px) {

  .tbp-mobile-search-panel {
    position: absolute;
    top: 64px; /* directly below fixed nav bar */
    left: 0;
    right: 0;
    z-index: 2100; /* ABOVE mobile topbar image */
    background: #111;
    padding: 10px 12px;
    border-bottom: 1px solid #333;
  }

  .tbp-mobile-search-panel.open {
    display: block;
  }

  .tbp-mobile-search-form {
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 640px;
    margin: 0 auto;
    background-color: #F7F2D0;
    border: 1px solid #000;
    border-radius: 6px;
    overflow: hidden;
  }

  .tbp-mobile-search-input {
    flex: 1 1 auto;
    width: 100%;
    height: 38px;
    font-size: 16px;
    padding: 0 10px;
    border: 0;
    outline: none;
    background: transparent;
    color: #000;
  }

  .tbp-mobile-search-button {
    width: 44px;
    height: 38px;
    border: 0;
    background: #F7F2D0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
  }

/* Small black mag glass */
  .tbp-mobile-search-button img {
    width: 26px;
    height: 26px;
    object-fit: contain;
  }
}

/* ===============================
   SEARCH HERO IMAGE (TOP)
   =============================== */

.tbp-search-hero {
  margin: 18px auto 28px;
  max-width: 420px;
  text-align: center;
}

.tbp-search-hero img {
  width: 100%;
  height: auto;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.15);
  box-shadow: 0 0 18px rgba(0,0,0,0.65);
}

/* ===============================
   TOP MATCH HERO BLOCK
   =============================== */

.tbp-search-topmatch {
  text-align: center;
  margin: 18px auto 28px;
}

.tbp-search-hero {
  margin: 0 auto 12px;
  max-width: 360px;
}

.tbp-search-hero img {
  width: 100%;
  height: auto;
  border-radius: 14px;
  border: 2px solid rgba(200,170,60,0.35);
  box-shadow: 0 0 20px rgba(0,0,0,0.75);
}

.tbp-search-topmatch-title {
  font-size: 30px;
  font-weight: 800;
  color: #ffe45c;   /* brighter yellow */
}


.tbp-search-topmatch-msg {
  font-size: 18px;
  font-style: italic;
  color: #e6cf74;   /* Did you mean color */
  margin-top: 4px;
}

.tbp-search-query {
  margin: 18px 0 14px;
  font-size: 20px;
  color: #c9a83c;
}

.tbp-search-query strong {
  color: #ffd966;   /* brighter gold */
  font-weight: 800;
}

/* Badge indicator ABOVE title */

.tbp-search-type {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.65);
  margin-bottom: 3px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.tbp-search-type {
  display: block;
  margin-top: 6px;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.45);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.tbp-search-count {
  text-align: center;
  font-size: 15px;
  color: rgba(255,255,255,0.65);
  margin: 8px 0 18px;
}

.tbp-search-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  margin: 25px 0 40px;
}

.tbp-page-link {
  color: #ffd966;
  font-weight: 700;
  text-decoration: none;
}

.tbp-page-link:hover {
  text-decoration: underline;
}

.tbp-page-status {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
}

/* END OF FILE search.css — 1.30.26 — 9:00 PM Texas Time */
