/* =========================
   Lodestar – Transparent / Ghost Buttons
   ========================= */

button,
input[type="button"],
input[type="submit"],
.wp-block-button__link,
a.wp-block-button__link,
a.button {
  background-color: transparent !important;
  background-image: none !important;
  color: #2f3437 !important;
  border: 2px solid #2f3437 !important;
  opacity: 1 !important;
}

button:hover,
input[type="button"]:hover,
input[type="submit"]:hover,
.wp-block-button__link:hover,
a.wp-block-button__link:hover,
a.button:hover {
  background-color: #2f3437 !important;
  color: #ffffff !important;
}


/* =========================
   Lodestar – Mobile Header Fix
   Makes MENU easier to see on iPhone
   ========================= */

@media (max-width: 768px) {
  .site-header {
    background-color: #1f1f1f !important;
  }

  .site-header a,
  .site-header .site-title,
  .site-header .site-description {
    color: #ffffff !important;
  }

  .menu-toggle {
    color: #ffffff !important;
    border-color: #ffffff !important;
  }

  .main-navigation a {
    color: #ffffff !important;
  }
}


/* =========================
   Lodestar – Fixed contact bar only
   Keeps address / phone / email visible
   ========================= */

.top-bar,
.site-top-bar,
.header-top,
.site-header-top,
.info-bar,
.contact-bar {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  z-index: 99999 !important;
  background-color: #1f1f1f !important;
  color: #ffffff !important;
  padding: 8px 14px !important;
  box-sizing: border-box !important;
}

/* Keep text readable */
.top-bar,
.top-bar a,
.site-top-bar,
.site-top-bar a,
.header-top,
.header-top a,
.site-header-top,
.site-header-top a,
.info-bar,
.info-bar a,
.contact-bar,
.contact-bar a {
  color: #ffffff !important;
  text-decoration: none !important;
}

/* Prevent page content from hiding under the fixed bar */
body {
  padding-top: 40px !important;
}

/* =========================
   Lodestar – Tighten mobile header spacing
   ========================= */

@media (max-width: 768px) {

  /* Reduce overall header height */
  .site-header {
    padding-top: 6px !important;
    padding-bottom: 6px !important;
  }

  /* Raise the MENU button */
  .menu-toggle {
    margin-top: -25px !important;
    margin-bottom: 6px !important;
    padding: 8px 18px !important;
  }

  /* Reduce spacing around header text */
  .custom-header,
  .custom-header-media {
    padding-top: 10px !important;
    padding-bottom: 10px !important;
  }

  /* Tighten the contact line spacing */
  .site-branding,
  .header-top,
  .site-header-top {
    line-height: 1.2 !important;
  }

}


/* =========================
   Lodestar – Smaller contact info text
   (does NOT affect site title)
   ========================= */

.header-top,
.site-header-top,
.header-top p,
.site-header-top p {
  font-size: 12px !important;
}

/* Slightly smaller on mobile */
@media (max-width: 768px) {
  .header-top,
  .site-header-top,
  .header-top p,
  .site-header-top p {
    font-size: 11px !important;
  }
}