/*
=============================
========= RESET CSS =========
=============================
*/
/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  /*font: inherit;*/
  vertical-align: baseline;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  /*list-style: none;*/
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: '';
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

a {
  text-decoration: none;
  color: inherit;
}

/*
================================
=========== CSS PERSO ==========
================================
*/
:root {
  --primary: #e1ccbb; /* Beige */
  --secondary: #ffffff; /* Lila */
  --third: #A7B2DC; /* Lila */
}
@font-face {
  font-family: "Zapfino";
  src: url("./fonts/Zapfino.ttf");
}

@font-face {
  font-family: "WorkSans";
  src: url("./fonts/WorkSans.ttf");
}

@font-face {
  font-family: "Roboto";
  src: url("./fonts/Roboto-Medium.ttf");
}

@font-face {
  font-family: "MetropolisRegular";
  src: url("./fonts/Metropolis-Regular.otf");
}

@font-face {
  font-family: "Winkle";
  src: url("./fonts/Winkle-Regular.otf");
}

html {
  height: 100%;
}

body {
  min-height: 100%;
  position: relative;
}

/* MENU */

.menu__wrap {
  position: fixed;
  right: 0;
  z-index: 999;
}

.menu__wrap .menu__content {
  z-index: 998;
  height: 100vh;
  width: 100vw;
  background-color: #000000b4;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: fixed;
  top: -100vh;
  left: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.menu__wrap .menu__content ul {
  height: 50%;
  width: 100%;
  margin-top: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-pack: distribute;
  justify-content: space-around;
}

.menu__wrap .menu__content ul li.menu__logo {
  display: none;
}

.menu__wrap .menu__content ul li {
  font-family: WorkSans;
  font-size: 32px;
  color: white;
  text-transform: uppercase;
  width: inherit;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.menu__wrap .menu__content ul li a {
  width: 100%;
  text-align: center;
  transition: 0.5s;

}

.menu__wrap .menu__content ul li a:hover {
  color: var(--primary);
}

.menu__wrap .menu__content ul li.menu__logo a:hover {
  color: var(--secondary);
  cursor: default;
}

.menu__wrap .burger {
  display: block;
  position: relative;
  z-index: 999;
  margin: 20px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  outline: none;
  background: none;
  cursor: pointer;
}

.menu__wrap .burger.active span:nth-child(1) {
  -webkit-transform: translate(0px, -2px) rotate(45deg);
  transform: translate(0px, -2px) rotate(45deg);
}

.menu__wrap .burger.active span:nth-child(2) {
  opacity: 0;
  -webkit-transform: translateX(15px);
  transform: translateX(15px);
}

.menu__wrap .burger.active span:nth-child(3) {
  -webkit-transform: translate(-3px, 3px) rotate(-45deg);
  transform: translate(-3px, 3px) rotate(-45deg);
}

.menu__wrap .burger.active span {
  background-color: white;
}

.menu__wrap .burger span {
  display: block;
  width: 33px;
  height: 4px;
  margin-bottom: 5px;
  position: relative;
  background-color: #3d3d3d;
  border-radius: 6px;
  z-index: 1;
  -webkit-transform-origin: 0 0;
  transform-origin: 0 0;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

/* HEADER */

header {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 20px;
  padding-top: 40px;
}

.header__img {
  width: 70px;
  margin-bottom: 5px;
}

.header__title {
  font-family: Zapfino;
  color: black;
}

/* MAIN */

main {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-bottom: 40px;
}

main .banner {
  width: 300px;
  margin-bottom: -3px;
}

main .title {
  text-align: center;
  /*font-size: 32px;*/
  font-size: 56px;
  text-transform: uppercase;
  color: var(--secondary);
  font-family: Winkle;
  margin-bottom: 20px;
  /*letter-spacing: 2px;*/
  /*font-weight: bold;*/
}

main .title--low {
  text-align: center;
  /*font-size: 32px;*/
  font-size: 56px;
  text-transform: uppercase;
  font-family: Winkle;
  margin-bottom: 20px;
  /*letter-spacing: 2px;*/
  /*font-weight: bold;*/
  color: var(--third);
}

main .section_high {
  background-color: var(--primary);
  padding: 20px;
  width: 100%;
}

main .section_low {
  padding: 20px;
  width: 100%;
}

/* HOMEPAGE */
/* About */

main .about .about__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

main .about .about__content .about__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

main .about .about__content .about__wrap .about__text {
  color: white;
  font-family: WorkSans;
  font-size: 16px;
  margin-top: 40px;
}

main .about .about__content .about__wrap .about__img {
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
  width: 100px;
  margin-top: 20px;
}

/* Last creation */
.lastCreation {
  padding: 20px 0 !important;
}

.lastCreation__list {
  display: flex;
  flex-wrap: wrap;
}

.lastCreation__list--low {
  display: flex;
  flex-wrap: wrap;
}

.lastCreation__img {
  width: 23vw;
  flex-basis: calc(33.33% - 8px);
  margin: 4px;
  aspect-ratio: 1 / 1;
  object-fit: cover;

  &:hover {
    cursor: pointer;
  }
}


/* Buttons */

main .homeButton__wrap .homeButton__services:hover,
main .homeButton__wrap .homeButton__boutique:hover {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

main .homeButton__wrap {
  width: inherit;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

main .homeButton__wrap .homeButton {
  margin: 40px 0;
  background-size: cover;
  background-position: center;
  width: 80%;
  height: 200px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

main .homeButton__wrap .homeButton .homeButton__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  height: 100%;
  font-family: Winkle;
  color: var(--third);
  /*font-size: 30px;*/
  font-size: 46px;
  text-transform: uppercase;
  background-color: rgba(255, 255, 255, 0.4);
  -webkit-backdrop-filter: blur(0.1rem);
  backdrop-filter: blur(0.1rem);
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

/* MODAL IMG */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100%;
  z-index: 1000;
  background-color: rgba(0,0,0, 0.6);

  & .modal-content {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;

    & .close {
      position: absolute;
      top: 10px;
      left: 10px;
      font-size: 40px;
      width: 40px;
      height: 40px;
      display: flex;
      justify-content: center;
      align-items: center;
      color: white;

      &:hover {
        cursor: pointer;
        color: rgb(200,200,200);
      }
    }

    & .full__img {
      width: 80%;
    }

  }
}

/* SERVICES */

.services {
  padding: 20px 0px !important;
}

main .services .services__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

main .services .services__content .services__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

main .services .services__content .services__list .services__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 20px 40px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

main .services .services__content .services__list {
  overflow: hidden;
}

main .services .services__content .services__list .services__img {
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
  width: 100%;
  margin: 5px 0;
  background-color: white;
}

main .services .services__content .services__list .services__wrap .services__text {
  color: white;
  font-family: Roboto;
  font-size: 18px;
  margin: 10px 0;
  text-transform: uppercase;
}

main .services .services__content .services__list .services__wrap .services__description {
  max-width: 250px;
  text-align: center;
  color: #696666;
  margin-bottom: 15px;
  font-family: WorkSans;
  font-size: 14px;

}

main .services .services__content .services__list .services__wrap .services__price {
  font-family: Roboto;
}

/* CONTACT */

main .contact {
  display: flex;
}

main .contact .illustration {
  display: none;
  flex: 25%;
  margin-right: 40px;
  justify-content: center;
}

main .contact .illustration img {
  max-width: 300px;
  object-fit: contain;
}

main .contact .contact__content {
  flex: 55%;
}

main .contact .contact__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

main form {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

main form .form__group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  font-family: WorkSans;
}

main form .form__group label {
  padding: 10px 5px;
}

main form .form__group input,
main form .form__group textarea {
  border: none;
  border-radius: 4px;
}

main form .form__group input {
  height: 24px;
  width: 100%;
  box-sizing: border-box;
}

main form .form__group #message {
  height: 200px;
  width: 100%;
  box-sizing: border-box;
}

main form .wpcf7-submit {
  border: none;
  padding: 5px 0;
  background-color: #3d3d3d;
  font-family: WorkSans;
  text-transform: uppercase;
  color: white;
  width: 100%;
  margin-top: 5px;
  transition: 0.5s;
}

main form .wpcf7-submit:hover {
  cursor: pointer;
  background-color: #5a5a5a;
}

main form .contact__button {
  border: none;
  padding: 5px 0;
  background-color: #3d3d3d;
  font-family: WorkSans;
  text-transform: uppercase;
  color: white;
}


main form .wpcf7-response-output {
  background: #46b450;
  border: none !important;
  border-radius: 3px;
  padding: 10px 15px !important;
  margin: 0 !important;
  margin-top: -15px !important;
}

/* FOOTER */

div.menu-reseaux-container {
  display: flex;
  flex-direction: row;
  justify-content: center;
}

ul#menu-reseaux {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
}

ul#menu-reseaux li {
  margin: 0 5px;
  color: var(--secondary);
}

.menu {
  list-style: none;
}

.footer {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 0 10px;
}

.menu-menu-footer-container {
  width: 100%;
  display: flex;
  justify-content: flex-end;
}

ul#menu-menu-footer {
  display: flex;
}

ul#menu-menu-footer li {
  margin: 0 5px;
}

