/*ROOT START*/
:root {
/*colours start*/
--lemon1:lemonchiffon;
--lemon2: rgb(253, 246, 181);
--sagegreen: #ccd4b5;
--pink: rgb(244, 213, 213);
--pink2: #ffccd5;
--pink1: #fff0f3;
--baby-blue: #C0E5F7;
--dark-grey: rgb(35, 35, 37);
/*colours end*/

/*font start*/
--Default: Limelight, sans-serif;
--nav-blog-text: Poiret One, sans-serif;
--nata:Nata Sans, sans-serif;
/*font end*/
}
/*ROOT END*/



/*MAIN WRAPPER START*/
/*INCLUDES 
hi there im emily header
welcome text
image of emily next to salon but only for mobile view
*/
.main-wrapper {
  background-color: var(--dark-grey);
  padding-bottom: 40px;
}

.about-me-wrapper{
background-color:  var(--dark-grey);
height: 100px;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
margin-top: 40px;
padding-top: 50px;
}

.hi-there {
  font-family: var(--nata);
  font-weight: 300;
  color: var(--pink2);
}

.im-emily {
  color: var(--lemon1);
  font-style: italic;
  font-weight: 100;
  margin-top: -10px;
}

.about-me-text {
  color: white;
  padding: 0 100px;
  margin-top: 20px;
  text-align: center;
  line-height: 1.5;
  font-family: var(--nata);
  letter-spacing: 1px;
}

.image-emily-style {
  width: 100%;
}

.take-a-look {
background-color:  var(--dark-grey);
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
padding-top: 20px;  
margin-top: -10px;
}

.salon-grid-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 300px);
  background-color: var(--dark-grey);
  padding: 20px 0;
  row-gap: 30px;
  margin-top: -1px;
  padding-bottom: 80px;
  justify-content: center;
  column-gap: 30px;
}

.salon-img-style {
  width: 300px;
  height: 300px;
  box-shadow: rgba(255, 255, 255, 0.1) 0px 2px 2px 0px inset, rgba(255, 255, 255, 0.25) 0px 50px 100px -20px, rgba(251, 251, 251, 0.3) 0px 30px 60px -30px;
}

.image-emily-salon {
  display: none;
}
/*MAIN WRAPPER END*/

/*Main Desktop Only Start*/
.section-main-desktop-display {
  display: grid;
  grid-template-columns: repeat(3, 300px);
  background-color: var(--dark-grey);
  margin-top: -1px;
  padding: 20px 0;
  column-gap: 20px;
  justify-content: center;
  padding-bottom: 20px;
}

.service-wrapper {
  background-color: var(--pink2);
  display: flex;
  flex-direction: column; 
}

.service-title-wrapper {
  height: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.service-wrapper-style {
  font-family: var(--nata);
  font-weight: 400;
  font-size: 20px;
}

.service-img-wrapper {
  height: 200px;
  background-color: white;
  display: flex;
  justify-content: center;
  align-items: center;
}

.img-service-icon-style {
  width: 150px;
}

.img-service-icon-style-makeup {
  width: 100px;
}

.button-more-service-wrapper {
  height: 100px;
  display: flex;
  justify-content: center;
  background-color: var(--dark-grey);
  margin-top: -1px;
}

.more-service-style {
  background-color: #ffffff;
  width: 250px;
  height: 30px;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  border: none;
  color: #000000;
  font-weight: bold;
}

.more-service-style:hover {
  background-color: var(--lemon1);
  transition: all ease-out 0.4s;
  cursor: pointer;
}

/*REVIEW SCROLLER START*/
/*SCROLLER SET UP STRAT*/
.scroller {
  max-width: 100%;
  margin-top: -1px;
  justify-self: center;
  background-color: var(--dark-grey);
}

.scroller__inner {
  padding-bottom: 10px;
  padding-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.scroller[data-animated=true]{
  overflow: hidden;  
}

.scroller[data-animated=true] .scroller__inner {
  display: flex;
  flex-wrap: nowrap;
  width: max-content;
  animation: scroll 60s linear infinite;
}

@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/*SCROLLER SET UP END*/



/*REVIEW CARD START*/
.review-card {
  width: 300px;
  height: 300px;
  background-color: white;
  display: flex;
  flex-direction: column;
  border-radius: 10px;
  padding-left: 10px;
  padding-right: 10px;
  z-index: 1;
}

.review-title {
  font-family: var(--nata);
  font-size: 18px;
  height: 30px;
  margin-top: 5px;
}

.review-date {
  font-family: var(--nata);
  font-size: 11px;
  height: 15px;
  font-family: monospace, sans-serif;
}

.review-stars-container {
  height: 30px;
  display: flex;
  align-items: center;
  margin-bottom: 4px;
}

.star-image-style {
  width: 20px;
  height: 20px;
  margin-right: 4px;
}

.review-text-container {
  height: 180px;
  display: flex;
  margin-bottom: 4px;
  font-family: var(--nata);
  font-size: 14px;
}

.review-by {
  height: 30px;
}

.review-by-style {
  font-style: italic;
  font-family: var(--nata);
}

.hide-review-text {
  display: none;
}
/*REVIEW CARD END*/


/*MORE REVIEWS START*/

.review-btn-container {
  height: 100px;
  background-color: var(--lemon1);
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--dark-grey);
  margin-top: -1px;

}

.review-btn-style {
  background-color: #ffffff;
  width: 250px;
  height: 30px;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  border: none;
  color: #000000;
  font-weight: bold;
}

.review-btn-style:hover {
  background-color: var(--lemon1);
  transition: all ease-out 0.4s;
  cursor: pointer;
}


/*MORE REVIEWS END*/



/*@MEDIA START*/
@media only screen and (max-width:960px){
.section-main-desktop-display {
  display: grid;
  grid-template-columns: repeat(3, 200px);
  background-color: var(--dark-grey);
  margin-top: -1px;
  padding: 20px 0;
  column-gap: 20px;
  justify-content: center;
  padding-bottom: 20px;
}

.service-wrapper {
  background-color: var(--pink2);
  display: flex;
  flex-direction: column; 
}

.service-title-wrapper {
  height: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.service-wrapper-style {
  font-family: var(--nata);
  font-weight: 400;
  font-size: 20px;
}

.service-img-wrapper {
  height: 200px;
  background-color: white;
  display: flex;
  justify-content: center;
  align-items: center;
}

.img-service-icon-style {
  width: 150px;
}
}

@media only screen and (max-width:1000px){
.salon-grid-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 300px);
  background-color: var(--dark-grey);
  padding: 20px 0;
  row-gap: 30px;
  margin-top: -1px;
  padding-bottom: 30px;
  justify-content: center;
  column-gap: 30px;
}

.salon-img-wrapper:nth-child(3) {
  margin-left: 160px;
}
}

