/* ------------------ RESET ------------------ */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* ------------------ GLOBAL ------------------ */
:root {
    --bfh-red: #a51c30;
    --bfh-black: #000000;
    --bfh-white: #ffffff;

     /* New design tokens for About page + cards */
    --bfh-text-main: #111111;
    --bfh-text-muted: #555555;
    --bfh-card-bg: #ffffff;
    --bfh-border-soft: #e5e7eb;
    --bfh-accent: #a51c30; /* tie accent to brand red */
        --bfh-accent-soft: #fff5f7; /* soft pinky/red background for quote blocks */

}

body {
    font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.6;
    background-color: var(--bfh-white);
    color: #111111;
}


/* ------------------ LOGO HEADER ------------------ */
.logo-header {
    padding-top: 1rem;
    padding-bottom: 0.8rem;
}

.logo-header-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;              /* FLEXBOX */
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
}

.logo-placeholder {
    width: 80px;
    height: 80px;
    border-radius: 4px;
    background-color: var(--bfh-red);
    color: var(--bfh-white);
    display: flex;              /* FLEXBOX */
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
}


/* header logo image */
.logo-img-top {
    height: 80px;
    width: auto;
    display: block;
}

/* footer logo image */
.logo-img-footer {
    height: 90px;
    width: auto;
    display: block;
}





.site-title {
    font-size: 2rem;
    text-align: center;
    font-weight: 800;
    letter-spacing: 0.02em;
}

.site-title span {
    font-weight: 900;
}

.site-title span.dot {
    font-weight: 700;
    font-size: 1.1rem;
}

.site-tagline {
    font-size: 0.8rem;
    font-style: italic;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #8b0000;
    text-align: center;
}

/* ------------------ NAV BAR ------------------ */
.nav-top-strip {
    height: 6px;
    background-color: var(--bfh-black);
}

.main-nav-bar {
    background-color: var(--bfh-red);
    padding-bottom: 5px;
}

.nav-list {
    max-width: 1100px;
    margin: 0 auto;
    list-style: none;
    display: flex;              /* FLEXBOX */
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    padding: 0.6rem 1.5rem;
}

.nav-link {
    text-decoration: none;
    color: var(--bfh-white);
    font-size: 0.88rem;
    position: relative;
    padding-bottom: 0.2rem;
    transition: color 0.15s ease, background-color 0.15s ease;
}

/* underline strip for all links (we animate it) */
.nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 100%;
    height: 2px;
    background-color: var(--bfh-white);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.15s ease;
}

/* active link: underline visible + slightly bolder */
.nav-link.active {
    font-weight: 600;
}

.nav-link.active::after {
    transform: scaleX(1);
}

/* special black pill link */
.nav-link-highlight {
    background-color: var(--bfh-black);
    padding: 0.4rem 0.9rem;
    border-radius: 4px;
}

/* hover/focus: show underline for all, keep contrast strong */
.nav-link:hover::after,
.nav-link:focus-visible::after {
    transform: scaleX(1);
}

.nav-link:hover,
.nav-link:focus-visible {
    outline: none;
}

/* slightly brighten the pill on hover */
.nav-link-highlight:hover,
.nav-link-highlight:focus-visible {
    background-color: #111111;
}


.nav-bottom-line {
    height: 4px;
    background-color: #f5f5f5;
}

/* ------------------ HERO ------------------ */
/* ------------------ HERO ------------------ */
.hero {
    min-height: 55vh;
    display: flex;              /* FLEXBOX */
    align-items: center;
    justify-content: center;
    padding: 3rem 1.5rem;
    background-color: var(--bfh-white);
}

.hero-inner {
    text-align: center;
}

/* main headline */
.hero-title {
    font-weight: 700;
    font-size: 68px;
    line-height: 1.4;
}

/* thick underline for only these words */
.thick-underline {
    text-decoration: underline;
    text-decoration-thickness: 0.18em;
    text-underline-offset: 0.14em;
}

/* subheading */
.hero-subtitle {
    margin-top: 77px;
    font-weight: 500;
    font-size: 33px;
    line-height: 1.3;
    color: #000000;
}

/* small line under subheading */
.hero-line-small {
    margin-top: 0.7rem;
    font-size: 0.95rem;
    font-style: italic;
    color: #555555;
}


/* ------------------ FOOTER ------------------ */
.site-footer {
    margin-top: 3rem;
}

/* full-width black bar */
.footer-main {
    background-color: var(--bfh-black);
    color: var(--bfh-white);
    padding: 2.5rem 1.5rem 2rem;
}

/* centred inner content, 2 columns on desktop */
.footer-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;              /* FLEXBOX */
    justify-content: space-between;
    gap: 2rem;
}

/* left logo area */
.footer-logo-block {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}









.logo-footer {
    width: 70px;
    height: 70px;
    font-size: 1rem;
}

.footer-tagline {
    color: #e5e5e5;
    font-family: Arial, Helvetica, sans-serif;
     text-transform: uppercase;
    font-style: italic;
    letter-spacing: 1px;
    font-size: 11px;
    line-height: 1.3;


      /* FORCE the visual position */
   margin-top: 4px;        /* sits just under the logo */
    margin-bottom: 0;
    padding: 0;

}


