@charset "utf-8";

* {
  margin: 0;
  padding: 0;
}

body {
  width: 100%;
  overflow-x: hidden;
  background-color: #eeeeee;
}

.aboutTable.mobile {
  display: none;
}

/* ----- Cards ----- */

.card {
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
  max-width: 300px;
  margin: auto;
  text-align: center;
}

.title {
  color: grey;
  font-size: 18px;
}

button {
  border: none;
  outline: 0;
  display: inline-block;
  padding: 8px;
  color: white;
  background-color: #333333;
  text-align: center;
  cursor: pointer;
  width: 100%;
  font-size: 18px;
}

a {
  text-decoration: none;
  font-size: 22px;
  color: black;
}

button:hover,
a:hover {
  opacity: 0.7;
}

.card h1 {
  font-family: "Montserrat", sans-serif;
  padding-left: 10px;
  padding-right: 10px;
  color: #e16817;
}

.card p {
  font-family: "Montserrat", sans-serif;
}

.fa {
  color: #333333;
}

.aboutTable {
  border-spacing: 20px;
  width: 100%;
}

/* ----- Navbar ----- */

.navContainer {
  width: 100%;
  font-family: "Anton", sans-serif;
  min-height: 70px;
  overflow: hidden;
  position: fixed;
  z-index: 200;
  display: inline-block;
  background-color: #333333;
  -webkit-box-shadow: 10px 10px 30px -3px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: 10px 10px 30px -3px rgba(0, 0, 0, 0.75);
  box-shadow: 10px 10px 30px -3px rgba(0, 0, 0, 0.75);
}

.logo {
  width: 20%;
  display: inline;
}

#navLogo {
  height: 3em;
  float: left;
  margin-top: 10px;
  margin-left: 10px;
}

.logoText {
  text-decoration: none;
  font-size: 1.5em;
  color: #e16817;
  float: left;
  display: inline;
  margin-top: 15px;
  margin-left: 10px;
}

.nav {
  display: inline;
  float: right;
  margin-right: 25px;
  margin-top: 15px;
}

.nav a {
  text-decoration: none;
  color: #eeeeee;
  font-size: 1.5em;
  margin-left: 30px;
}

.nav #covid {
  color: red;
}

.nav a:hover {
  text-decoration: underline;
  color: #e16817;
}

#active {
  color: #e16817;
}

.solid {
  background-color: #333333;
  transition: background-color 0.4s ease 0s;
  -webkit-box-shadow: 0px 10px 15px -8px rgba(0, 0, 0, 0.62);
  -moz-box-shadow: 0px 10px 15px -8px rgba(0, 0, 0, 0.62);
  box-shadow: 0px 10px 15px -8px rgba(0, 0, 0, 0.62);
}

.logoChange {
  color: #e16817;
}

/* ----- Mobile Navbar ----- */

.mobileNav {
  display: none;
}

a {
  text-decoration: none;
  color: #eeeeee;
  letter-spacing: 1px;
  font-family: "Anton", sans-serif;
  transition: color 0.3s ease;
}

a:hover {
  color: #e16817;
}

#menuToggle {
  display: block;
  position: relative;
  top: 25px;
  left: 25px;

  z-index: 1;

  -webkit-user-select: none;
  user-select: none;
}

#menuToggle input {
  display: block;
  width: 40px;
  height: 32px;
  position: absolute;
  top: -7px;
  left: -5px;

  cursor: pointer;

  opacity: 0;
  z-index: 2;

  -webkit-touch-callout: none;
}

#menuToggle span {
  display: block;
  width: 33px;
  height: 4px;
  margin-bottom: 5px;
  position: relative;

  background: #e16817;
  border-radius: 3px;

  z-index: 1;

  transform-origin: 4px 0px;

  transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1),
    background 0.5s cubic-bezier(0.77, 0.2, 0.05, 1), opacity 0.55s ease;
}

#menuToggle span:first-child {
  transform-origin: 0% 0%;
}

#menuToggle span:nth-last-child(2) {
  transform-origin: 0% 100%;
}

#menuToggle input:checked ~ span {
  opacity: 1;
  transform: rotate(45deg) translate(-2px, -1px);
  background: #e16817;
}