.menu-footer-informations {
  font-size: 12px;
  display: flex;
  align-items: center;
  text-decoration: underline;
  font-family: WorkSans;
}

/* WAVE MIDDLE PAGE */

#wave-container {
  margin-top: -2px;
  width: 100%;
  height: 100px;
  overflow: hidden;
}

#wave {
  display: block;
  position: relative;
  height: 40px;
  background: var(--primary);
}

#wave:before {
  content: "";
  display: block;
  position: absolute;
  border-radius: 100%;
  width: 100%;
  height: 300px;
  background-color: white;
  right: -25%;
  top: 20px;
}

#wave:after {
  content: "";
  display: block;
  position: absolute;
  border-radius: 100%;
  width: 100%;
  height: 300px;
  background-color: var(--primary);
  left: -25%;
  top: -240px;
}


/*
================================
========= MEDIA QUERIES ========
================================
*/
@media screen and (min-width: 600px) {
  main .banner {
    width: 400px;
    margin-bottom: 20px;
  }

  main .section_high {
    padding: 20px 40px;
  }

  main .section_low {
    padding: 20px 40px;
  }

  ul#menu-reseaux li {
    margin: 0 20px;
  }
  
  .lastCreation {
    padding: 20px 40px !important;
  }

  .modal .modal-content {

    & .close {
      top: 20px;
      left: 20px;
    }

    & .full__img {
      width: 70%;
    }
  }
}

