
/* ------------- Alt Header ------------- */
.site-header-alt {
    background: var(--color-secondary-bg, #FDF3D8);
    color: var(--color-secondary-text, #033f4c);
    font-family: var(--font-secondary, "Mulish", sans-serif);
    padding: 1rem 1.5rem;
  }
  
  /* centres the header content and keeps it aligned with the page */
  .header-inner-alt {
    display: flex;
    justify-content: space-between;
    align-items: center;
  
    /* reuse the same width rules you set for .container */
    width: 92%;
    max-width: 1280px;        /* adjust to taste */
    margin-inline: auto;
  }
  
  .logo-red-alt {
    height: 18px;             /* ≈ Tailwind h-10 */
    width: auto;
  }
  
  .cta-link-alt {
    color: var(--color-secondary-text, #033f4c);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: underline;
  }
  

  /* ------------- End Alt Header ------------- */


/* ------------- Main Header ------------- */
.site-header {
    background: var(--color-primary-bg, #033f4c);
    color: var(--color-primary-text,#FDF3D8);
    font-family: var(--font-secondary, "Mulish", sans-serif);
    padding: 1rem 0px;
    width: 100%;
  }
  
  /* centres the header content and keeps it aligned with the page */
  .header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
  
    /* reuse the same width rules you set for .container */
    width: 90%;
    max-width: 1280px;        /* adjust to taste */
    margin-inline: auto;
  }
  
  .logo {
    height: 24px;             /* ≈ Tailwind h-10 */
    width: auto;
    /* padding-right: 15px; */
  }

  .header-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-left: auto; /* 👈 pushes this container to the right */
    margin-right: 2%;
  }
  
  .sign-in-header {
    color: var(--color-primary-text, #FDF3D8);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
  }

  /* Primary button */
  .btn-header {
    font-family: var(--font-primary, 'Tilt Warp', cursive);
    background: var(--color-primary, #DC7E5D);
    color: var(--color-primary-text, #fdf3d8);
    font-weight: 500;
    font-size: 1rem;
    padding: 0.75rem 1.4rem;
    border-radius: 24px;
    text-decoration: none;
    transition: background 0.25s ease;
    /* width: 120px; */
  }
  
  .btn-header:hover {
    background: #b94629; /* slightly darker on hover */
  }
  

  /* ------------- End Main Header ------------- */

  /* ------------ Footer ------------- */
.site-footer {
    background: var(--color-accent-3, #56747a);
    color: var(--color-primary-text, #fdf3d8);
    font-family: var(--font-secondary, "Mulish", sans-serif);
    text-align: center;
    padding: 1.5rem 2.5rem;
  }

  .footer-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem; /* space between text and icon */
}
  
  .site-footer .heart-icon {
    width: 20px;
    height: 20px;
  }
  
  .site-footer .branding {
    font-size: 0.9rem; /* ≈ text-lg */
    margin: 0;
  }
  
  .site-footer .policies {
    margin: 0.75rem 0 0;
    font-size: 0.9rem;
  }
  
  .site-footer a {
    color: inherit;            /* same colour as footer text */
    text-decoration: underline;
    padding: 10px 10px;
  }
  

  /* ------------ End Footer ------------- */

  /* ------------ Start Heart Loader ------------- */

  .heart-loader-wrapper.small {
    transform: scale(0.5); /* Scale down proportionally */
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 40px 0;
  }

  .heart-loader {
    width: 50px;
    height: 50px;
    background-color: var(--color-primary-bg, #033f4c);
    position: relative;
    transform: rotate(-45deg);
    animation: beat 1s infinite ease-in-out;
    margin: 20px auto;
  }

  .heart-loader::before,
  .heart-loader::after {
    content: "";
    width: 50px;
    height: 50px;
    background-color: var(--color-primary-bg, #033f4c);
    border-radius: 50%;
    position: absolute;
  }

  .heart-loader::before {
    top: -25px;
    left: 0;
  }

  .heart-loader::after {
    left: 25px;
    top: 0;
  }

  @keyframes beat {
    0%, 100% {
      transform: scale(1) rotate(-45deg);
    }
    50% {
      transform: scale(1.2) rotate(-45deg);
    }
  }
/* ------------ End Heart Loader ------------- */