/*****************************
           BASE
*****************************/

* {
  box-sizing: border-box;
}

body {
  background-color: #F5F5F5;
}

html {
  font-size: 1rem;
}

.uppercase {
  text-transform: uppercase;
}

img {
  width: 100%;
}

.page {
  background-color: white;
}

.inner-page {
  max-width: 1029px;
  margin: 0 auto;
  padding: 16px 12px 40px 12px;
}
.navigation {
    background-color: #2C2C2C; /* Sophisticated Charcoal */
}

.navigation a {
    color: #F5F5F5; /* Off-White links */
}

.navigation a:hover {
    color: #D4AF37; /* Muted Gold on hover */
}
.navigation .active a {
    color: #D4AF37 !important;
}
.product-link {
  background-color: #D4AF37;
  padding: 10px;
  margin: 10px;
  display: inline-block;
  text-decoration: none;
  color: white;
  font-weight: bold;
  border-radius: 10px;
  border: none;
}

.product-link:hover {
  text-decoration: none;
}

@media screen and (min-width: 768px) {
  .inner-page {
    padding: 96px 32px 65px 32px;
  }
}

/*****************************
           HEADER
*****************************/

.current-menu-item {
  color: white !important;
}

.navigation {
  height: 70px;
  background: black;
}

.brand {
  position: absolute;
  padding-left: 20px;
  float: left;
  line-height: 70px;
  text-transform: uppercase;
  font-size: 1.4em;
}

.brand a,
.brand a:visited {
  color: #f97e1f;
  text-decoration: none;
}

.nav-container {
  margin: 0 auto;
}

nav {
  float: right;
}

nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

nav ul li {
  float: left;
  position: relative;
}
nav ul li a {
  display: block;
  padding: 0 20px;
  line-height: 70px;
  background: black;
  color: #f97e1f;
  text-decoration: none;
}

nav ul li a:hover {
  text-decoration: none;
  color: white;
}
/*nav ul li a:hover, nav ul li a:visited:hover {
  background: #2581dc;
  color: #f97e1f;
}*/
nav ul li a:not(:only-child):after,
nav ul li a:visited:not(:only-child):after {
  padding-left: 4px;
  content: " ▾";
}
/*nav ul li ul li {
  min-width: 190px;
}*/
/*nav ul li ul li a {
  padding: 15px;
  line-height: 20px;
}*/
/*.nav-dropdown {
  position: absolute;
  display: none;
  z-index: 1;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.15);
}*/
/* Mobile navigation */
.nav-mobile {
  display: none;
  position: absolute;
  top: 0;
  right: 0;
  background: black;
  height: 70px;
  width: 70px;
}

@media only screen and (max-width: 940px) {
  /* max-width: 798px */
  .nav-mobile {
    display: block;
  }
  nav {
    width: 100%;
    padding: 70px 0 0;
  }
  nav ul {
    display: none;
  }
  nav ul li {
    float: none;
  }
  nav ul li a {
    padding: 15px;
    line-height: 20px;
  }
  /*  nav ul li ul li a {
    padding-left: 30px;
  }
  .nav-dropdown {
    position: static;
  }*/
}

@media screen and (min-width: 941px) {
  /* min-width: 799px */
  .nav-list {
    display: block !important;
  }
}

@media screen and (min-width: 400px) {
  .brand {
    font-size: 2em;
  }
}

#nav-toggle {
  position: absolute;
  left: 18px;
  top: 22px;
  cursor: pointer;
  padding: 10px 35px 16px 0px;
}

#nav-toggle span,
#nav-toggle span:before,
#nav-toggle span:after {
  cursor: pointer;
  border-radius: 1px;
  height: 3px;
  width: 25px;
  background: #f97e1f;
  position: absolute;
  display: block;
  content: "";
  transition: all 300ms ease-in-out;
}

#nav-toggle span:before {
  top: -10px;
}

#nav-toggle span:after {
  bottom: -10px;
}

#nav-toggle.active span {
  background-color: transparent;
}

#nav-toggle.active span:before,
#nav-toggle.active span:after {
  top: 0;
}

#nav-toggle.active span:before {
  transform: rotate(45deg);
}

#nav-toggle.active span:after {
  transform: rotate(-45deg);
}

#social-media {
  display: block;
  text-align: right;
  background: #262626;
  padding-right: 10px;
}

#social-media li {
  display: inline-block;
}

#social-media li a {
  padding: 5px;
  display: inline-block;
}

#social-media ul {
  margin: 0;
}

#social-media li:hover {
  opacity: 0.6;
}

#social-media img {
  width: 20px;
}

/*****************************
           INDEX
*****************************/
#index-content {
  text-align: center;
}

#index-content h2 {
  font-size: 22px;
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
  letter-spacing: -0.5px;
  margin-bottom: 35px;
}

