@charset "UTF-8";
/* FORGET (@LETOURISTE) */
/* Le hasard n'existe pas, seule l'ignorance le cause ♪
Copyright © 2022 vers « ∞ » || « infini » || ¯\_(ツ)_/¯  */
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: inherit;
  font-size: 100%;
  vertical-align: baseline;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body, html {
  height: 100%;
}

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, del, ins {
  text-decoration: none;
}

a {
  color: inherit;
}

label, button {
  cursor: pointer;
}

html {
  box-sizing: border-box;
}

*, *::before, *::after {
  box-sizing: inherit;
}

input, button {
  outline: 0;
}

h1 {
  font-family: "Lobster", "cursive";
  font-size: 3rem;
  color: rgb(255, 255, 255);
  position: relative;
  text-align: center;
  text-shadow: 1px 1px 2px rgb(73, 71, 71);
  margin-bottom: 0.5rem;
}

h2 {
  font-family: "Lobster", "cursive";
  margin: 0 auto;
  width: 100%;
  text-align: center;
  padding-bottom: 0.5rem;
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

h3 {
  font-family: "Orelega One", "cursive";
  margin: 0 auto;
  width: 100%;
  text-align: center;
  padding-bottom: 0.5rem;
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

h4 {
  font-family: "Orelega One", "cursive";
  margin: 0 auto;
  width: 100%;
  text-align: center;
  padding-bottom: 0.5rem;
  font-size: 1.5rem;
}

h5 {
  font-family: "Orelega One", "cursive";
  margin: 0 auto;
  width: 100%;
  text-align: center;
  padding-bottom: 0.5rem;
  font-size: 1rem;
}

.titre {
  padding: 10px;
  width: 100%;
  font-family: "Lobster", "cursive";
  font-size: 1em;
  color: rgb(255, 255, 255);
  line-height: 1.5;
}

.sections {
  width: 100%;
  height: 100%;
  display: flex;
  display: inline-block;
}

.articles {
  position: relative;
  text-align: center;
  align-items: center;
  border: solid 1px white;
  border-radius: 10px;
  justify-content: center;
}

.ombre :hover {
  border-radius: 10px;
  box-shadow: 1px 1px 10px white;
}

/* ----------------------------Animations ♪ */
.lignetitre::after {
  content: "";
  display: inline-flex;
  background-color: white;
  height: 2px;
  -webkit-animation: linenormal 5s ease-in-out forwards;
          animation: linenormal 5s ease-in-out forwards;
}

.ligne::before {
  content: "";
  display: inline-flex;
  background-color: white;
  height: 1px;
  -webkit-animation-name: linenormal;
          animation-name: linenormal;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
  -webkit-animation-duration: 3s;
          animation-duration: 3s;
  -webkit-animation-direction: alternate;
          animation-direction: alternate;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
}

@-webkit-keyframes linenormal {
  from {
    margin-left: 50%;
    width: 0%;
    opacity: 0;
  }
  to {
    width: 100%;
    opacity: 1;
  }
}

@keyframes linenormal {
  from {
    margin-left: 50%;
    width: 0%;
    opacity: 0;
  }
  to {
    width: 100%;
    opacity: 1;
  }
}
html, body {
  /* background: url(../) no-repeat center fixed;  */ /*pour anciens Chrome et Safari */
  background-size: cover; /* version standardisée */
  height: 100%;
  margin: 0;
  padding: 0;
  line-height: 1.5rem;
  scroll-behavior: smooth;
}
html #video_id_fond, body #video_id_fond {
  position: fixed;
  right: 0;
  bottom: 0;
  min-width: 100%;
  min-height: 100%;
  z-index: -1;
}
body {
  display: grid;
  grid-template-rows: 3.5rem auto 3.5rem;
  grid-template-areas: "header" "main" "footer";
}
body header {
  grid-area: header;
}
body main {
  grid-area: main;
}
body footer {
  grid-area: footer;
}

/* header ID <header id="">----------------EN-TETE */
header {
  position: fixed;
  background-color: rgba(73, 71, 71, 0.9);
  width: 100%;
  border-radius: 0.5rem;
  z-index: 3;
}
header section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
  width: 90vw;
}
header section img {
  padding-top: 0.5rem;
}
header nav {
  padding: 15px 0;
}
header nav ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 250px;
}
header nav ul li {
  display: inline-block;
  justify-content: space-around;
  list-style-type: none;
}
header nav ul li a {
  transition: all 250ms ease-out;
  background-color: rgba(51, 51, 51, 0);
  font-family: "Orelega One", "cursive";
  text-decoration: none;
  font-size: 1rem;
  color: rgb(255, 255, 255);
  border-radius: 5px;
  padding: 5px 10px;
  border: 1px solid white;
}
header nav ul li :hover,
header nav ul li :focus {
  cursor: pointer;
  color: #11151D;
  background-color: white;
  border: 1px solid #11151D;
  box-shadow: 1px 0px 5px #11151D;
  text-shadow: 1px 0 1px #11151D;
}

