@charset "UTF-8";
@font-face {
  font-family: "LoverQuarrel";
  src: url("./font/LoversQuarrel-Regular.ttf") format("woff2");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "greatVibes";
  src: url("./font/GreatVibes-Regular.ttf") format("woff2");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
/* test  */
body {
  background: rgb(25, 25, 25);
  height: 100vh;
  /* test  */
}
body * {
  font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
  color: rgb(239, 239, 239);
  padding: 0;
  margin: 0 auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  list-style-type: none;
}
body canvas {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 110%;
  z-index: -100;
}
body h1 {
  color: rgb(239, 239, 239);
  font-family: "LoverQuarrel", sans-serif;
  font-size: 5rem;
  font-style: italic;
  font-weight: 400;
  text-align: center;
  margin: 30px auto 2px auto;
  text-shadow: 14px 9px 5px rgba(28, 110, 164, 0.52);
}
body h2 {
  text-align: center;
  font-family: "greatVibes", sans-serif;
  font-size: 2rem;
  font-weight: 300;
  text-shadow: 14px 9px 5px rgba(28, 110, 164, 0.52);
}
body .presentation {
  background: rgba(25, 25, 25, 0.3);
  border-radius: 30px;
  width: 80%;
  padding: 20px;
  font-size: 1.2rem;
  letter-spacing: 0.4px;
  line-height: 1.5;
}
body a:hover {
  color: violet;
}
@media screen and (max-width: 600px) {
  body {
    margin: 0;
    width: 98%;
    font-size: 1.1rem;
    margin: 10px auto;
    overflow: scroll;
  }
  body canvas {
    height: 230%;
  }
  body h1 {
    font-size: 4rem;
  }
}

nav {
  min-width: 100%;
  margin: 0 auto;
  background: transparent;
  position: sticky;
  top: 0px;
  z-index: 100;
  font-family: "Merriweather", serif;
  position: fixed;
}
nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  list-style-type: none;
  max-width: 100%;
  background: transparent;
  z-index: 100;
}
nav ul li {
  float: left;
  width: 25%;
  text-align: center;
  position: relative;
}
nav ul::after {
  content: "";
  display: table;
  clear: both;
}
nav a {
  display: block;
  text-decoration: none;
  color: white;
  border-bottom: 2px solid transparent;
  padding: 10px 0px;
  position: sticky;
  z-index: 100;
}
nav a:hover {
  color: orange;
  border-bottom: 2px solid gold;
}
nav > ul li:hover .sous {
  display: block;
}
nav .sous {
  display: none;
  -webkit-box-shadow: 0px 1px 2px #ccc;
          box-shadow: 0px 1px 2px #ccc;
  background: -webkit-gradient(linear, left top, right top, from(rgb(0, 117, 206)), color-stop(75%, rgb(44, 161, 164)), to(rgb(0, 117, 206)));
  background: linear-gradient(to right, rgb(0, 117, 206) 0%, rgb(44, 161, 164) 75%, rgb(0, 117, 206) 100%);
  background: red;
  position: absolute;
  width: 100%;
  z-index: 100;
}
nav .sous li {
  float: none;
  width: 100%;
  text-align: left;
}
nav .sous a {
  padding: 10px;
  border-bottom: none;
}
nav .sous a:hover {
  border-bottom: none;
  background-color: RGBa(200, 200, 200, 0.1);
}
nav .deroulant > a::after {
  content: " ▼";
  font-size: 12px;
  z-index: 100;
}
@media screen and (max-width: 400px) {
  nav {
    font-size: 0.8rem;
  }
}

#navSocial {
  position: absolute;
  top: 20px;
  right: 250px;
}
#navSocial #social {
  padding: 2px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 150px;
  right: 25px;
  -webkit-transform: translateX(50%);
          transform: translateX(50%);
  z-index: 1;
}
#navSocial #social a {
  color: black;
}
#navSocial #social a:hover {
  color: blueviolet;
}

.hamburger {
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: white;
}