/* right link columns */
.footer-links-wrap {
    display: flex;              /* FLEXBOX */
    justify-content: flex-end;
    gap: 3rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.25rem;
}

.footer-links a {
    color: #f9fafb;
    text-decoration: none;
    font-size: 0.9rem;
}

.footer-links a:hover,
.footer-links a:focus-visible {
    text-decoration: underline;
    outline: none;
}

/* red copyright bar */
.footer-bottom {
    background-color: var(--bfh-red);
    color: var(--bfh-white);
    text-align: center;
    font-size: 0.85rem;
    padding: 0.6rem 1rem 0.5rem;
}









/* ------------------ INNER PAGES ------------------ */
.page-section {
    padding: 3rem 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.page-section h1 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.page-section h2 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}

.page-section p {
    margin-bottom: 0.9rem;
    font-size: 0.98rem;
}



/* ---------------------------------------------- */
/*  HOME PAGE CONTENT */
/* ---------------------------------------------- */

/* ---- CORE VALUES SECTION ------  */
.bfh-values-section {
    background-color: var(--bfh-red);
    padding: 3rem 1.5rem;
    margin-top: 4rem;
    border-top: solid 7px;
    border-bottom: solid 7px;
}

.bfh-values-inner {
    max-width: 800px;
    margin: 0 auto;
}

.bfh-core-values-list {
    list-style-position: inside;
    color: var(--bfh-white);
    font-size: 1.15rem;
    font-weight: 600;
    line-height: 1.7;
}

.bfh-core-values-list li {
    margin-bottom: 0.8rem;
}

@media (max-width: 600px) {
    .bfh-core-values-list {
        font-size: 1rem;
        line-height: 1.6;
    }
}

/* -------- HOME PAGE CONTENT SECTIONS --------- */
.italic-underline {
    font-style: italic;
    text-decoration: underline;
}

/* wrapper for the long-form homepage sections */
.bfh-section {
    max-width: 900px;
    margin: 4rem auto;
    padding: 0 1.5rem;
    line-height: 1.7;
    font-size: 1.05rem;
}

/* big main heading */
.bfh-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
    line-height: 1.3;
    text-align: center;
}

/* subsection heading */
.bfh-subtitle {
    font-size: 1.7rem;
    font-weight: 600;
    margin-bottom: 1.2rem;
    line-height: 1.3;
    text-align: center;
}

/* “what we stand for” list */
.bfh-stand-for {
    list-style-type: disc;
    padding-left: 1.3rem;
    margin: 1.8rem 0;
}

.bfh-stand-for li {
    margin-bottom: 0.6rem;
    font-size: 1.05rem;
    line-height: 1.6;
    font-weight: 500;
}

/* pull-quote */
.bfh-quote {
    margin: 2.5rem auto;
    padding: 1.2rem 1.4rem;
    border-left: 4px solid var(--bfh-red);
    font-style: italic;
    font-size: 1.25rem;
    opacity: 0.9;
    max-width: 750px;
    line-height: 1.5;
}

/* CTA link */
.bfh-cta a {
    color: var(--bfh-red);
    font-weight: 700;
    text-decoration: underline;
}


/* ---------------------------------------------- */
/*  ABOUT PAGE CONTENT */
/* ---------------------------------------------- */

/* About hero wrapper */
.bfl-about-hero {
  padding: clamp(3rem, 6vw, 4.5rem) 1.5rem 1.5rem;
  background: #ffffff;
}

.bfl-about-hero-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
}

/* Main heading (match feel of home hero) */
.bfl-about-hero-title {
  font-size: clamp(2.1rem, 3.6vw, 2.8rem);
  line-height: 1.2;
  margin: 0 0 0.75rem;
  color: var(--bfh-text-main);
}

/* Subheadline */
.bfl-about-hero-subtitle {
  margin: 0 0 1.75rem;
  font-size: clamp(1.2rem, 2vw, 1.4rem);
  color: var(--bfh-text-muted);
  font-weight: 500;
}

/* Body text */
.bfl-about-hero-body {
  font-size: 0.98rem;
  line-height: 1.7;
  color: var(--bfh-text-main);
}

/* Bold line under subheadline */
.bfl-about-hero-boldline {
  margin: 0 0 0.75rem;
  font-size: 1rem;
}

/* Quote block */
.bfl-about-hero-quote-block {
  margin: 1.75rem 0 1.5rem;
  padding: 1.5rem 1.5rem 1.25rem;
  border-radius: 1rem;
  background: var(--bfh-accent-soft);
  position: relative;
}

.bfl-about-hero-hr {
  border: none;
  border-top: 1px solid rgba(0, 0, 0, 0.04);
  margin: 0 0 0.75rem;
}

.bfl-about-hero-quote {
  margin: 0;
  font-style: italic;
  color: var(--bfh-text-main);
  position: relative;
  padding-left: 1.75rem;
}

.bfl-about-hero-quote::before {
  content: "“";
  position: absolute;
  left: 0;
  top: -0.4rem;
  font-size: 2.2rem;
  line-height: 1;
  color: var(--bfh-accent);
}