main {
  min-width: 100%;
  margin: 0;
  padding: 0;
  width: 100%;
}

/* ------------------------------SECTION BANNIERE */
#section_banniere {
  position: absolute;
  display: flex;
  width: 100%;
}
#section_banniere #particles-js {
  height: 150px;
  width: 100%;
  z-index: 2;
}
#section_banniere #banniere_text {
  position: absolute;
  padding-top: 99px;
  left: 50%;
  transform: translate(-50%);
  z-index: 1;
  width: 100%;
}

/* ---------------------------SECTION INTRODUCTION */
#section_introduction {
  padding-top: 350px;
}
#section_introduction p {
  height: 100%;
  width: 100%;
  margin: 10px 10px 10px 10px;
  text-align: center;
  align-items: center;
  justify-content: space-around;
  border-radius: 10px;
  z-index: 1;
  margin: 0;
  position: absolute;
  display: flex;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "Orelega One", "cursive";
}
#section_introduction #video_intro {
  position: relative;
  max-width: 100%;
  max-height: 100%;
  max-height: 50vh;
  display: flex;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  border-radius: 10px;
  opacity: 0.8;
}

/* section ID [Raccourci]----SECTION #PRESENTATION */
#section_presentation {
  padding-top: 150px;
}
#section_presentation article:hover {
  box-shadow: 1px 1px 10px white;
}
#section_presentation article {
  display: flex;
  border: solid 1px white;
  margin: 0;
  padding: 1rem;
  font-size: 1.5rem;
  font-family: "Orelega One", "cursive";
  width: 100%;
  border-radius: 10px;
  z-index: 1;
  justify-content: center;
}
#section_presentation article a {
  padding-left: 10%;
  padding-right: 10%;
}

/* section ID [Raccourci]--------------SECTION #CV */
#section_curriculum {
  padding-top: 150px;
}
#section_curriculum article:hover {
  box-shadow: 1px 1px 10px white;
}
#section_curriculum article {
  height: 100%;
  width: 100%;
  border-radius: 10px;
  border: solid 1px white;
  justify-content: space-between;
}
#section_curriculum article div:hover {
  background-color: rgba(0, 0, 0, 0.5);
  border: solid 1px rgb(255, 255, 255);
  box-shadow: 1px 1px 10px white;
  padding: 10px;
  border-radius: 10px;
}
#section_curriculum article div {
  text-align: center;
  align-items: center;
  flex-direction: column;
  display: flex;
  border: solid 1px rgb(255, 255, 255);
  padding: 10px;
  margin: 10px;
  border-radius: 10px;
}
@media (min-width: 768px) {
  #section_curriculum article div {
    flex-direction: row;
    border: solid 1px rgb(255, 255, 255);
    padding: 10px;
    margin: 10px;
    border-radius: 10px;
  }
}
#section_curriculum article div h4 {
  width: 100%;
  height: auto;
  font-family: "Lobster", "cursive";
  margin: 10px 10px 10px 10px;
  border-radius: 10px;
  align-items: center;
  padding: 10px;
}
#section_curriculum article div h3 {
  font-family: "Orelega One", "cursive";
  width: 100%;
  height: auto;
  margin: 10px 10px 10px 10px;
  border-radius: 10px;
  padding: 10px;
}
#section_curriculum article div p {
  font-family: "Orelega One", "cursive";
  width: 100%;
  height: auto;
  margin: 10px 10px 10px 10px;
  border-radius: 10px;
  padding: 10px;
}
#section_curriculum h3 {
  font-family: "Lobster", "cursive";
}

/* section ID [Raccourci]--------------SECTION #PF */
#section_porte_folio {
  padding-top: 150px;
  display: flex;
  gap: 2rem;
}

.porte_folio_galerie {
  flex-direction: column;
  /* position: relative; */
  padding: 0 1rem 0 0;
  /* border: 1px solid #ccc; */
  position: relative;
  text-align: center;
  align-items: center;
  border: solid 1px white;
  /* box-shadow: 1px 1px 10px rgb(255, 255, 255); */
  border-radius: 10px;
  justify-content: center;
  display: flex;
}
@media (min-width: 768px) {
  .porte_folio_galerie {
    flex-direction: row;
  }
}

