@charset "UTF-8";
/*For primary background & secondary text*/
/*For secondary background & primary text*/
/*For tertiary text*/
/*for modal*/
/*background for pass-to-content button*/
/*For tertiary background*/
/*Border for tags*/
/*Main page price style*/
/*transition time for tag animation hover*/
/*Breakpoints*/
/* Main elements of the page */
html,
body {
  height: 100%;
  background: #fff;
  color: #901C1C;
  font-family: "DMSans";
  font-size: 1rem;
  max-width: 1440px;
  margin: auto;
}

/*border-box tells the browser to account for any border and padding in the values specify for an element's width and height*/
* {
  box-sizing: border-box;
}

/*Help to avoid repeatedly adding display:flex evrywhere */
.d-flex {
  display: flex;
}

/*Set style for all links*/
a {
  color: #901C1C;
  text-decoration: none;
  cursor: pointer;
  text-align: center;
}

ul {
  list-style: none;
}

@font-face {
  /* Définition of font called DM Sans*/
  font-family: "DMSans";
  src: url("../fonts/DMSans-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}
.sr-only {
  border: 0;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  margin: -1px;
  padding: 0px;
  border: 0px;
  white-space: nowrap;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

/*
*:focus {
   outline: none;
 }

li:focus, a:focus, button:focus, img:focus, .artwork__image:focus, 
input:focus, textarea:focus, .modal__close:focus,
.header__logo.img:focus {
   border: 4px solid yellow;
}*/
/* TAG FILTER BUTTONS */
.tags {
  border: 0.5px solid #C4C4C4;
  cursor: pointer;
  border-radius: 1rem;
  font-weight: 500;
  letter-spacing: 1px;
  font-size: 0.75rem;
  line-height: 1rem;
  text-align: center;
  padding: 0.3rem;
  position: relative;
  z-index: 1;
}
.tags:hover, .tags:focus {
  color: white;
}
.tags:hover::after, .tags:focus::after {
  opacity: 1;
  /*set opacity to 1 so the layer is visible on hover*/
}
.tags::after {
  /*every mention of primary button creates a duplicate layer*/
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border-radius: 1rem;
  background: #901C1C;
  /* border: 1px solid $primary; */
  opacity: 0;
  /*layer hidden until hover*/
  z-index: -1;
  /*Z-index changes stacking order so background is behind*/
  transition: opacity 500ms;
  /*text but infront of original button background*/
}

/*PASS TO CONTENT BUTTON*/
.pass-to-maincontent {
  background: #DB8876;
  color: #000;
  font-size: 1.125rem;
  font-weight: 700;
  padding: 0.313rem;
  text-align: center;
  border-radius: 0.313rem;
  position: fixed;
  width: 11.375rem;
  Top: 0.188rem;
  left: 50%;
  /*center button*/
  margin-left: -5.688rem;
  /* Negative half of width. */
  z-index: 10;
  transform: translateY(-110%);
  transition: transform 0.25s;
}

/*move button so visible*/
.pass-to-maincontent.is-visible {
  transform: translateY(0%);
}

/*move button so NOT visible*/
.pass-to-maincontent.is-hidden {
  transform: translateY(-110%);
}

/*BUTTON FOR CONTACT PHOTOGRAPHER*/
.contactBtn {
  font-family: "DMSans";
  width: 10.625rem;
  min-width: 10.625rem;
  height: 2.188rem;
  border-radius: 0.313rem;
  border: unset;
  position: fixed;
  left: 50%;
  margin-left: -5.313rem;
  bottom: 1.875rem;
  background: #901C1C;
  color: #fff;
  cursor: pointer;
  font-size: 1.25rem;
  font-weight: 700;
  align-self: flex-start;
  z-index: 1;
  transition: all 0.5s;
}
.contactBtn:hover, .contactBtn:focus {
  color: #000;
  background: #DB8876;
}
@media only screen and (min-width: 1024px) {
  .contactBtn {
    position: inherit;
    margin: unset;
    margin-right: 30%;
    width: 10.625rem;
    height: 4.313rem;
  }
}

/*DROPDOWN MENU BUTTON*/
.dropdown {
  display: none;
}
@media only screen and (min-width: 600px) {
  .dropdown {
    display: block;
    position: relative;
    user-select: none;
    width: 10.625rem;
    margin-top: 0.625rem;
  }
  .dropdown__selection {
    align-items: center;
  }
  .dropdown__title {
    min-width: 6.25rem;
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 1.375rem;
  }
  .dropdown__button {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: none;
    height: 4.313rem;
    padding: 0rem 0.75rem;
    font-family: "DMSans";
    font-size: 1.125rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: #fff;
    line-height: 3.75rem;
    background: #901C1C;
    cursor: pointer;
    border-radius: 0.313rem;
    box-shadow: 0px 4px 12px 3px #d9d9d9;
  }
  .dropdown__button:hover, .dropdown__button:focus {
    background-color: #DB8876;
    color: #000;
    border-radius: 0.313rem;
  }
  .dropdown__icons {
    margin-left: 0.625rem;
  }
  .dropdown__orderlist {
    position: absolute;
    display: block;
    left: 100px;
    top: -1px;
    padding: 0rem 0.438rem;
    border-radius: 0.313rem;
    background: #901C1C;
    transition: all 0.5s;
    opacity: 0;
    visibility: hidden;
    /*pointer-events: none;*/
    z-index: 2;
    margin: unset;
  }
  .dropdown__orderlist__option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0rem 0.313rem;
    font-size: 1.125rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: #fff;
    height: 4.313rem;
    line-height: 3.75rem;
    cursor: pointer;
    transition: all 0.5s;
  }
  .dropdown__orderlist__option:hover, .dropdown__orderlist__option:focus {
    background-color: #DB8876;
    color: #000;
  }
  .dropdown__orderlist__option--border {
    border-top: 1px solid #fff;
    border-bottom: 1px solid #fff;
  }
  .dropdown__orderlist__option--Selected {
    background: #DB8876;
    color: #000;
  }
}
.dropdown .dropdown__selection.open .dropdown__orderlist {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

/*BUTTON FOR SUBMITTING A MESSAGE TO PHOTOGRAPHER*/
.sendBtn {
  font-family: "DMSans";
  letter-spacing: 1px;
  width: 10.625rem;
  height: 2.188rem;
  border-radius: 0.313rem;
  border: unset;
  background: #901C1C;
  color: #fff;
  cursor: pointer;
  font-size: 1.125rem;
  font-weight: 700;
  margin: auto;
  margin-top: 1.875rem;
  /*z-index: 1;  */
}
@media only screen and (min-width: 600px) {
  .sendBtn {
    height: 4.313rem;
    margin: unset;
    margin-top: 0.313rem;
  }
}

/*background to cover whole page when modal appears*/
.modal {
  display: none;
  position: fixed;
  z-index: 2;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(192, 192, 192, 0.98);
  /*background of modal form*/
}
.modal__content {
  margin: 0 auto;
  /*margin: 5% auto;*/
  width: 100%;
  height: 100vh;
  max-width: 41.813rem;
  background: #DB8876;
  color: #000;
  padding: 0rem 0.938rem;
  overflow: scroll;
  /*scrollbar-width: none;     /* Hide scrollbar Firefox */
}
.modal__content::-webkit-scrollbar {
  /* Hide scrollbar for Chrome, Safari and Opera */
  display: none;
}
@media only screen and (min-width: 1300px) {
  .modal__content {
    height: 56.25rem;
    margin: 2% auto;
    position: fixed;
    left: 50%;
    margin-left: -20.875rem;
  }
}
.modal__heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.modal__title {
  font-size: 2.25rem;
  font-weight: 400;
  margin: unset;
}
@media only screen and (min-width: 600px) {
  .modal__title {
    font-size: 3.125rem;
  }
}
@media only screen and (min-width: 768px) {
  .modal__title {
    font-size: 4rem;
  }
}
.modal__close {
  color: #fff;
  height: 1.875rem;
}
@media only screen and (min-width: 600px) {
  .modal__close {
    height: 2.5rem;
  }
}
@media only screen and (min-width: 768px) {
  .modal__close {
    height: 3.125rem;
  }
}
.modal__photographerName {
  font-weight: 400;
  font-size: 2.25rem;
  margin: unset;
}
@media only screen and (min-width: 600px) {
  .modal__photographerName {
    font-size: 3.125rem;
  }
}
@media only screen and (min-width: 768px) {
  .modal__photographerName {
    font-size: 4rem;
  }
}
.modal__body {
  /*height: 100%;*/
  font-size: 1.5rem;
  color: #312E2E;
  margin: auto;
}
@media only screen and (min-width: 768px) {
  .modal__body {
    font-size: 2.25rem;
  }
}
.modal__input {
  width: 100%;
  height: 3.25rem;
  font-family: DMSans;
  font-size: 1.5rem;
  border-radius: 5px;
}
@media only screen and (min-width: 768px) {
  .modal__input {
    height: 4.25rem;
  }
}
.modal__input--message {
  height: 11.5rem;
}
@media only screen and (min-width: 768px) {
  .modal__input--message {
    height: 10.625rem;
  }
}
.modal__error {
  color: #000;
  font-size: 0.938rem;
  text-align: left;
}

/*background to cover whole page when modal appears*/
.lightbox-modal {
  display: none;
  position: fixed;
  z-index: 2;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(192, 192, 192, 0.9);
  overflow: hidden;
}
.lightbox-modal__container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-right: -50%;
  transform: translate(-50%, -50%);
}
.lightbox-modal__column {
  flex-direction: column;
  display: flex;
}
.lightbox-modal__content {
  align-items: center;
  margin-bottom: 2.5rem;
}
.lightbox-modal__controls {
  color: transparent;
  height: 1.4rem;
}
@media only screen and (min-width: 768px) {
  .lightbox-modal__controls {
    height: 1.875rem;
  }
}
@media only screen and (min-width: 1024px) {
  .lightbox-modal__controls {
    height: 2.5rem;
  }
}
.lightbox-modal__controls--close {
  padding: unset;
  align-self: flex-end;
  position: relative;
  top: 2.5rem;
  right: 2px;
}
@media only screen and (min-width: 768px) {
  .lightbox-modal__controls--close {
    top: 3.125rem;
    left: 0rem;
  }
}
@media only screen and (min-width: 1024px) {
  .lightbox-modal__controls--close {
    top: 3.75rem;
    left: 0.313rem;
  }
}
.lightbox-modal__media {
  max-width: 85vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 0.313rem;
}
.lightbox-modal__title {
  font-size: 0.875rem;
  font-weight: 400;
  text-align: left;
  margin: unset;
}
@media only screen and (min-width: 600px) {
  .lightbox-modal__title {
    font-size: 1.5rem;
  }
}

/* General styling for all button elements*/
button {
  background: none;
  border: none;
  margin-bottom: 1.25rem;
  cursor: pointer;
}

.header {
  display: block;
  padding: 0.5rem;
}
@media only screen and (min-width: 1024px) {
  .header {
    display: flex;
    align-items: center;
    justify-content: space-around;
  }
}
.header img {
  height: 1.875rem;
  position: relative;
  top: 0.563rem;
  left: 0.625rem;
}
@media only screen and (min-width: 768px) {
  .header img {
    height: 3.125rem;
  }
}
@media only screen and (min-width: 1024px) {
  .header img {
    top: 0.25rem;
  }
}
.header__nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  list-style-type: none;
  /*remove point*/
  padding: 0rem;
  gap: 0.625rem;
}
.header__title {
  position: absolute;
  top: 0.313rem;
  right: 0.625rem;
  font-size: 1.25rem;
}
@media only screen and (min-width: 768px) {
  .header__title {
    font-size: 2.25rem;
    top: -0.563rem;
    white-space: nowrap;
  }
}
@media only screen and (min-width: 1024px) {
  .header__title {
    top: 0rem;
    position: relative;
  }
}

/*container that holds all the photographer cards*/
.photographers-container {
  justify-content: space-around;
  flex-wrap: wrap;
  margin-top: 1.25rem;
}

/*styling for each photographer card/profile*/
.profile {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 30%;
  min-width: 19.063rem;
  margin-bottom: 1.563rem;
}
.profile__portrait {
  height: 15.625rem;
  width: 15.625rem;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1.25rem;
  box-shadow: 0px 4px 12px 3px #d9d9d9;
}
.profile__name {
  font-size: 2.25rem;
  line-height: 2.938rem;
  color: #D3573C;
  margin: 0;
}
.profile__address {
  font-size: 0.813rem;
  letter-spacing: 1px;
  color: #901C1C;
  margin: 0.25rem;
}
.profile__tagline {
  font-size: 0.75rem;
  line-height: 0.813rem;
  letter-spacing: 1px;
  color: #000000;
  margin: 0;
}
.profile__price {
  font-size: 0.75rem;
  letter-spacing: 1px;
  line-height: 0.75rem;
  font-weight: 400;
  color: #757575;
  margin: 0.25rem;
}
.profile__tags {
  display: flex;
  padding: 0;
  margin: 0.25rem;
  gap: 0.313rem;
}

/*container that holds all the photographer cards*/
.photographer-header {
  margin: 1.375rem 0.938rem;
}
.photographer-header img {
  height: 1.875rem;
}
@media only screen and (min-width: 768px) {
  .photographer-header img {
    /* margin: 1rem 1.563rem 0rem;*/
    height: 3.125rem;
  }
}

/*styling for the individual photographer profile*/
.single-photographer-container {
  justify-content: space-around;
  margin: 0.625rem;
}

.person-profile {
  display: flex;
  width: 100%;
  padding: 0.5rem;
}
@media only screen and (min-width: 600px) {
  .person-profile {
    background: #FAFAFA;
  }
}
@media only screen and (min-width: 768px) {
  .person-profile {
    align-items: center;
    justify-content: space-between;
    border-radius: 0.313rem;
    padding: 1.875rem;
  }
}
.person-profile__details {
  align-self: flex-start;
  margin-right: 2%;
}
.person-profile__portrait {
  height: 6.25rem;
  width: 6.25rem;
  position: absolute;
  top: 4.063rem;
  right: 0.5rem;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0rem 0.25rem 0.75rem 0.188rem #d9d9d9;
}
@media only screen and (min-width: 600px) {
  .person-profile__portrait {
    top: 4.688rem;
    right: 1.563rem;
    height: 8.438rem;
    width: 8.438rem;
  }
}
@media only screen and (min-width: 768px) {
  .person-profile__portrait {
    position: inherit;
    height: 12.5rem;
    width: 12.5rem;
  }
}
.person-profile__name {
  font-size: 1.438rem;
  font-weight: 400;
  line-height: 2.875rem;
  color: #D3573C;
  margin: 0;
}
@media only screen and (min-width: 375px) {
  .person-profile__name {
    font-size: 1.875rem;
  }
}
@media only screen and (min-width: 768px) {
  .person-profile__name {
    font-size: 2.813rem;
    line-height: 4.25rem;
  }
}
.person-profile__address {
  font-size: 0.813rem;
  line-height: 1rem;
  font-weight: 400;
  letter-spacing: 1px;
  color: #901C1C;
  margin-top: 0.313rem;
}
@media only screen and (min-width: 768px) {
  .person-profile__address {
    font-size: 1.5rem;
  }
}
.person-profile__tagline {
  font-size: 0.75rem;
  line-height: 1.063rem;
  letter-spacing: 1px;
  color: #525252;
  margin-top: -0.625rem;
}
@media only screen and (min-width: 375px) {
  .person-profile__tagline {
    font-size: 0.75rem;
  }
}
@media only screen and (min-width: 768px) {
  .person-profile__tagline {
    font-size: 1.125rem;
    line-height: 1.5rem;
  }
}
.person-profile__tags {
  display: flex;
  padding: 0;
  gap: 0.313rem;
}

/*styling for the photographer's artwork portfolio*/
.artwork {
  flex-flow: row wrap;
  margin-top: 2.5rem;
  gap: 0.938rem;
  padding-bottom: 4.375rem;
}
@media only screen and (min-width: 768px) {
  .artwork {
    flex-flow: row wrap;
    justify-content: space-around;
  }
}
@media only screen and (min-width: 1100px) {
  .artwork {
    justify-content: center;
  }
}
.artwork__card {
  display: flex;
  flex-direction: column;
  flex: 1 1 21.875rem;
  color: #901C1C;
}
@media only screen and (min-width: 768px) {
  .artwork__card {
    /* max-width: 300px; */
    flex: 1 1 18.75rem;
  }
}
@media only screen and (min-width: 1024px) {
  .artwork__card {
    max-width: 21.875rem;
  }
}
.artwork__image {
  width: 100%;
  height: 11.875rem;
  object-fit: cover;
  border-radius: 0.313rem;
  /*z-index: 1;*/
  cursor: pointer;
}
@media only screen and (min-width: 600px) {
  .artwork__image {
    height: 18.75rem;
  }
}
.artwork__details {
  align-items: baseline;
  justify-content: space-between;
}
.artwork__title {
  font-size: 0.875rem;
  font-weight: 400;
}
@media only screen and (min-width: 768px) {
  .artwork__title {
    font-size: 1.375rem;
  }
}
.artwork__likeInfo {
  white-space: nowrap;
}
.artwork__likes {
  font-size: 0.875rem;
  margin-left: 0.5rem;
  white-space: nowrap;
}
@media only screen and (min-width: 768px) {
  .artwork__likes {
    font-size: 1.5rem;
  }
}
.artwork__heart {
  padding: unset;
  margin: unset;
  margin-left: 0.313rem;
  cursor: pointer;
  color: #901C1C;
}
@media only screen and (min-width: 768px) {
  .artwork__heart {
    font-size: 1.5rem;
  }
}

/* styling for price & total likes at bottom right of page */
#TotalLikesAndPrice {
  display: none;
}
@media only screen and (min-width: 1024px) {
  #TotalLikesAndPrice {
    display: flex;
    justify-content: space-around;
    align-items: center;
    position: fixed;
    bottom: 0rem;
    left: 63%;
    height: 4.75rem;
    width: 23.5rem;
    border-radius: 0.313rem 0.313rem 0rem;
    background: #DB8876;
    color: #000;
    font-size: 1.5rem;
    font-weight: 500;
  }
}
@media only screen and (min-width: 1100px) {
  #TotalLikesAndPrice {
    left: 70%;
  }
}
@media only screen and (min-width: 2500px) {
  #TotalLikesAndPrice {
    left: 63%;
  }
}

/*# sourceMappingURL=style.css.map */