/* Media query pour petits écrans */
@media (max-width: 600px) {
  .hamburger {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  nav ul {
    display: none;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0.5rem;
    width: 50%;
    background-color: rgb(24, 24, 24);
    position: absolute;
    border-radius: 10px;
    top: 60px;
    left: 0;
    padding: 1rem;
  }
  nav ul:hover {
    z-index: 200;
  }
  .sous {
    display: none;
    -webkit-transform: translate(50px, -100px);
            transform: translate(50px, -100px);
  }
  nav ul.active {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  nav ul li {
    width: 100%;
  }
  nav a {
    display: block;
    padding: 0.5rem;
    width: 100%;
    text-align: left;
  }
}
.portfolio-section-photos {
  background-color: rgba(255, 255, 255, 0.075);
}

.portfolio-section-photos h2 {
  color: #f8f8f8;
  margin-bottom: 80px;
}

.grid-paysages {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 10px;
}

.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.modal-content {
  max-width: 80%;
  max-height: 80%;
  border-radius: 10px;
}

.close {
  position: absolute;
  top: 50px;
  right: 30px;
  font-size: 40px;
  color: white;
  cursor: pointer;
}

button {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: rgba(15, 15, 15, 0.7);
  border: none;
  padding: 10px;
  font-size: 20px;
  cursor: pointer;
}

#prevBtn {
  left: 10px;
}

#nextBtn {
  right: 10px;
}

.grid-paysages img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.lien-conteneur-photo {
  position: relative;
}

.photo-hover {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 1.5em;
  color: white;
  background-color: rgba(0, 0, 0, 0.7);
  display: none;
}

.lien-conteneur-photo:hover .photo-hover {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.lien-conteneur-photo:hover .photo-hover:active {
  display: none;
}

@media screen and (max-width: 600px) {
  .grid-paysages {
    grid-template-columns: 1fr;
    gap: 15px;
  }
}

main {
  min-width: 90%;
  display: grid;
  grid-template-columns: 60% 40%;
}
main .slideshow-container {
  position: relative;
  width: 367px;
  height: 550px;
  overflow: hidden;
  margin: 30px auto;
  -webkit-box-shadow: 21px 16px 13px rgba(28, 110, 164, 0.151);
          box-shadow: 21px 16px 13px rgba(28, 110, 164, 0.151);
}
@media screen and (max-width: 600px) {
  main .slideshow-container {
    -webkit-box-shadow: none;
            box-shadow: none;
  }
}
main .slideshow-container .slides {
  display: none;
  width: 100%;
  height: 100%;
}
main #slide1 {
  background: url(./img/tableaux/Christophe\ Mounier-dharley-1.webp) center/cover;
}
main #slide2 {
  background: url(./img/tableaux/Christophe\ Mounier-dharley-2.webp) center/cover;
}
main #slide3 {
  background: url(./img/tableaux/Christophe\ Mounier-dharley-3.webp) center/cover;
}
main #slide4 {
  background: url(./img/tableaux/Christophe\ Mounier-dharley-4.webp) center/cover;
}
main #slide5 {
  background: url(./img/tableaux/Christophe\ Mounier-dharley-5.webp) center/cover;
}
main .prev,
main .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  font-size: 18px;
  padding: 10px;
  border-radius: 50%;
  z-index: 10;
}
main .prev {
  left: 10px;
}
main .next {
  right: 10px;
}
main .dots {
  text-align: center;
  margin-top: 10px;
}
main .dot {
  cursor: pointer;
  height: 10px;
  width: 10px;
  margin: 0 5px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
}
main .dot.active {
  background-color: #717171;
}
main #exposition {
  font-size: 1.5rem;
  color: yellowgreen;
}
main #exposition a {
  color: yellowgreen;
}
main #exposition a:hover {
  color: violet;
}
@media screen and (max-width: 600px) {
  main {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

#pied {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  width: 100%;
}
@media screen and (max-width: 600px) {
  #pied {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: center;
    position: relative;
    -webkit-transform: translateY(-70%);
            transform: translateY(-70%);
    bottom: -220px;
  }
  #pied a {
    padding: 10px;
  }
}/*# sourceMappingURL=style.css.map */