#index-content p {
  font-size: 18px;
  letter-spacing: 1.12px;
  line-height: 1.4em;
  color: #433d3d;
  font-weight: 300;
  font-family: "Abel", sans-serif;
  padding: 0 15px;
}

.big-image {
  height: 40%;
  width: 100%;
  position: relative;
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
}

.manassas-img {
  background-image: url("../img/salon-5.jpg");
}

.springfield-img {
  background-image: url("../img/salon-7.jpg");
}

#springfield-location {
  margin-top: 25px;
}

.overlay {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.3);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.find-us-btn {
  margin-top: 30px;
}

.find-us-btn:link,
.find-us-btn:visited {
  background-color: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 10px 20px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
}

.find-us-btn:hover,
.find-us-btn:active {
  background-color: #f97e1f;
  color: white;
}

.egift-card-container {
  width: 65vw;
  margin: 0 auto;
  margin-top: 40px;
}

@media screen and (min-width: 360px) {
  #index-content h2 {
    font-size: 30px;
    font-family: "Oswald", sans-serif;
    text-transform: uppercase;
    letter-spacing: -0.5px;
    margin-bottom: 35px;
  }

  .egift-card-container {
    width: 300px;
  }
}

@media screen and (min-width: 600px) {
  #location-container {
    text-align: center;
  }

  #springfield-location {
    margin-top: 0;
  }

  .egift-card-container {
    width: 400px;
  }
}

/*****************************
           SERVICES
*****************************/

#services-content p {
  font-size: 18px;
  letter-spacing: 1.12px;
  line-height: 1.6em;
  color: #433d3d;
  font-weight: 300;
  font-family: "Abel", sans-serif;
  text-align: center;
  padding-top: 30px;
}

.products-style {
  color: #f97e1f;
  font-size: 20px;
}

.item-wrapper {
  padding-bottom: 36px;
}

.items-title {
  text-align: center;
  font-size: 1.5em;
  text-transform: uppercase;
  padding-bottom: 18px;
  margin-bottom: 36px;
  margin-top: 36px;
  letter-spacing: 1.2px;
}

.item-title {
  display: inline-block;
  font-size: 21px;
  letter-spacing: 1.12px;
  font-family: "Abel", sans-serif;
}

.item-price {
  display: inline-block;
  float: right;
  font-size: 19px;
  font-family: "Abel", sans-serif;
}

.item-extra-info {
  text-indent: 34px;
}

.service-guarantee-note {
  margin-top: 60px;
  line-height: 1.6em;
  font-family: "Abel", sans-serif;
  font-size: 16px;
}

.service-page:after {
  content: "";
  display: block;
  clear: both;
}

.results-image {
  margin-top: 45px;
}

@media screen and (min-width: 650px) {
  #services-content p {
    padding: 0 30px;
  }

  .pricing-content-wrapper {
    width: 55%;
    float: left;
  }

  .results-images-wrapper {
    float: right;
    width: 40%;
  }
}

/*****************************
           CONTACT
*****************************/

.contact-page:after {
  content: "";
  display: block;
  clear: both;
}

.contact-title {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 20px;
  letter-spacing: 1.2px;
  margin-bottom: 12px;
  text-align: center;
  padding: 20px 0;
  border-bottom: 5px solid #f97e1f;
}

.contact-page-address,
.contact-page-hours {
  line-height: 1.4em;
  font-size: 17px;
  font-family: "Abel", sans-serif;
  letter-spacing: 1.12px;
}

.contact-page-hours {
  margin-top: 30px;
}

.contact-page-hours span {
  font-size: 21px;
}

.google-map-bottom,
.moms-picture {
  display: none;
}

@media screen and (min-width: 650px) {
  .contact-title {
    font-size: 1.7em;
    padding: 0;
    text-align: left;
  }

  .contact-page-address,
  .contact-page-hours {
    font-size: 19px;
  }

  .google-map-top {
    display: none;
  }

  .moms-picture {
    display: inline-block;
  }

  .google-map-bottom {
    display: block;
  }
}

/*****************************
           GOOGLE MAPS
*****************************/

.google-maps-wrapper {
  width: 100%;
  margin: 0 auto;
  padding-bottom: 20px;
}

.google-maps {
  position: relative;
  padding-bottom: 55%; /* This is the aspect ratio */
  height: 0;
  overflow: hidden;
}

/* Makes map responsive */
.google-maps iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
}

@media screen and (min-width: 600px) {
  .google-maps-wrapper {
    padding-bottom: 50px;
    width: 90%;
  }
}

/*****************************
           SPECIALS
*****************************/

.service-page {
  text-align: center;
}

.specials-img {
  margin-top: 50px;
  text-align: center;
  /* border: 5px dashed #10C459; */
  padding: 10px;
  width: 50%;
}

@media screen and (min-width: 600px) {
  /* .specials-img {
    border: 10px dashed #10c459;
  } */
}

/*****************************
           REVIEWS
*****************************/

