:root {
  /* Colors */
  --grey: #434240;
  --lighter-grey: #6c6c6c;
  --light-grey: #b5b4b2;
  --orange: #b58360;
  --red: #be5a5a;
  --green: #5aac7a;
  --flrhub-green: #13363e;
  --flrhub-orange: #f9803a;
  --orange-hover: #ffede1;
  --header-height: 100px;
}

/* Global Body and Page Styles */
body,
html {
  margin: 0;
  padding: 0;
  font-family: "Poppins", sans-serif;
  background: var(--flrhub-green);
}

.page-wrapper {
  background: white; /* Default background for content areas */
  min-height: 100vh;
}

* {
  box-sizing: border-box;
  font-family: "Poppins";
}

a {
  color: var(--flrhub-orange);
  text-decoration: underline;
  transition: color 300ms ease-in-out;
}
a:hover {
  color: var(--orange-hover);
}

.container {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
}

/* Header Styles */
#masthead {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 500;
  background-color: #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

#masthead .inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 40px;
  position: relative;
  z-index: 5;
}

#masthead .site-logo img {
  display: block;
}

/* Page Content Styles */
.page-content {
  padding-top: var(--header-height);
}

.entry-content {
  padding: 100px 0;
  line-height: 1.8;
}

.entry-content .separator {
  border: 0;
  border-top: 1px solid #eee;
  margin: 40px 0;
}

/* Typography and Lists */
h1,
.h1 {
  font-size: 50px;
  line-height: 1.2;
  font-weight: 400;
}

h1,
h2,
h3,
h4 {
  margin-top: 0;
}

.hierarchy-list ol {
  list-style-type: none;
  counter-reset: item;
  margin: 0;
  padding: 0;
}

.hierarchy-list > ol > li {
  font-weight: 700;
  font-size: 18px;
}

.hierarchy-list > ol > li > ol {
  margin-top: 0.5em;
}

.hierarchy-list ol ol li {
  font-weight: 400;
  font-size: 14px;
}

.hierarchy-list li {
  display: table;
  counter-increment: item;
  margin-bottom: 1em;
}

.hierarchy-list > ol > li:before {
  content: counters(item, ".") ". ";
  display: table-cell;
  padding-right: 0.6em;
}

.hierarchy-list li li:before {
  content: counters(item, ".") " ";
  display: table-cell;
  padding-right: 0.6em;
}

.hierarchy-list .alpha-list,
.hierarchy-list .roman-list,
.hierarchy-list .ordered-list {
  list-style: none;
  padding-left: 20px;
}

.hierarchy-list .alpha-list {
  counter-reset: alphalist;
}
.hierarchy-list .alpha-list .list:before {
  content: counter(alphalist, lower-alpha) ". ";
  display: table-cell;
  padding-right: 0.6em;
  min-width: 26px;
}

.hierarchy-list .roman-list {
  counter-reset: romanlist;
}
.hierarchy-list .roman-list .list:before {
  content: counter(romanlist, lower-roman) ". ";
  display: table-cell;
  padding-right: 0.6em;
  min-width: 20px;
}

.hierarchy-list .ordered-list {
  counter-reset: orderedlist;
}
.hierarchy-list .ordered-list .list:before {
  content: counter(orderedlist) ". ";
  display: table-cell;
  padding-right: 0.6em;
  min-width: 20px;
}

.hierarchy-list .alpha-list .list,
.hierarchy-list .roman-list .list,
.hierarchy-list .ordered-list .list {
  display: table;
  counter-increment: alphalist romanlist orderedlist;
}

/* Footer Styles */
#footer {
  background-color: var(--flrhub-green);
}
.section-footer {
  padding-bottom: 25px;
  font-size: 12px;
  color: #fff !important;
  @include bp(767px) {
    font-size: 10px;
  }
  .container {
    padding-top: 130px;
    padding-bottom: 130px;
    &.flex {
      display: flex;
      justify-content: space-around;
      @include bp(767px) {
        display: initial;
        .contact {
          margin: 15px;
        }
        .contact-address {
          margin: 15px;
        }
      }
    }
    .contact {
      flex: 2;
    }
    .contact-address {
      flex: 1.2;
    }
  }
  .copyright-lines {
    padding: 0 40px;
    @include bp(1199px) {
      padding: 0 25px;
    }
    @include bp(767px) {
      padding: 10px 15px;
    }
    .inner {
      display: flex;
      flex-wrap: wrap;
      position: relative;
      align-items: end;
      > * {
        width: 33.33%;
        @include bp(991px) {
          width: 100%;
        }
      }
    }
    .copy {
      color: #fff !important;
      @include bp(991px) {
        order: 2;
      }
    }
  
    .links {
      text-align: center;

      @include bp(991px) {
        order: 1;
        margin-bottom: 15px;
        text-align: left;
      }
      ul {
        font-size: 0;
        li {
          font-size: 12px;
          display: inline-block;
          vertical-align: middle;
          @include bp(767px) {
            font-size: 10px;
          }
          &:before {
            content: "|";
            display: inline-block;
            margin: 0 5px;
            pointer-events: none;
          }
          &:first-child {
            &:before {
              display: none;
            }
          }
        }
      }
    }
    .credit {
      text-align: right;
      @include bp(991px) {
        position: absolute;
        bottom: 0;
        right: 0;
      }
    }
  }
  
  h2 {
    margin-bottom: 15px;
    color: #fff !important;
    @include bp(767px) {
      font-size: 35px;
      margin-bottom: 30px;
    }
  }
  h3 {
    font-size: 32px;
    color: #fff !important;
    @include bp(767px) {
      font-size: 26px;
    }
    a {
      color: var(--flrhub-orange) !important;
      @media (pointer: fine) {
        &:hover {
          color: var(--orange-hover) !important;
        }
      }
    }
  
  }
  copy{
    color: #fff !important;
  }
  em {
    color: inherit;
  }
}
/* Responsive Styles */
@media (max-width: 1199px) {
  h1,
  .h1 {
    font-size: 40px;
  }
}

@media (max-width: 767px) {
  :root {
    --header-height: 55px;
  }
  h1,
  .h1 {
    font-size: 32px;
  }
  .entry-content {
    padding: 70px 0;
  }
  #masthead {
    padding: 0;
  }
  #masthead .inner {
    padding: 0 15px;
  }
  #masthead .site-logo img {
    height: 25px;
    width: auto;
  }
  .copyright-lines .inner {
    flex-direction: column;
    gap: 15px;
  }
  .section-footer .container {
    padding: 80px 15px;
  }
}