@media only screen and (max-width:648px){
.main-wrapper {
  background-color: var(--dark-grey);
  padding-bottom: 40px;
}

.about-me-wrapper{
background-color:  var(--dark-grey);
height: 100px;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
margin-top: 30px;
padding-top: 50px;
padding-left: 40px;
padding-right: 40px;
}

.hi-there {
  font-family: var(--nata);
  font-weight: 300;
  color: var(--pink2);
}

.im-emily {
  color: var(--lemon1);
  font-style: italic;
  font-weight: 100;
  margin-top: -10px;
}

.about-me-text {
  color: white;
  padding: 0 20px;
  margin-top: 20px;
  text-align: center;
  line-height: 1.5;
  font-family: var(--nata);
  letter-spacing: 1px;
}

.image-emily-salon {
  display: flex;
}

.image-emily-style {
  width: 100%;
}

.take-a-look {
background-color: var(--dark-grey);
display: flex;
flex-direction: column;
justify-content: flex-start;
align-items: center;
padding-top: 40px;  
margin-top: -10px;
height: 100px;
}

.salon-grid-wrapper {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  background-color: var(--dark-grey);
  padding: 20px 0;
  row-gap: 30px;
  margin-top: -1px;
  padding-bottom: 80px;
}

.salon-img-wrapper {
  justify-self: center;
  display: flex;
}

.salon-img-style {
  width: 500px;
  height: 500px;
}

.salon-img-wrapper:nth-child(3) {
  margin-left: 0px;
}

.section-main-desktop-display {
  grid-template-columns: repeat(3, 150px);
}
.service-img-wrapper {
  height: 130px;
}
.img-service-icon-style {
  width: 100px;
}
}

@media only screen and (max-width:530px){
.salon-img-style {
  width: 400px;
  height: 400px;
}

.section-main-desktop-display {
  grid-template-columns: repeat(3, 120px);
}

.img-service-icon-style {
  width: 70px;
}
}

@media only screen and (max-width:430px){
.salon-img-style {
  width: 300px;
  height: 300px;
}

.section-main-desktop-display {
  grid-template-columns: repeat(3, 100px);
  column-gap: 8px;
}
.service-img-wrapper {
  height: 130px;
}
.img-service-icon-style {
  width: 80px;
}
}

@media only screen and (max-width:326px){
.section-main-desktop-display {
  grid-template-columns: repeat(1, 250px);
  row-gap: 15px;
}

.more-service-style {
  width: 250px;
}  
}

@media only screen and (max-width:650px){
.img-service-icon-style-makeup {
  width: 80px;
}
}

@media only screen and (max-width:550px){
.img-service-icon-style-makeup {
  width: 60px;
}
}
/*@MEDIA END*/