@import url('https://fonts.googleapis.com/css2?family=Cormorant+Upright:wght@300;400;500;600;700&family=Palanquin:wght@100&display=swap');

body {
  background: #f6e6db;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  overflow: auto;
}

body.nav-open {
  overflow: hidden;
}

*:focus {
    outline: none;
    border: none;
}

.cormorant-upright-light {
  font-family: "Cormorant Upright", serif;
  font-weight: 300;
  font-style: normal;
}

.palanquin-thin {
  font-family: "Palanquin", sans-serif;
  font-weight: 100;
  font-style: normal;
}
/* * {
  font-family: var(--cLight);
} */

:root {
  --cLight: "Cormorant Upright", serif;
  --palanquin: "Palanquin", serif;
}


h2 {
  position: relative;
  display: inline-block;
  font-family: var(--cLight);
  font-weight: 300;
  font-size: clamp(3.92rem, 1.5625rem + 5.2083vw, 6.25rem);
  line-height: 0.8;
  margin-top: 0;
  padding-top: 0;

  -webkit-text-fill-color: black;
  -webkit-text-stroke-color: white;
  -webkit-text-stroke: 0.5px;
}

/* h2::before {
  content: '';
  display: block;
  position: absolute;
  width: 90%;
  height: 20px;
  background: black;
  transform: skewY(10deg) skewX(-60deg);
  opacity: 0.6;
  z-index: -2;
  top: 80%;
} */

h2::after {
  /* content: '';
  display: block;
  position: absolute;
  width: 105%;
  height: 40px;

  transform: skewY(0deg) skewX(-60deg);
  opacity: 0.7;
  z-index: -1;
  top: 70%;
  border-bottom: 5px solid yellow;
  border-right: 8px solid yellow; */

  /* animation-duration: 10s;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
  animation-direction: alternate-reverse;
  animation-name: skeOne; */
}

/* @keyframes skeOne {
  0% {width: 0%;}
  100% {width: 96%;}
} */

h2 small {
  font-size: 52%;
}

h3 {
  font-family: var(--cLight);
  font-weight: 500;
  font-size: clamp(1.75rem, 1rem + 0.8333vw, 2rem);
}

p {
  font-family: var(--palanquin);
  font-weight: 400;
  font-size: clamp(0.95rem, 0.625rem + 0.4167vw, 1rem);
  line-height: 1.4;
}

ul {
  padding: 0;
}

#page-nav {
  display: none;
}

#page-nav ul li a{
  color: black;
  text-decoration: none;
}

#page-nav ul li a:hover {
  font-style: italic;
}

ul li {
  font-family: var(--cLight);
  font-size: 22px;
  margin: 5px;
  padding: 5px 15px;
  border-radius: 5px;
  display: inline-grid;
}

.desk-only {
  display: none;
}

.services-list ul li {
  background: white;
  border: 1px solid;
}

#logo-fixed {
  display: none;
  padding: 2.5%;
  width: 90px;
  left: 50%;
  transform: translate(-50%, 0px);
}

#logo-fixed svg {
  width: 100%;
}

#page-nav {
  position: fixed;
  right: 0;
  padding: 2.5%;
}

#page-nav ul {
  display: grid;
  margin: 0;
  padding: 0;
  font-family: var(--cLight);
}

#site-wrap {
  overflow: hidden;
}

main {
  position: relative;
  width: 90%;
  max-width: 1240px;
  margin: 15% auto;
}

picture {
  position: relative;
}

picture::before {
  /* content: '';
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  background: white;
  z-index: 1; */
}


img {
  position: relative;
  width: 100%;
  /* filter: drop-shadow(35px 35px 102px rgba(0, 0, 0, 0.25)); */
  box-shadow: 35px 35px 102px rgba(0, 0, 0, 0.25);
  border-radius: 3px;
  border: 20px solid white;
  transition: border 666ms;
}


.hidden-img {
  opacity: 0;
  filter: blur(15px);
  transform: translateY(20px);
  transition: all 2s cubic-bezier(0.16, 1, 0.3, 1);
}

.show-img {
  opacity: 1;
  filter: blur(0px);
  transform: translateY(0px);
}

/* @media(prefers-reduced-motion) {
  .hidden {
    transition: none;
  }
} */


#nav-bar {
  background: black;
  position: fixed;
  z-index: 100;
  width: 100%;
  padding: 10px;
  text-align: center;
}

#nav-bar a {
  font-family: var(--palanquin);
  color: white;
  text-decoration: none;
}

#mobile-navigation {
    position: fixed;
    z-index: 100;
    top: 0;
    left: 0;
    width: 100%;
    background: black;
    text-align: center;
}

.mobile-bar {
  display: flex;
  position: relative;
  justify-content: space-between;
  align-items: center;
  padding: 5px 20px;
  z-index: 10;
  border-bottom: 2px solid white;
  background: black;
}

.mobile-logo img {
  border: none;
}

.mobile-bar span {
  color: white;

}

.mobile-bar span a {
    font-family: var(--palanquin);
  color: white;
  text-decoration: none;
}

#mobile-trigger {
  height: 20px;
  position: relative;
}

