@font-face {
    font-family: 'FHLecturis'; /* Name you'll use to reference the font */
    src: url('../fonts/FHLecturis-Light.woff2') format('woff2'),
         url('../fonts/FHLecturis-Light.woff') format('woff'),
         url('../fonts/FHLecturis-Light.otf') format('opentype');
    font-weight: normal;
    font-display: swap;
  }

  @import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

@font-face {
    font-family: 'Inter';
    src: url('/fonts/Inter-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
  }

  html, body, span.note {
    font-family: 'Inter', Arial, sans-serif;
  }
  
  h1, h2, h3 {
    font-family: 'FHLecturis';
    font-weight: 400;
    margin-block-start: 0;
    margin-block-end: 24px;
  }

/* Base font size at root level */
:root {
    font-size: 16px; /* Browser default, explicitly set */
  }
  
  /* Fluid typography for h1 above 1024px */
  @media (min-width: 1024px) {
    h1 {
      font-size: clamp(6rem, 4.5vw, 7rem);
      /* Minimum, scales, maximum */
    }
  }
  
  /* General responsive type scale using relative units */
  h1 { font-size: 6rem; }  
  #hero-content h1 { font-size: 12.5vw; }  
  h2 { font-size: 4.5rem; }   
  h3 { font-size: 3.75rem; } 
  h4 { font-size: 1.5rem; } 
  p { font-size: 1.2rem; line-height: 1.4; letter-spacing: 0.02rem; color: #B3B3B3; }   
  small { font-size: 0.875rem; } 
  

.text-white {
    color: #fff;
}

.text-green {
    color: #64DC3A;
}

.project-hero h1 {
  font-size: clamp(4rem, 6.5vw, 8rem);
}

.minor-heading {
  font-size: 1rem;
  font-family: "Inter";
  color: #8B8B8B;
}

.big-text {
  font-family: 'FHLecturis';
  font-weight: 400;
  font-size: 2.5rem;
  color: #fff;
  margin-block-end: 0em;
  line-height: 1.2;
}

.project-content h3 {
  font-family: 'Inter', Arial, sans-serif;
  font-size: 1rem;
  color: #8B8B8B;
}

.project-content h4 {
  font-family: 'FHLecturis';
  font-weight: 400;
  color: #fff;
  font-size: 2.25rem;
}

  /* Breakpoint adjustments */
  @media (max-width: 1536px) {
  :root {
    font-size: 16px; /* Scales entire type system down */
  }

  h1 { font-size: 4rem; }
  h2 { font-size: 3rem; }
  }

  /* Breakpoint adjustments */
  @media (max-width: 1280px) {
  :root {
    font-size: 15px; /* Scales entire type system down */
  }

  h1 { font-size: 3.25rem; }
  h2 { font-size: 3rem; }
  .big-text { font-size: 2rem; }
  }

  /* Breakpoint adjustments */
  @media (max-width: 1024px) {
    :root {
      font-size: 14px; /* Scales entire type system down */
    }

    h1 { font-size: 3.25rem; }
    h2 { font-size: 3rem; }
  }

  /* Breakpoint adjustments */
  @media (max-width: 768px) {
    :root {
      font-size: 12px; /* Scales entire type system down */
    }

    h1 { font-size: 3.25rem; }
    h2 { font-size: 3rem; }
    .big-text { font-size: 1.75rem; }
  }

