/* Fonts */

@font-face {
    font-family: 'lemonmilk';
    src: url('/fonts/lemonmilk.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
    
}

@font-face {
  font-family: 'SourceSans';
  src: url('/fonts/SourceSans.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'sans';
  src: url('/fonts/sans.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Halo3';
  src: url('/fonts/halo3.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* Font Awesome CSS */
@font-face {
  font-family: "Font Awesome Solid";
  font-style: normal;
  font-weight: 900;
  font-display: block;
  src: url(/fonts/fa-solid.woff2) format("woff");
}

@font-face {
  font-family: "Font Awesome Regular";
  font-style: normal;
  font-weight: 400;
  font-display: block;
  src: url(/fonts/fa-regular.woff2) format("woff");
}

@font-face {
  font-family: "Font Awesome Brands";
  font-style: normal;
  font-weight: 400;
  font-display: block;
  src: url(/fonts/fa-brands.woff2) format("woff");
}

.fas {
  font-family: "Font Awesome Solid";
  font-weight: 900;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1
}

.far {
  font-family: "Font Awesome Regular";
  font-weight: 400;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1
}

.fab {
  font-family: "Font Awesome Brands";
  font-weight: 400;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1
}

.fa-angle-left:before {
  content: "\f104"
}

.fa-angle-right:before {
  content: "\f105"
}

.fa-arrow-left:before {
  content: "\f060"
}

.fa-arrow-right:before {
  content: "\f061"
}

.fa-calendar-alt:before {
  content: "\f073"
}

.fa-check-square:before {
  content: "\f14a"
}

.fa-chevron-left:before {
  content: "\f053"
}

.fa-chevron-right:before {
  content: "\f054"
}

.fa-cloud-upload-alt:before {
  content: "\f382"
}

.fa-comment:before {
  content: "\f075";
}

.fa-contact:before {
  content: "\f2bb";
}

.fa-edit:before {
  content: "\f044"
}

.fa-file-image:before {
  content: "\f1c5"
}

.fa-handshake:before {
  content: "\f2b5"
}

.fa-home:before {
  content: "\f015"
}

.fa-images:before {
  content: "\f302"
}

.fa-leaf:before {
  content: "\f06c";
}

.fa-mobile-screen:before {
  content: "\f3cf"
}

.fa-panorama:before {
  content: "\e209"
}

.fa-phone:before {
  content: "\f095"
}

.fa-plus:before {
  content: "\f067"
}

.fa-save:before {
  content: "\f0c7"
}

.fa-seedling:before {
  content: "\f4d8";
}

.fa-shopping-basket:before {
  content: "\f291"
}

.fa-sign-in-alt:before {
  content: "\f2f6"
}

.fa-square:before {
  content: "\f0c8"
}

.fa-trash:before {
  content: "\f1f8"
}

:root {
  --green: #50C13E;
  --brown: #736047;
  --gray: #C4BBB1;
}

/* 10000px width and down */
@media only screen and (max-width: 10000px) {
  p::selection, span::selection, h1::selection, h2::selection, h3::selection, h4::selection, h5::selection, h6::selection, br::selection, i::selection, strong::selection, button::selection {
    color: #000;
    background: #fff
  }

  a::selection, img::selection {
    color: #000;
    background: #fff;
  }

  html {
    height: 100%;
  }

  body {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('/images/leaves.jpg') center/1000px repeat;
    background-attachment: fixed;
    display: flex;
    flex-flow: column nowrap;
    min-height: 100%;
    margin: 0;
  }

  header {
    background: linear-gradient(90deg, var(--gray), var(--green), var(--gray));
    padding: 60px 6% 10px;
    width: 88%;
    z-index: 999;
  }

  header a {
    text-decoration: none;
    color: #fff;
    transition: 0.4s;
  }

  header a:hover {
    color: var(--green);
  }

  header p {
    margin: 0;
  }

  nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(90deg, #595959, #000);
  }

  #nav-overlay {
    display: flex;
    justify-content: center;
    text-align: center;
  }

  nav a {
    font-family: sans;
    font-size: 18px;
    text-align: center;
    padding: 15px;
    color: #fff;
  }

  #toggle-btn {
    display: none;
    position: absolute;
    bottom: 20px;
    right: 20px;
    padding: 10px;
    cursor: pointer;
    box-shadow: 0 0 10px 5px #000;
    background-color: var(--green);
    border-radius: 50%;
  }

  .toggle-bar {
    display: block;
    width: 0px;
    height: 8px;
    margin: 7.75px 5px;
    border-left: 10px solid #fff;
    border-right: 35px solid #595959;
    transition: 0.4s;
  }

  #second-bar {
    transform: rotate(-180deg);
  }

  .toggle-btn-open #first-bar {
    opacity: 0;
  }

  .toggle-btn-open #second-bar {
    transform: rotate(-135deg);
  }

  .toggle-btn-open #third-bar {
    transform: rotate(-45deg) translateX(10px) translateY(-11px);
  }

  #logo-info {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  #logo-link {
    height: 100%;
    display: flex;
    align-items: center;
  }

  #logo-wrapper {
    max-width: 65%;
    height: 175px;
    padding: 20px;
  }

  #logo-img {
    max-height: 100%;
    max-width: 100%;
  }

  #tagline-wrapper {
    max-width: 25%;
    height: 75px;
    padding: 20px;
    display: flex;
    align-items: center;
  }

  #tagline-img {
    max-height: 100%;
    max-width: 100%;
  }

  #tagline-img-mobile {
    display: none;
    max-height: 100%;
    max-width: 100%;
  }

  main {
    flex-grow: 1;
    padding: 50px 6% 0 6%;
    width: 88%;
    display: block;
  }

  #first-page-header {
    margin-top: 0;
  }

  #contact-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: var(--green);
    color: white;
    width: 75px;
    height: 75px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 40px;
    box-shadow: 0 0 10px 5px #000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s, transform 0.2s;
  }

  #contact-button:hover {
    background-color: #5d8525;
    transform: scale(1.1);
  }

  #action-menu {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    overflow: hidden;
    width: 0px;
    height: 75px;
    box-shadow: 0 0 10px 5px #000;
    background-color: var(--green);
    border-radius: 35px;
    font-size: 40px;
    transition: 0.3s;
  }
  
  #action-menu:hover {
    transform: scale(1.1);
  }

  #action-menu a {
    color: #fff;
    width: 75px;
    height: 75px;
    cursor: pointer;
    text-align: center;
    font-size: 40px;
    display: flex;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
  }

  #action-menu a:hover {
    background-color: #5d8525;
  }

  footer {
    width: 88%;
    background: linear-gradient(145deg, #000, #595959);
    padding: 30px 6%;
    text-align: center;
  }

  .footer-text {
    font-family: SourceSans;
    font-size: 20px;
    color: #fff;
    margin: 0 0 15px;
  }

  .footer-link {
    margin: 25px 0;
  }

  #admin-link {
    padding: 10px;
    background: #000;
    border-radius: 5px;
  }

  #copyright {
    font-family: SourceSans;
    font-size: 13px;
    color: #fff;
    margin: 0;
  }
}

/* 650px width and down */
@media only screen and (max-width: 650px) {
  header {
    padding: 10px 6%;
  }

  nav {
    width: 0%;
    height: 100%;
    top: auto;
    left: auto;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    text-align: center;
    background: rgba(0, 0, 0, 0.8);
    transition: 0.4s;
  }

  #nav-overlay {
    display: block;
    position: relative;
    width: 100%;
  }

  nav a {
    display: block;
    width: 250px;
    margin: 10px auto;
    padding: 15px;
  }

  #toggle-btn {
    display: block;
  }
  
  #logo-info {
    flex-direction: column;
  }

  #logo-wrapper {
    max-width: 100%;
    max-height: 175px;
    height: auto;
  }

  #tagline-wrapper {
    max-width: 100%;
    max-height: 35px;
    height: auto;
  }

  #tagline-img {
    display: none;
  }

  #tagline-img-mobile {
    display: block;
  }

  #contact-button {
    left: 20px;
  }

  #action-menu {
    left: 20px;
  }
}

/* 370px width and down */
@media only screen and (max-width: 370px) {
  
}

/* 550px height and down */
@media only screen and (max-height: 550px) {
  nav a {
    margin: 5px auto;
    padding: 10px;
  }
}