.btn-primary {
    background-color: #7a1f2b; /* brand burgundy */
    color: #ffffff;
    border-radius: 9999px;
    padding: 0.75rem 1.75rem;
    font-weight: 600;
    text-align: center;
    line-height: 1.25;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;   
    box-shadow: 0 6px 14px rgba(122, 31, 43, 0.25);
  }

  .btn-primary:hover {
    background-color: #651a24;
  }

  .btn-outline {
    border: 1.5px solid #7a1f2b;
    color: #7a1f2b;
    background-color: #ffffff;
    border-radius: 9999px;
    padding: 0.75rem 1.75rem;
    font-weight: 600;
    text-align: center;
    line-height: 1.25;
    display: inline-flex;
    align-items: center;
    white-space: nowrap;   
    justify-content: center;
    gap: 0.5rem;
  }

  .btn-outline:hover {
    background-color: #fff1f3;
  }

body { font-family: Inter, system-ui, sans-serif; }

/* ================================
   FIX: Fixed header + content offset + hero behind header
   ================================ */
:root{ --header-height: 0px; }

.site-header{
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 9999;
  background: #ffffff;
  border-bottom: 1px solid #e2e8f0;
}

/* logo size */
.header-logo-img{
  height: 188px;
  width: auto;
  object-fit: contain;
}

/* Page content starts below header */
body.has-fixed-header{
  padding-top: var(--header-height);
}

/* Allow the hero background to sit behind the header */
#hero,
main > section:first-of-type{
  margin-top: calc(var(--header-height) * -1);
  padding-top: var(--header-height);
}
