

  :root {    
    --primaryColor: #f97316;
    --headingColor: #595959;
    --backgroundColor: #FFFFFF;
    --accentColor: #fff7ed;
    --textColor: #0f1419;
    --logoColor: #595959;

    --primaryColorFilter: invert(69%) sepia(76%) saturate(4302%) hue-rotate(346deg) brightness(95%) contrast(106%);
    --headingColorFilter: invert(32%) sepia(18%) saturate(16%) hue-rotate(314deg) brightness(98%) contrast(86%);
    --backgroundColorFilter: invert(100%) sepia(0%) saturate(24%) hue-rotate(114deg) brightness(108%) contrast(108%);
    --accentColorFilter: invert(100%) sepia(72%) saturate(1094%) hue-rotate(294deg) brightness(114%) contrast(101%);
    --textColorFilter: invert(6%) sepia(9%) saturate(2145%) hue-rotate(169deg) brightness(88%) contrast(94%);
    --logoColorFilter: invert(35%) sepia(2%) saturate(144%) hue-rotate(348deg) brightness(94%) contrast(87%);
    
    --whiteFilter: invert(93%) sepia(100%) saturate(0%) hue-rotate(246deg) brightness(106%) contrast(102%);
    --blackFilter: invert(0%) sepia(100%) saturate(0%) hue-rotate(264deg) brightness(107%) contrast(102%);

    /* OPACITY COLORS */

    --low-opacity-black: rgba(0, 0, 0, 0.25);
    --high-opacity-black: rgba(0, 0, 0, 0.75);

    --low-opacity-gray: rgba(255, 255, 255, 0.25);
    --high-opacity-gray: rgba(255, 255, 255, 0.75);

    --low-opacity-primaryColor: rgba(249, 115, 22, 0.25);
    --high-opacity-primaryColor: rgba(249, 115, 22, 0.75);

    --high-opacity-primaryColorFilter: invert(58%) sepia(66%) saturate(3462%) hue-rotate(350deg) brightness(98%) contrast(100%) opacity(0.75);
    
    --low-opacity-headingColor: rgba(89, 89, 89, 0.25);
    --high-opacity-headingColor: rgba(89, 89, 89, 0.75);

    --low-opacity-backgroundColor: rgba(255, 255, 255, 0.25);
    --high-opacity-backgroundColor: rgba(255, 255, 255, 0.75);

    --low-opacity-accentColor: rgba(255, 247, 237, 0.25);
    --high-opacity-accentColor: rgba(255, 247, 237, 0.75);

    --low-opacity-textColor: rgba(15, 20, 25, 0.25);
    --high-opacity-textColor: rgba(15, 20, 25, 0.75);

    /* END OF OPACITY COLROS */

    /* BASIC COLORS */

    --light-gray: var(--low-opacity-backgroundColor);
    --basic-gray: var(--low-opacity-backgroundColor);
    --dark-gray: var(--high-opacity-textColor);
    --black: var(--textColor);
    --white: var(--backgroundColor);

    --whiteFilter: invert(100%) sepia(100%) saturate(0%) hue-rotate(269deg) brightness(102%) contrast(105%);
    --blackFilter: invert(0%) sepia(25%) saturate(1302%) hue-rotate(123deg) brightness(92%) contrast(106%);

    /* END OF BASIC COLORS*/

    /* SHADOWS */

    --basic-box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);

    /* END OF SHADOWS */

  }

  html {
    font-family: Inter, sans-serif;
  }

  footer {
    font-family: Lato Bold, sans-serif;
  }

  h1, h2 {
    font-family: Inter, serif;
  }

  h3, h4, h5, h6 {
    font-family: Inter, serif;
  }
      
  code {
    font-family: JetBrains Mono, monospace;
  }

  .logo-text {
    font-family: Inter;
  }
  

  html {
    scroll-behavior: smooth;
    background-color: var(--backgroundColor);
    min-height: 100%;
  }


  body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    margin: 0;
    padding: 0;
    width: 100%;
    color: var(--textColor);
  }


  body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    position: relative;
  }
  .site-main {
    flex: 1 1 auto;
    width: 100%;
    min-height: 0;
  }




  
  /* Full-bleed sections + centered inner content */
  :root {
    --siteContentMaxWidth: min(100%, 1200px);
  }

  nav, section, header, footer {
    width: 100%;
    max-width: 100%;
  }

  nav > :where(div, ul, ol, article, aside, main),
  section > :where(div, ul, ol, article, aside, main),
  header > :where(div, ul, ol, article, aside, main),
  footer > :where(div, ul, ol, article, aside, main) {
    width: 100%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
  }
  






  footer {
    margin-top: auto;
  }


  * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
  }