/* Paragraph spacing */
.bfl-about-hero-body p {
  margin: 0 0 0.95rem;
}

/* Responsive tweaks */
@media (max-width: 600px) {
  .bfl-about-hero {
    padding-inline: 1.25rem;
  }

  .bfl-about-hero-quote-block {
    padding: 1.25rem 1.2rem 1.1rem;
  }
}

/* MEET THE TEAM SECTION /Overall section */
.bfl-about-team {
  padding: clamp(3rem, 6vw, 4.5rem) 1.5rem;
  background: linear-gradient(
      180deg,
      rgba(255, 244, 246, 0.8),
      rgba(255, 255, 255, 0.9)
  );
}

.bfl-about-team-inner {
  max-width: 1100px;
  margin: 0 auto;
}

/* Header */
.bfl-about-team-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.bfl-about-team-title {
  font-size: clamp(2rem, 3vw, 2.4rem);
  margin: 0 0 0.5rem;
  color: var(--bfh-text-main);
  letter-spacing: 0.02em;
}

.bfl-about-team-subtitle {
  margin: 0;
  color: var(--bfh-text-muted);
  font-size: 0.98rem;
}

/* Grid layout */
.bfl-team-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  align-items: flex-start;
  justify-content: center;
}

/* Individual member cards */
.bfl-team-member {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  flex: 1 1 320px;
  max-width: 520px;
  background: var(--bfh-card-bg);
  border-radius: 1.25rem;
  padding: 1.75rem 1.5rem;
  border: 1px solid var(--bfh-border-soft);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

/* Photo */
.bfl-team-media {
  display: flex;
  justify-content: flex-start;
}

.bfl-team-photo-wrapper {
  margin: 0;
}

.bfl-team-photo {
  width: 120px;
  height: 120px;
  border-radius: 999px;
  object-fit: cover;
  border: 3px solid var(--bfh-accent);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

/* Text content */
.bfl-team-content {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

/* Name + dot */
.bfl-team-name {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin: 0;
  font-size: 1.25rem;
  color: var(--bfh-text-main);
}

.bfl-team-name-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  display: inline-block;
  background: var(--bfh-accent);
}

.bfl-team-name-dot--nova {
  background: var(--bfh-accent);
}

.bfl-team-name-dot--thomas {
  background: #25598a; /* a calm blue for contrast, tweak if needed */
}

.bfl-team-role {
  margin: 0;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--bfh-text-muted);
}

.bfl-team-tagline {
  margin: 0.4rem 0 0.8rem;
  font-size: 0.98rem;
  color: var(--bfh-text-main);
}

/* Bio paragraphs */
.bfl-team-bio p {
  margin: 0 0 0.75rem;
  font-size: 0.96rem;
  line-height: 1.6;
  color: var(--bfh-text-main);
}

.bfl-team-bio em {
  font-style: italic;
}


/* Responsive */
@media (max-width: 900px) {
  .bfl-team-grid {
    flex-direction: column;
  }

  .bfl-team-member {
    max-width: 100%;
  }
}

@media (max-width: 600px) {
  .bfl-about-team {
    padding-inline: 1.25rem;
  }

  .bfl-team-member {
    padding: 1.5rem 1.25rem;
  }

  .bfl-team-media {
    justify-content: center;
  }

  .bfl-team-content {
    text-align: left;
  }
}
/* ----------------------------------------------- */
/*  END ABOUT PAGE */
/* ----------------------------------------------- */













/* ------------------ RESPONSIVE ------------------ */
@media (max-width: 800px) {
    .nav-list {
        gap: 0.8rem;
        flex-wrap: wrap;
    }

    /* Stack logo and links vertically */
    .footer-inner {
        flex-direction: column;      /* logo on top, links under it */
        align-items: center;
        text-align: left;
    }

    /* centre the logo + tagline */
    .footer-logo-block {
        align-items: center;
        text-align: center;
        margin-bottom: 1rem;
    }

    /* links: single column under the logo area */
    .footer-links-wrap {
        flex-direction: column;      /* one column on mobile */
        align-items: flex-start;
        justify-content: flex-start;
        max-width: 260px;
        width: 100%;
    }

    .footer-links {
        width: 100%;
        margin-bottom: 0.5rem;
    }

    .footer-links li {
        margin-bottom: 0.3rem;
    }

    .footer-links a {
        font-size: 0.9rem;
    }

    .footer-bottom {
        font-size: 0.8rem;
        padding: 0.6rem 0.5rem;
    }
}










@media (max-width: 900px) {
    .hero-title {
        font-size: 40px;
        line-height: 1.3;
    }

    .hero-subtitle {
        margin-top: 1.5rem;
        font-size: 20px;
    }

    .bfh-section {
        margin: 3rem auto;
        font-size: 1rem;
    }

    .bfh-title {
        font-size: 1.7rem;
    }

    .bfh-subtitle {
        font-size: 1.45rem;
    }

    .bfh-quote {
        font-size: 1.1rem;
    }
}

/* Home page Custom*/
.visually-hidden {
    position: absolute;
    left: -9999px;
}