#menuToggle input:checked ~ span:nth-last-child(3) {
  opacity: 0;
  transform: rotate(0deg) scale(0.2, 0.2);
}

#menuToggle input:checked ~ span:nth-last-child(2) {
  transform: rotate(-45deg) translate(0, -1px);
}

#menu {
  position: absolute;
  width: 300px;
  margin: -100px 0 0 -50px;
  padding: 50px;
  padding-top: 125px;

  background: #333333;
  list-style-type: none;
  -webkit-font-smoothing: antialiased;
  /* to stop flickering of text in safari */

  transform-origin: 0% 0%;
  transform: translate(-100%, 0);

  transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1);
  -webkit-box-shadow: 10px 10px 30px -3px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: 10px 10px 30px -3px rgba(0, 0, 0, 0.75);
  box-shadow: 10px 10px 30px -3px rgba(0, 0, 0, 0.75);
}

#menu li {
  padding: 10px 0;
  font-size: 22px;
}

#menuToggle input:checked ~ ul {
  transform: none;
}

.mobileNavDiv {
  display: none;
}

.mobileNavText {
  padding-left: 70px;
  font-family: "Anton", sans-serif;
  color: #e16817;
  font-size: 23px;
  margin-top: -8px;
}

/* ----- Page Content ----- */

.pageContent {
  padding-top: 100px;
  width: 75%;
  margin: auto;
  text-align: center;
  margin-bottom: 20px;
}

.contentHeader {
  text-align: center;
  font-family: "Anton", sans-serif;
  letter-spacing: 1px;
  font-size: 50px;
  color: #e16817;
}

/* ----- Footer ----- */

footer {
  background-color: #333333;
  color: #e16817;
  font-family: "Montserrat", sans-serif;
  width: 100%;
  height: auto;
}

footer table {
  padding-top: 20px;
  padding-bottom: 20px;
  margin: auto;
  width: 100%;
}

footer table tr {
}

#phoneNumber {
  text-align: left;
  padding-left: 20px;
}

#emailAddress {
  text-align: right;
  padding-right: 20px;
}

#copyright {
  text-align: center;
}

.footerTable.mobile {
  display: none;
}

.warning {
  color: #c31619;
  font-weight: bold;
  text-decoration: underline;
}

/* ----- RESPONSIVE ----- */

@media only screen and (min-width: 150px) and (max-width: 600px) {
  body {
    width: 100%;
    overflow-x: hidden;
    margin-top: -30px;
  }

  .pageContent {
    width: 90%;
    margin: auto;
  }

  #left {
    padding: 0;
    padding-bottom: 10px;
  }

  #right {
    padding: 0;
    padding-bottom: 10px;
  }

  .table.desktop {
    display: none;
  }

  .table.mobile {
    display: inline;
  }

  .image.mobile {
    width: 100%;
  }

  .slogan {
    display: none;
  }

  .headerButton {
    display: none;
  }

  .navContainer.desktop {
    display: none;
  }

  .navBackground.desktop {
    display: none;
  }

  .mobileNav {
    display: inline;
    position: fixed;
    z-index: 200;
  }

  .mobileNavDiv {
    display: inline;
    background-color: #333333;
    width: 100%;
    height: 70px;
    z-index: 199;
    position: fixed;
  }

  .pageContent {
    margin-top: 30px;
    margin-bottom: 30px;
  }

  .logo.mobile {
    float: right;
    margin-right: 5px;
    margin-top: 7px;
    max-height: 65px;
    max-width: 65px;
  }

  .footerTable.desktop {
    display: none;
  }

  .footerTable.mobile {
    display: inline;
    width: 100%;
  }

  #phoneNumber {
    text-align: center;
    padding: 0;
    padding-top: 10px;
  }

  #copyright {
    text-align: center;
    padding: 0;
    padding-top: 10px;
  }

  #emailAddress {
    text-align: center;
    padding: 0;
    padding-top: 10px;
  }

  .activityInfo {
    font-size: 15px;
  }

  .aboutTable.desktop {
    display: none;
  }

  .aboutTable.mobile {
    display: inline;
  }
}