@media screen and (min-width: 768px) {
  header .header__img {
    width: 100px;
  }

  header .header__title {
    font-size: 24px;
  }

  .modal .modal-content .full__img {
    width: 60%;
  }

  main .banner {
    width: 500px;
  }

  main .section_high {
    padding: 20px 60px;
  }

  main .section_low {
    padding: 20px 60px;
  }

  main .about .about__content .about__wrap .about__img {
    width: 130px;
  }

  main .services .services__content .services__list {
    display: flex;
  }

  main .services .services__content .services__list .services__img {
    width: 350px;
    height: 350px;
    margin: 5px;
  }

  main .services .services__content .services__list .services__wrap .services__text {
    font-size: 24px;
  }

  main .services .services__content .services__list .services__wrap .services__price {
    font-size: 20px;
  }

  main .informations .informations__content .informations__text {
    font-family: WorkSans;
  }

  main .informations .informations__content .items__list .item .item__img {
    width: 150px;
  }

  main .contact .illustration {
    display: flex;
  }

  .footer ul#menu-menu-footer li {
    margin: 0 10px;
  }
}

@media screen and (min-width: 1024px) {
  body {
    margin: 0 60px;
  }

  header {
    display: none;
  }

  .menu__wrap {
    position: relative;
    left: 0;
    margin: 30px 0;
  }

  .menu__wrap .menu__content {
    background-color: var(--primary);
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: relative;
    top: 0 !important;
  }

  .menu__wrap .menu__content ul {
    height: 100px;
    width: 100%;
    margin-top: 0px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-pack: distribute;
    justify-content: space-around;
  }

  .menu__wrap .menu__content ul li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: inherit;
    color: var(--secondary);
    padding: 0 20px;
    text-transform: uppercase;
    font-family: MetropolisRegular;
    font-size: 24px;
    font-weight: bold;
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }

  .menu__wrap .menu__content ul li a:hover {
    color: #282525;
  }


  .menu__wrap .menu__content ul li.menu__logo {
    display: flex;
    font-family: Zapfino;
    color: var(--secondary);
    font-size: 16px;
    text-transform: none;
    font-weight: lighter;
    background-image: url('./img/CamKft.png');
    flex: 165%;
    background-size: 90px;
    background-repeat: no-repeat;
    background-position-x: center;
    height: 140px;
    margin-top: -25px;
  }

  .menu__wrap .menu__content ul li.menu__logo a {
    margin-top: 85px;
  }


  .menu__wrap .menu__content ul li:hover {
    cursor: pointer;
    color: #ffffff85;
  }

  .menu__wrap .menu__content ul li a {
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .menu__wrap .burger {
    display: none;
  }

  main .banner {
    width: 600px;
    margin-bottom: 30px;
  }

  main .about .about__content .about__wrap {
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
  }

  main .about .about__content .about__wrap .about__text {
    width: 70%;
    margin-left: 25px;
  }

  main .about .about__content .about__wrap .about__img {
    flex: 30%;
    max-width: 300px;
  }

  main .homeButton__wrap {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-pack: distribute;
    justify-content: space-around;
  }

  main .homeButton__wrap .homeButton {
    width: 500px;
  }

  /*main .section_low {*/
  /*  padding: 40px 120px;*/
  /*}*/


  main form {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: end;
  }

  main form p {
    width: 100%;
  }

  main form .email {
    flex: 49%;
  }

  main form .nom {
    flex: 49%;
    margin-left: 2px;
  }

  main form .sujet {
    flex: 100%;
  }

  main form .message {
    flex: 100%;
  }

  .footer ul#menu-menu-footer li {
    margin: 0 20px;
  }

  main .services .services__content .services__list .services__img {
    width: 600px;
    height: 600px;
  }

  .modal .modal-content {

    & .close {
      top: 30px;
      left: 30px;
    }

    & .full__img {
      width: 50%;
    }
  }
}

@media screen and (min-width: 1280px) {
  .menu__wrap {
    margin: 60px 0 30px 0;
  }

  .menu__wrap .menu__content ul li.menu__image {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 31%;
    flex: 0 0 31%;
  }

  .menu__wrap .menu__content ul li.menu__image .menu__logo .header__img {
    width: 110px;
  }

  .menu__wrap .menu__content ul li.menu__image .menu__logo .header__title {
    font-size: 24px;
  }

  main .informations .informations__content .items__list .item {
    width: 200px;
  }

  main .informations .informations__content .items__list .item .item__img {
    width: 180px;
  }

  .modal .modal-content {

    & .close {
      top: 40px;
      left: 40px;
      font-size: 60px;
    }

    & .full__img {
      width: 30%;
    }
  }

  /*main .section_low {*/
  /*  padding: 40px 200px;*/
  /*}*/
}

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