.reviews-title {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 18px;
  letter-spacing: 1.2px;
  text-align: center;
  font-weight: bold;
  color: #4a4a4a;
  margin-top: 28px;
}

.quote-wrapper {
  max-width: 92%;
  margin: 0 auto;
}

.quotation-marks {
  max-width: 25px;
  margin: 0 auto;
  display: block;
  padding-bottom: 18px;
  padding-top: 45px;
}

.quote-paragraph {
  line-height: 1.65em;
  font-size: 17px;
  color: rgba(26, 26, 26, 0.85);
  text-align: center;
  font-family: "Times New Roman";
  letter-spacing: 1px;
}

.quoter-name {
  color: rgba(26, 26, 26, 0.5);
  font-family: "Times New Roman";
  text-align: center;
  font-size: 19px;
  letter-spacing: 1px;
  padding-top: 18px;
}

@media screen and (min-width: 650px) {
  .reviews-title {
    font-size: 1.5em;
    margin-top: 0;
  }

  .left-side-content-wrapper {
    width: 48%;
    float: left;
  }

  .right-side-content-wrapper {
    float: right;
    width: 48%;
  }

  #top-quote:after {
    content: "\a";
    white-space: pre;
  }
  .quote-paragraph {
    font-size: 19px;
  }
}

/*****************************
           FOOTER
*****************************/

footer {
  background-color: #d1d1d1;
  /*  background-color: black;
  color: rgba(239,133,26,.9);*/
  padding: 15px 15px;
}

#inner-footer {
  max-width: 1020px;
  margin: 0 auto;
  font-family: "Oswald", sans-serif;
  font-size: 16px;
  line-height: 1.5em;
  letter-spacing: 0.9px;
}

#inner-footer:after {
  content: "";
  display: block;
  clear: both;
}

.address {
  text-align: center;
  margin-top: 43px;
  font-weight: 300;
}

.manassas-address {
  margin-top: 20px;
  text-align: center;
  font-weight: 300;
}

#copyright {
  margin: 0 auto;
  padding-top: 30px;
  text-align: center;
  font-family: "Oswald", sans-serif;
  font-weight: 300;
}

@media screen and (min-width: 540px) {
  footer {
    padding: 20px 20px;
  }

  #inner-footer {
    padding: 44px 36px;
  }

  .address {
    float: right;
    text-align: right;
    margin-top: 0;
  }

  .footer-hours {
    text-align: left;
  }

  .manassas-address {
    margin-top: 0;
    float: left;
    text-align: left;
  }

  #copyright {
    padding-top: 0;
  }
}

/*****************************
        GALLERY PAGE
*****************************/

.container {
  padding: 0 0.3rem;
}

.card {
  border: none;
  width: 100%;
  height: 7rem;
  object-fit: cover;
  overflow: hidden;
  object-position: bottom;
}

.tz-gallery {
  padding: 10px;
  padding-top: 20px;
}

.tz-gallery .lightbox img {
  transition: 0.2s ease-in-out;
  box-shadow: 0 2px 3px rgba(0, 0, 0, 0.2);
}

.tz-gallery .lightbox img:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
}

.tz-gallery img {
  border-radius: 2%;
}

.tz-gallery .card {
  margin-bottom: 0.5rem;
}

.baguetteBox-button {
  background-color: transparent !important;
}

#baguetteBox-overlay .full-image img {
  max-width: 85%;
}

.tz-gallery .col-6 {
  padding-left: 5px;
  padding-right: 5px;
}

.row:before,
.row:after {
  display: flex !important;
}

@media (min-width: 375px) {
  .container {
    padding: 0 0.4rem;
  }

  .card {
    height: 9rem;
  }
}

@media (min-width: 425px) {
  .container {
    padding: 0 0.4rem;
  }

  .card {
    height: 10.5rem;
  }
}

@media (min-width: 475px) {
  .container {
    padding: 0 0.4rem;
  }

  .card {
    height: 12rem;
  }
}

@media (min-width: 525px) {
  .container {
    padding: 0 0.45rem;
  }

  .card {
    height: 13.5rem;
  }
}

@media (min-width: 576px) {
  .container {
    padding: 0.1rem 0rem;
  }

  .card {
    height: 14.5rem;
  }
}

@media (min-width: 768px) {
  body {
    padding: 0;
  }

  .card {
    height: 10rem;
  }

  .container.gallery-container {
    border-radius: 0;
  }
}

@media (min-width: 992px) {
  .container {
    padding: 0.15rem 0.2rem;
  }

  .card {
    height: 14.5rem;
  }
}

/*****************************
        CORONAVIRUS
*****************************/

.coronavirus-notification p {
  text-align: center;
  font-size: 18px;
  letter-spacing: 1.12px;
  line-height: 1.4em;
  color: #433d3d;
  font-weight: 300;
  font-family: "Abel", sans-serif;
  padding: 0 15px;
  border: 2px solid #ff4500;
  padding: 12px;
}
