@import url(https://fonts.googleapis.com/css?family=Lato:300,300italic,400,700,700italic);

* {
  padding: 0;
  margin: 0;
  font-family: "Lato";
  color: #ffffff;
  text-decoration: none;
}

.menu.index img {
  border: 0;
}

.menu {
  position: sticky;
  height: 60px;
  background-color: #000000;
  display: flex;
  align-items: center;
}

.nav-logo {
  padding: 10px;
  height: 45px;
  width: 45px;
}

.menu .links {
  display: flex;
  justify-content: flex-end;
  width: 100%;
  padding-right: 20px;
}

.menu .links a {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  margin: 0 25px;
  text-transform: uppercase;
  border-bottom: 5px solid transparent;
  transition: border-bottom 500ms ease;
}

.menu .links a:hover {
  border-bottom: 5px solid #fff000;
}

.button {
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 12px;
  padding-top: 8px;
  padding-bottom: 8px;
  padding-left: 14px;
  padding-right: 14px;
  border: solid 2px #ffffff;
  border-radius: 4px;
}

.main-content {
    background-image: linear-gradient(to bottom, rgba(20, 20, 20, 0.6), rgba(20, 20, 20, 0.6)), url("../assets/images/background-image.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    height: 100vh;
}

.main-content .content-wrapper {
    max-width: 500px;
    margin: auto;
    padding-top: 200px;
}

.main-content .button-group {
  display: flex;
  justify-content: space-between;
  padding-top: 50px;
}

.main-content .button-group .book-button {
  background-color: #ffffff;
  color: #000000;
  transition: color 120ms ease, background-color 100ms ease;
}

.main-content .button-group .book-button:hover {
  background-color: #666666;
  border: solid 2px #666666;
  color: #ffffff;
}

.main-content .button-group .directions-button {
  transition: color 120ms ease, background-color 100ms ease;
}

.main-content .button-group .directions-button:hover {
  background-color: #ffffff;
  color: #000000;
}

.contact {
  background-image: linear-gradient(to bottom, rgba(20, 20, 20, 0.8), rgba(20, 20, 20, 0.8)), url("../assets/images/bokeh-background.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  height: 100vh;
}

.contact .content-wrapper {
  max-width: 80%;
  margin: auto;
  display: flex;
  justify-content: space-around;
  padding-top: 200px;
}

.contact .content-wrapper .map-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.hours-cta {
  margin-top: 50px;
  display: flex;
  flex-direction: column;
}

.hours-list {
  margin-bottom: 50px;
  text-align: left;
}

.hours-list thead tr th {
  text-transform: uppercase;
  font-size: 10px;
  padding-bottom: 10px;
}

.hours-list tbody th {
  padding-right: 18px;
}

.hours-row3 td {
  font-weight: 400;
  font-size: 12px;
  padding-top: 10px;
}

.contact-header {
  text-transform: uppercase;
  font-size: 10px;
  padding-bottom: 10px;
}

.contact-us-wrapper {
  display: flex;
  flex-direction: column;
  max-width: 300px;
  line-height: 21px;
}

.banner {
  background-color: #fff000;
  padding: 20px;
  text-align: center;
}

.banner .banner-link {
  color: #eb4034;
  text-decoration: underline;
  cursor: pointer;
}

.banner .banner-link:hover {
  color: #a85d58;
}

.banner .banner-content {
  color: #000000;
  font-size: 18px;
  font-weight: 600;
  line-height: 24px;
}

.banner .banner-content .banner-text {
  max-width: 900px;
  margin: auto;
  padding-top: 10px;
  color: #000000;
  padding: 15px;
  text-align: left;
}


/** copy pasta from old eclipzsalonandspa.com - with some minor alterations*/
.footer-wrapper {
  display: flex;
  justify-content: space-between;
  background-color: #000000;
  min-height: 80px;
  padding: 50px;
  font-family: "Lato";
}

.fb-icon {
  height: 13px;
  padding-right: 12px;
}

.address-wrapper {
  text-align: left;
  margin: 0;
  line-height: 21px;
}

.footer-links-wrapper {
  flex-direction: column;
  justify-content: unset;
  min-width: 100px;
  padding-left: 20px;
}

.footer-links {
  padding-bottom: 10px;
}

.footer-links:hover {
  color: #aaaaaa;
}

.footer-wrapper .social-link:hover {
  color: #aaaaaa;
}

.footer-wrapper .phone-number:hover {
  color: #aaaaaa;
}

.footer-social-wrapper {
  justify-content: flex-start;
  min-width: 100px;
}

.copyright-wrapper {
  text-align: center;
  color: #444444;
  font-size: 10px;
  align-self: flex-end;
}

@media (max-width: 768px) {
    .contact .content-wrapper {
        padding-top: 80px;
        flex-direction: column;
        align-items: center;
        justify-content: space-around;
        height: 80vh;
    }

    .footer-wrapper {
        padding: 40px;
        height: 200px;
        flex-direction: column;
        align-items: center;
        justify-content: space-between;
    }

    .footer-wrapper .address-body {
        text-align: center;
        display: block;
        margin: auto;
        max-width: 200px;
    }

    .footer-wrapper .copyright-wrapper {
        align-self: center;
    }
}

@media (max-width: 450px) {
    .main-content .content-wrapper {
        max-width: 300px;
    }
    
    .main-content .button-group {
        width: 300px;
    }

    .contact .content-wrapper {
        margin: auto;
        padding-top: 80px;
        flex-direction: column;
        align-items: center;
    }

    .contact .main-content {
        max-width: 300px;
    }

    .contact .map {
        width: 300px;
        height: 200px;
        margin: 0;
        overflow: hidden;
    }

    .footer-wrapper {
        padding: 40px;
        height: 200px;
        flex-direction: column;
        align-items: center;
        justify-content: space-between;
    }

    .footer-wrapper .address-body {
        text-align: center;
        display: block;
        margin: auto;
        max-width: 200px;
    }

    .footer-wrapper .copyright-wrapper {
        align-self: center;
    }
}

@media (max-width: 360px) {
    .main-content .content-wrapper {
        max-width: 300px;
    }
    
    .main-content .button-group {
        width: 300px;
    }

    .contact {
        height: 700px;
    }

    .contact .content-wrapper {
        margin: auto;
        padding-top: 80px;
        flex-direction: column;
        align-items: center;
    }

    .contact .main-content {
        max-width: 300px;
    }

    .contact .map {
        width: 300px;
        height: 200px;
        margin: 0;
        overflow: hidden;
    }

    .content-wrapper .contact-us-wrapper .contact-body {
        display: block;
    }

    .footer-wrapper {
        padding: 40px;
        height: 200px;
        flex-direction: column;
        align-items: center;
        justify-content: space-between;
    }

    .footer-wrapper .address-body {
        text-align: center;
        display: block;
        margin: auto;
        max-width: 200px;
    }

    .footer-wrapper .copyright-wrapper {
        align-self: center;
    }
}