#mobile-trigger::after,
#mobile-trigger::before {
  content: '';
  display: block;
  position: absolute;
  width: 100%;
  height: 2px;
  background: white;
  transition: all 666ms;
}

#mobile-trigger.closed::after {
  bottom: 49%;
}

#mobile-trigger.closed::before {
  top: 49%;
}

#mobile-trigger::before {
  top: 0;
}

#mobile-trigger::after {
  bottom: 0;
}

.mobile-links-inner {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.mobile-links-inner li a {
  color: white;
  text-decoration: none;
}

.mobile-bar > div {
  width: 50px;
}

#mobile-slide {
  position: absolute;
  width: 100%;
  top: 0;
  transform: translate3d(0, -100%, 0);
  transition: transform 333ms cubic-bezier(.666,0,.333,1);
  background: rgba(0,0,0,0.88);
  min-height: 100vh;
}

#mobile-slide.open {
    transform: translate3d(0, 0px, 0);
}

.page-sec {
  display: block;
  margin-bottom: 40%;
  padding-top: 22%;
}

.hero-section {
  /* margin: auto; */
}

.services-section {
  position: relative;
}

.services-list-container {
  width: 100%;
}

.services-list {
  display: grid;
  grid-template-columns: 1fr;

}

.services-list ul {
  display: grid;
  grid-template-columns: 1fr;
  text-align: center;
}

.services-list p {
  width: 100%;
  margin-left: 0px;
  padding: 10px;
  color: white;
  background-color: black;
  border-radius: 5px;
}

.picture-collage {
  display: none;
  position: relative;
  width: 80%;
  z-index: -1;
  top: 0%;
  margin: 0 auto;
}

.picture-collage picture {
  position: absolute;
  width: 100%;
}

.about-section .inner {
  display: grid;
  grid-template-columns: 1fr;
  justify-content: center;
  align-items: center;
  grid-gap: 5%;
}

.about-section .inner span {
  display: block;
  font-size: 16px;
  text-align: left;
  font-family: var(--palanquin);
  line-height: 1.5;
  /* order: 1; */
}

.about-section .inner picture {
  /* order: 2; */
}

.policies-section .inner {
  display: grid;
  grid-template-columns: 1fr;
}

.icon-block {
  text-align: center;
}

.icon-block .con-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  grid-gap: 25px;
}

.icon-block img {
  border: 0;
  box-shadow: none;
}

.stylists-section {

}

.stylists-section .section-title {
  text-align: center;
}

.stylists-section .inner {
  display: grid;
  width: 100%;
  margin: 0 0 30px 0;
}

.stylist-block {
  /* display: grid;
  grid-template-columns: 1fr;
  grid-gap: 1.2em; */
  margin-bottom: 4.2em;
}

.stylist-photo {
  position: relative;
  height: 0;
  padding-bottom: 100%;
  margin-bottom: 2em;
}

.stylist-photo span {
  font-family: var(--cLight);
  position: absolute;
  bottom: 0;
  z-index: 1;
  font-weight: bold;
  font-size: clamp(1.5rem, 1.125rem + 1.25vw, 1.98rem);
  padding: 20px;
  background: white;
}

.read-more-button {
  font-style: italic;
  font-size: 12px;
  color: black;
  text-decoration: none;
}

.book-follow-ctas {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 15px;
}

.book-follow-ctas a,
.slide-btn {
  position: relative;
  display: block;
  background: none;
  border: 1px solid black;
  padding: 15px;

  border-radius: 5px;
  text-align: center;
  margin-top: 15px;
  text-decoration: none;
  overflow: hidden;

}

.mobile-book-now-nav a {
  position: relative;
  display: block;
  background: none;
  border: 0.5px solid white;
  padding: 15px;
  color: white;
  border-radius: 5px;
  text-align: center;
  margin-top: 15px;
  text-decoration: none;
  overflow: hidden;
}

/* .follow-btn {
  background: none;
} */

.book-follow-ctas a span,
.slide-btn span {
  position: relative;
  z-index: 1;
  color: black;
  transition: color 666ms cubic-bezier(0.16, 1, 0.3, 1);
  font-size: 14px;
}


.book-follow-ctas a::after,
.slide-btn::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: white;
  top: 0;
  left: 0;
  transform: translate(-100%, 0);
  transition: transform 666ms cubic-bezier(0.16, 1, 0.3, 1);
}

.book-follow-ctas a:hover span,
.slide-btn:hover span {
  color: black;
}

.book-follow-ctas a:hover::after,
.slide-btn:hover::after {
  transform: translate(0%, 0);
}

#location {

}

.location-section .inner {
  display: grid;
}

.location-section .inner picture {
  order: 2;
}

.location-section .inner div {
  order: 1;
}

.location-info .address {
  font-family: var(--cLight);
  font-size: clamp(1.125rem, 0.8125rem + 1.0417vw, 1.75rem);
}

.moreText {
  display: none;
}