/* paragraphe */
.para_pf {
  /* border: 1px solid red; */
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 0;
}
.para_pf .liens_pf {
  display: flex;
}
.para_pf .liens_pf .image_porte_folio {
  position: relative;
}

.porte_folio_galerie:hover {
  box-shadow: 1px 1px 10px white;
}

.porte_folio_galerie img {
  width: 100%;
  height: 100%;
}

/* .galerie_fix:after {
	content: "";
	display: table;
	clear: both;
} */
/* Paragraphe (tous> <p class="p"> */
.para_pf {
  height: 100%;
  width: 100%;
  margin: 10px 10px 10px 10px;
  text-align: center;
  align-items: center;
  justify-content: space-around;
  z-index: 1;
}
.para_pf a {
  font-family: "Orelega One", "cursive";
  text-decoration: none;
  font-size: 1rem;
  color: rgb(255, 255, 255);
}
.para_pf a img {
  padding: 10px 10px 10px 10px;
  /* margin: 10px 10px 10px 10px; */
  max-width: 80vw;
}
.para_pf a img:hover {
  opacity: 0.5;
}
.para_pf a:hover {
  color: rgb(94, 181, 253);
}
.para_pf a:active {
  color: rgb(166, 255, 77);
}

/* Paragraphe:passage du pointeur */
.para_pf:hover {
  /* margin-top: 5px;
  margin-bottom: 5px; */
  /* box-shadow: 1px 1px 10px rgb(255, 255, 255); */
  border-radius: 10px;
  /* margin: 0; */
}

.pf_text {
  padding: 10px;
  text-align: center;
  font-family: "Orelega One", "cursive";
  text-decoration: none;
  font-size: 1rem;
  color: rgb(255, 255, 255);
}
.pf_text img {
  padding: 10px 10px 10px 10px;
  /* margin: 10px 10px 10px 10px; */
  max-width: 80vw;
}
.pf_text img:hover {
  opacity: 0.5;
}

.pf_text:hover {
  color: rgb(94, 181, 253);
}

.pf_text:active {
  color: rgb(166, 255, 77);
}

/* section ID [Raccourci]---------SECTION #CONTACT */
#section_contact {
  padding-top: 150px;
}

.article_contact {
  margin: 0;
  padding: 0;
  margin-left: auto;
  margin-right: auto;
  /* animation bouton formulaire:passage du pointeur */
}
.article_contact .para_contact {
  margin: 0;
  padding: 0;
}
.article_contact .para_contact .contact_lien {
  font-family: "Orelega One", "cursive";
  font-size: 1rem;
  color: rgb(255, 255, 255);
}
.article_contact .para_contact .contact_lien .photo_contact {
  margin: 10px;
  max-width: 30vw;
  vertical-align: bottom;
}
.article_contact .para_contact .contact_lien:hover {
  cursor: pointer;
  color: rgb(94, 181, 253);
}
.article_contact .para_contact .contact_lien:active {
  cursor: wait;
  color: rgb(166, 255, 77);
}
.article_contact #contour_animation {
  border: none;
  background-color: transparent;
  font-family: inherit;
  position: relative;
  display: inline-block;
  padding: 10px;
  color: #ffffff;
  font-size: 16px;
  text-decoration: none;
  text-transform: uppercase;
  overflow: hidden;
  transition: 0.5s;
  margin-top: 40px;
  letter-spacing: 4px;
}
.article_contact #contour_animation .contact_lien {
  color: white;
}
.article_contact #contour_animation span {
  position: absolute;
  display: block;
}
.article_contact #contour_animation span:nth-child(1) {
  top: 0;
  left: -100%;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #ffffff);
  -webkit-animation: btn-anim1 1s linear infinite;
          animation: btn-anim1 1s linear infinite;
}
.article_contact #contour_animation span:nth-child(2) {
  top: -100%;
  right: 0;
  width: 2px;
  height: 100%;
  background: linear-gradient(180deg, transparent, #ffffff);
  -webkit-animation: btn-anim2 1s linear infinite;
          animation: btn-anim2 1s linear infinite;
  -webkit-animation-delay: 0.25s;
          animation-delay: 0.25s;
}
.article_contact #contour_animation span:nth-child(3) {
  bottom: 0;
  right: -100%;
  width: 100%;
  height: 2px;
  background: linear-gradient(270deg, transparent, #ffffff);
  -webkit-animation: btn-anim3 1s linear infinite;
          animation: btn-anim3 1s linear infinite;
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
}
.article_contact #contour_animation span:nth-child(4) {
  bottom: -100%;
  left: 0;
  width: 2px;
  height: 100%;
  background: linear-gradient(360deg, transparent, #ffffff);
  -webkit-animation: btn-anim4 1s linear infinite;
          animation: btn-anim4 1s linear infinite;
  -webkit-animation-delay: 0.75s;
          animation-delay: 0.75s;
}
.article_contact #contour_animation:hover {
  background: rgba(255, 255, 255, 0);
  color: #fff;
  border-radius: 2px;
  box-shadow: 0 0 5px #ffffff, 0 0 25px rgba(255, 255, 255, 0.6352941176), 0 0 50px rgba(255, 255, 255, 0.3411764706), 0 0 100px rgba(255, 255, 255, 0);
}
@-webkit-keyframes btn-anim1 {
  0% {
    left: -100%;
  }
  50%, 100% {
    left: 100%;
  }
}
@keyframes btn-anim1 {
  0% {
    left: -100%;
  }
  50%, 100% {
    left: 100%;
  }
}
@-webkit-keyframes btn-anim2 {
  0% {
    top: -100%;
  }
  50%, 100% {
    top: 100%;
  }
}
@keyframes btn-anim2 {
  0% {
    top: -100%;
  }
  50%, 100% {
    top: 100%;
  }
}
@-webkit-keyframes btn-anim3 {
  0% {
    right: -100%;
  }
  50%, 100% {
    right: 100%;
  }
}
@keyframes btn-anim3 {
  0% {
    right: -100%;
  }
  50%, 100% {
    right: 100%;
  }
}
@-webkit-keyframes btn-anim4 {
  0% {
    bottom: -100%;
  }
  50%, 100% {
    bottom: 100%;
  }
}
@keyframes btn-anim4 {
  0% {
    bottom: -100%;
  }
  50%, 100% {
    bottom: 100%;
  }
}