#join-our-team {
  position: relative;

  background: #593833;
  border-radius: 5px;
  width: 100%;
  min-height: 350px;
  margin: 10% auto 0;
  padding: 10% 5%;
  text-align: center;
  background-image: url('./images/Second-Nature-Salon.jpg');
  background-blend-mode: overlay;
  background-size: cover;
  background-position: bottom;

  box-shadow: 35px 35px 102px rgba(0, 0, 0, 0.25);
}

#join-our-team .cta-area {
  position: absolute;
  width: 80%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

#join-our-team h3 {
  font-size: clamp(2rem, 1.375rem + 2.0833vw, 3.25rem);
}


#join-our-team h3,
#join-our-team a {
  color: white;
  line-height: 0;
}

#join-our-team a {
  position: relative;
  display: inline-block;
  background: none;
  border: 1px solid white;
  padding: 15px;
  border-radius: 5px;
  text-align: center;
  margin-top: 15px;
  text-decoration: none;
  overflow: hidden;
  line-height: 1.5;
}

#join-our-team a::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: white;
  top: 0;
  left: 0;
  transform: translate(-100%, 0);
  transition: transform 666ms cubic-bezier(0.16, 1, 0.3, 1);
}

#join-our-team a span {
  position: relative;
  z-index: 1;
  color: white;
  transition: color 666ms cubic-bezier(0.16, 1, 0.3, 1);
}

#join-our-team a:hover span {
  color: black;
}

#join-our-team a:hover::after {
  transform: translate(0%, 0);
}

#news {

}

#news .inner {
  display: grid;
  grid-template-columns: 1fr;
  justify-content: center;
  align-items: center;
  grid-gap: 5%;
}

footer {
  width: 90%;
  margin: 10% auto 5%;
  padding: 5%;
  border-radius: 15px;
  border: 1px solid;
  background-color: white;
}

footer .top-sec {
  text-align: center;
  border-bottom: 1px solid;
  margin-bottom: 5%;
}

footer .top-sec span {
  display: block;
  margin: 50px;
  font-family: var(--palanquin);
}

footer .mid-sec {
  display: grid;
  grid-template-columns: 1fr;
}

footer .mid-sec a {
  color: black;
  text-decoration: none;
}

footer .socials {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
}

footer .socials a {
  width: 32px;
  margin: 0 32px 0 0;
}


@media only screen and (min-width: 60em) {



  img  {
    border: 40px solid white;
  }

  main {
    position: relative;
    margin: 0 auto;
  }

  ul li {
    font-size: 20px;
  }

  .desk-only {
    display: block;
  }

  .page-sec {
    padding-top: 5%;
    /* margin-bottom: 25%; */
  }

  #mobile-navigation {
    display: none;
  }

  #page-nav {
    display: block;
    position: fixed;
    top: 50%;
    right: 0;
    padding: 2.5%;
    transform: translate(0, -50%);
  }


  #logo-fixed {
    display: block;
    position: fixed;
    top: 50%;
    left: 0%;
    padding: 2.5%;
    width: 12.4%;
    transform: translate(0,0);
  }

  .hero-section.page-sec {
    padding-top: 10%;
  }

  .services-section .inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .picture-collage {
    display: block;
    /* top: 16%; */
  }

  .stylist-block img {
    border: 20px solid white;
  }

  .stylists-section .inner {
    /* display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 5%;
    margin: 10% 0; */
    display: flex;
    flex-wrap: wrap;
    /* justify-content: center; */
    align-items: flex-start;
  }

  .stylist-block {
    /* display: grid;
    grid-template-columns: 1fr;
    grid-gap: 1.2em; */
    flex: 1 1 26%;
    margin: 10% 2.2% 0;
    max-width: 350px;

  }

  .services-list ul {
    grid-template-columns: 1fr 1fr;
  }

  .services-list p {
    width: 100%;
    margin-left: 0px;
    padding: 16px;

  }

  #join-our-team {
    padding: 10%;
    width: 80%;
  }



  .services-list-container {
    width: 83%;
  }


  .about-section .inner {
    grid-template-columns: 1fr 1fr;
  }

  .about-section .inner picture {
    order: 1;
  }

  .about-section .inner span {
    /* order: 2; */
  }


  .policies-section .inner {
    grid-template-columns: .7fr 1.3fr  ;
    align-items: center;
    grid-gap: 5%;
  }

  .location-section .inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .location-section .inner picture {
    order: 1;
  }

  .location-section .inner div {
    order: 2;
  }

  .location-info {
    margin-left: 15%;
  }

  #news .inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }


  footer {
    width: 75%;
  }

  footer .mid-sec {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }


}


@media only screen and (min-width: 72em) {

  main {
    width: 70%;
  }

  .page-sec {
    /* padding-bottom: 10%; */
  }

}



@keyframes fadeinall {
0% {
  opacity: 1; }
97% {
  opacity: 0; }
98% {
  opacity: 0;
  -webkit-transform: translateY(0);
  transform: translateY(0); }
100% {
  opacity: 0;
  -webkit-transform: translateY(-100%);
  transform: translateY(-100%);
  z-index: -1; } }
#fadein {
  opacity: 1;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
  background-color: #FFFFFF;
  z-index: 999;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation: fadeinall 1s normal both;
  animation: fadeinall 1s normal both;
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s; }