.article_contact:hover {
  box-shadow: 1px 1px 10px white;
  border-radius: 10px;
}

/* section ID Copyright ---------SECTION COPYRIGHT */
#section_copyright {
  padding-top: 1rem;
  margin-bottom: 5rem;
}
#section_copyright .articles_copyright {
  position: relative;
  display: flex;
  text-align: center;
  height: auto;
  align-items: center;
  justify-content: center;
}
#section_copyright .articles_copyright p {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* -----------------------------------------FOOTER */
#footer_pied_de_page {
  position: fixed;
  background-color: rgba(73, 71, 71, 0.9);
  width: 100%;
  bottom: 0;
  border-radius: 0.5rem;
  z-index: 5;
}
#footer_pied_de_page #section_pied_de_page {
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin: 0 auto;
  width: 90vw;
  margin-bottom: 0.3rem;
}
#footer_pied_de_page #section_pied_de_page .footer_link {
  margin-top: 0.7rem;
  text-decoration: none;
}
#footer_pied_de_page #section_pied_de_page .footer_link img {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
}

/* animation footer:passage du pointeur */
.animation_footer:hover {
  cursor: pointer;
  position: relative;
  -webkit-animation-name: animation_footer;
          animation-name: animation_footer;
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  border-radius: 50%;
}

@-webkit-keyframes animation_footer {
  0% {
    top: 0px;
    left: 0px;
    background-color: rgb(148, 102, 34);
  }
  25% {
    top: 0px;
    left: 1px;
    background-color: rgb(100, 237, 207);
  }
  50% {
    top: 1px;
    left: 1px;
    background-color: rgb(237, 100, 191);
  }
  75% {
    left: 0px;
    top: 1x;
    background-color: rgb(223, 237, 100);
  }
  100% {
    top: 0px;
    left: 0px;
    background-color: rgb(100, 216, 237);
  }
}

@keyframes animation_footer {
  0% {
    top: 0px;
    left: 0px;
    background-color: rgb(148, 102, 34);
  }
  25% {
    top: 0px;
    left: 1px;
    background-color: rgb(100, 237, 207);
  }
  50% {
    top: 1px;
    left: 1px;
    background-color: rgb(237, 100, 191);
  }
  75% {
    left: 0px;
    top: 1x;
    background-color: rgb(223, 237, 100);
  }
  100% {
    top: 0px;
    left: 0px;
    background-color: rgb(100, 216, 237);
  }
}/*# sourceMappingURL=style.css.map */