@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Outfit&display=swap");
@font-face {
  font-family: Silka;
  src: url(/assets/fonts/SilkaMono-Regular.otf);
}
.visually-hidden {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  top: auto;
  overflow: hidden;
}

@keyframes animationBurgerFirst {
  100% {
    transform: translateY(10px) rotate(45deg);
  }
}
@keyframes animationBurgerSecond {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes animationBurgerThree {
  100% {
    transform: translateY(-8px) rotate(-45deg);
  }
}
@keyframes loading {
  0% {
    width: 0%;
  }
  100% {
    width: 76px;
  }
}
@keyframes breath {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(0.9);
  }
  100% {
    transform: scale(1);
  }
}
html {
  scroll-behavior: smooth;
  scroll-snap-type: mandatory;
  transition: 2s ease-in-out;
  background-color: #fffeef;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/*
========================================================
NAVBAR
========================================================
*/
nav {
  position: sticky;
  top: 0;
  z-index: 3;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 100px;
  padding: 20px;
  background-color: #fffeef;
}
nav h1 {
  justify-content: flex-start;
  font-family: Outfit;
  font-size: 35px;
  color: #201e1e;
}
nav ul {
  display: flex;
  flex-direction: row;
  gap: 50px;
  list-style: none;
  font-family: Silka;
  font-size: 18px;
}
nav ul a {
  text-decoration: none;
  color: black;
}
@media screen and (max-width: 900px) {
  nav {
    position: static;
    align-items: flex-end;
  }
}

/*
========================================================
CLASSE AJOUTER EN JS
========================================================
*/
.animation-une {
  animation: animationBurgerFirst 1s forwards;
}

.animation-deux {
  animation: animationBurgerSecond 1s forwards;
}

.animation-trois {
  animation: animationBurgerThree 1s forwards;
}

/**/
/*
========================================================
MENU BURGER
========================================================
*/
.responsive-menu-container {
  display: none;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 1fr 1fr 1fr 1fr;
  position: absolute;
  top: 0;
  z-index: 4;
  height: 900px;
  background-color: rgba(0, 0, 0, 0);
}
@media screen and (max-width: 900px) {
  .responsive-menu-container {
    display: grid;
    gap: 50px;
    z-index: 4;
    width: 100%;
    padding: 20px;
  }
  .responsive-menu-container ul {
    z-index: 5;
    padding: 20px;
  }
}
.responsive-menu-container .burgermenu-icon {
  grid-row: 1;
  grid-column: 3;
  height: fit-content;
  width: fit-content;
  padding: 13px;
  object-fit: contain;
  z-index: 5;
  display: none;
  justify-self: end;
}
.responsive-menu-container .burgermenu-icon .burgermenu-bar {
  height: 4px;
  width: 25px;
  background-color: black;
  margin: 5px;
}
@media screen and (max-width: 900px) {
  .responsive-menu-container .burgermenu-icon {
    display: block;
    z-index: 3;
  }
}
.responsive-menu-container ul {
  list-style: none;
  font-family: Silka;
  font-size: 40px;
}
.responsive-menu-container ul a {
  text-decoration: none;
  color: black;
}
.responsive-menu-container .responsive-menu {
  grid-column: 2;
  /*display: flex;*/
  grid-row: 2/3;
  display: none;
  flex-direction: column;
  gap: 50px;
}
.responsive-menu-container .display-flex {
  display: flex;
}

.red-background {
  background-color: #ef4142;
  position: fixed;
}

/*
========================================================
HEADER
========================================================
*/

#header {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: fit-content;
  gap: 20px;
  margin: 0 auto;
  width: 856px;
  height: 798px;
  padding: 20px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  background-clip: padding-box;
}
#header .spline {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  left: 0;
  z-index: -1;
  object-fit: cover;
}
@media screen and (max-width: 900px) {
  #header {
    width: 400px;
  }
}
#header h2 {
  font-family: Outfit;
  font-size: 45px;
}
#header h3 {
  font-family: Outfit;
  font-size: 18px;
  font-weight: 100;
}
#header .loading-div {
  width: 132px;
  height: 16px;
  background-color: #faf3e1;
  border: #201e1e solid 1px;
}
#header .loading-div .load {
  width: 76px;
  height: 15px;
  background-color: #201e1e;
  animation: loading 2s forwards;
}

/*
========================================================
SECTION A PROPOS
========================================================
*/
#AboutMe {
  position: relative;
  z-index: 2;
  display: flex;
  margin: 0 auto;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 60%;
  background-image: url(/assets/images/background-portfolio-second.webp);
  background-repeat: no-repeat;
  background-size: contain;
}
#AboutMe .texte-aboutme {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 12px;
  height: 100%;
  text-align: center;
}
@media screen and (max-width: 900px) {
  #AboutMe .texte-aboutme {
    align-items: center;
    justify-content: center;
  }
}
#AboutMe .texte-aboutme h2 {
  font-family: Outfit;
  font-size: 25px;
  height: fit-content;
  max-width: 520px;
}
#AboutMe .texte-aboutme p {
  font-family: Silka;
  font-size: 20px;
  line-height: 0.85cm;
  max-width: 520px;
  color: #201e1e;
}
@media screen and (max-width: 900px) {
  #AboutMe {
    width: fit-content;
  }
}

/*
========================================================
EXPERIENCE
========================================================
*/
#Experience {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  width: 70%;
  margin: 80px auto 40px auto;
}
#Experience h2 {
  font-family: Outfit;
  font-size: 40px;
  text-align: center;
}
#Experience .experience-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}
#Experience .experience-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 2fr);
  align-items: start;
  gap: 20px;
  padding: 18px;
  background-color: #faf3e1;
  border: 1px solid #201e1e;
}
#Experience .experience-meta {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
#Experience .experience-header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
}
#Experience .experience-role {
  font-family: Outfit;
  font-size: 18px;
}
#Experience .experience-company,
#Experience .experience-date,
#Experience .experience-desc {
  font-family: Silka;
  font-size: 14px;
}
#Experience .experience-location {
  font-family: Silka;
  font-size: 14px;
  opacity: 0.7;
}
#Experience .experience-desc {
  margin-bottom: 10px;
  line-height: 0.6cm;
}
#Experience .experience-bullets {
  margin-top: 4px;
  padding-left: 18px;
  list-style: disc;
}
#Experience .experience-bullets li {
  font-family: Silka;
  font-size: 14px;
  margin-bottom: 8px;
}
#Experience .experience-date {
  opacity: 0.7;
}
#Experience .experience-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
  padding: 0;
}
#Experience .experience-tags li {
  font-family: Silka;
  font-size: 14px;
  padding: 6px 12px;
  border: 1px solid #201e1e;
  border-radius: 20px;
  background-color: #fffeef;
}
@media screen and (max-width: 900px) {
  #Experience {
    width: 100%;
    padding: 0 10px;
  }
  #Experience .experience-item {
    grid-template-columns: 1fr;
  }
}
/*
========================================================
EDUCATION
========================================================
*/
#Education {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  width: 70%;
  margin: 80px auto 40px auto;
}
#Education h2 {
  font-family: Outfit;
  font-size: 40px;
  text-align: center;
}
#Education .education-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}
#Education .education-item {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 24px;
  background-color: #faf3e1;
  border: 1px solid #201e1e;
}
#Education .education-program {
  font-family: Outfit;
  font-size: 20px;
}
#Education .education-header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
}
#Education .education-school,
#Education .education-date,
#Education .education-concentration,
#Education .education-score,
#Education .education-subtitle,
#Education .education-details p,
#Education .education-details li {
  font-family: Silka;
  font-size: 16px;
}
#Education .education-concentration {
  font-size: 14px;
  opacity: 0.8;
}
#Education .education-date {
  opacity: 0.7;
}
#Education .education-subtitle {
  margin-top: 10px;
}
#Education .education-details ul {
  margin-top: 10px;
  padding-left: 18px;
  list-style: disc;
}
#Education .education-courses {
  column-count: 2;
  column-gap: 24px;
}
#Education .education-notes {
  column-count: 1;
}
@media screen and (max-width: 900px) {
  #Education {
    width: 100%;
    padding: 0 10px;
  }
  #Education .education-courses {
    column-count: 1;
  }
}

/*
========================================================
SKILLS
========================================================
*/
#Skills {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  width: 70%;
  margin: 80px auto 40px auto;
}
#Skills h2 {
  font-family: Outfit;
  font-size: 40px;
  text-align: center;
}
#Skills .skills-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  width: 100%;
  justify-content: center;
}
#Skills .skills-badges img {
  height: 28px;
  display: block;
}
@media screen and (max-width: 900px) {
  #Skills {
    width: 100%;
    padding: 0 10px;
  }
  #Skills .skills-badges {
    justify-content: flex-start;
  }
}

/*
========================================================
MES PROJETS
========================================================
*/
#MyProjects {
  position: relative;
  z-index: 1;
  padding: 0;
  /*width: 100%;*/
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 50px;
  padding-bottom: 190px;
  margin: 10px;
  background-image: url(/assets/images/background-portfolio-third.webp);
  background-repeat: repeat-y;
  background-size: contain;
}
#MyProjects h2 {
  font-family: Outfit;
  font-size: 45px;
  text-align: center;
}
#MyProjects a {
  color: black;
  text-decoration: none;
}
#MyProjects .CardProjet {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: auto;
  width: 80%;
  font-family: Silka;
  font-size: 16px;
  background-color: #faf3e1;
  overflow: hidden;
  gap: 20px;
  margin: 0 auto;
}
@media screen and (max-width: 900px) {
  #MyProjects .CardProjet {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    width: min(100%, 520px);
    gap: 0;
    border-radius: 18px;
    overflow: hidden;
  }
}
#MyProjects .CardProjet .gauche {
  grid-column: 1;
  grid-row: 1/2;
}
#MyProjects .CardProjet .droite {
  grid-column: 2;
  grid-row: 1/2;
}
#MyProjects .CardProjet .case-image {
  align-self: stretch;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
#MyProjects .CardProjet .case-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 260px;
  overflow: hidden;
}
#MyProjects .CardProjet .case-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (max-width: 900px) {
  #MyProjects .CardProjet .case-image {
    grid-row: 1;
    grid-column: 1;
    min-height: 220px;
  }
}
#MyProjects .CardProjet .acadxp {
  background-image: linear-gradient(135deg, #101010, #2b2b2b);
}
#MyProjects .CardProjet .dripondrip {
  background-image: linear-gradient(135deg, #1f2937, #111827);
}
#MyProjects .CardProjet .devquotes {
  background-image: linear-gradient(135deg, #0f172a, #1e293b);
}
#MyProjects .CardProjet .cineverse {
  background-image: linear-gradient(135deg, #111827, #312e81);
}
#MyProjects .CardProjet .texte-projet {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin: 32px 32px 24px 32px;
  gap: 16px;
}
@media screen and (max-width: 900px) {
  #MyProjects .CardProjet .texte-projet {
    grid-row: 2;
    grid-column: 1;
    margin: 18px 18px 22px 18px;
    gap: 12px;
  }
}
#MyProjects .CardProjet .texte-projet h2 {
  font-family: Outfit;
  font-size: 20px;
  color: black;
}
#MyProjects .CardProjet .texte-projet p {
  font-family: Silka;
  font-size: 14px;
  margin-top: 4px;
  line-height: 0.65cm;
}
#MyProjects .CardProjet .project-bullets {
  margin: 0;
  padding-left: 18px;
  list-style: disc;
}
#MyProjects .CardProjet .project-bullets li {
  font-family: Silka;
  font-size: 13px;
  margin-bottom: 6px;
}
#MyProjects .CardProjet .project-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  padding: 0;
}
#MyProjects .CardProjet .project-stack li {
  font-family: Silka;
  font-size: 12px;
  padding: 4px 10px;
  border: 1px solid #201e1e;
  border-radius: 999px;
  background-color: #fffeef;
}
#MyProjects .CardProjet .project-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
@media screen and (max-width: 900px) {
  #MyProjects .CardProjet .project-actions {
    width: 100%;
  }
}
#MyProjects .CardProjet .button-container {
  font-family: Silka;
  font-size: 16px;
  background-color: #201e1e;
  color: white;
  width: 200px;
  padding: 8px;
  height: 36px;
  display: flex;
  justify-content: center;
  align-items: center;
}
#MyProjects .CardProjet .button-container p::after {
  position: relative;
  left: 5px;
  bottom: 3px;
  content: "⟶";
  color: #fffeef;
}
@media screen and (max-width: 900px) {
  #MyProjects .CardProjet .button-container {
    margin: 0;
    width: 100%;
  }
}
#MyProjects .CardProjet .button-container:hover {
  border: 1px #201e1e solid;
  background-color: transparent;
  color: #201e1e;
}
#MyProjects .CardProjet .button-container:hover p::after {
  color: #201e1e;
}
@media screen and (max-width: 900px) {
  #MyProjects .CardProjet {
    margin: 0 10px;
  }
}
@media screen and (max-width: 900px) {
  #MyProjects .CardProjet {
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    height: fit-content;
    width: fit-content;
    gap: 10px;
  }
}

/*
========================================================
CONTACT
========================================================
*/
#Contact {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
  background-color: #fffeef;
}
@media screen and (max-width: 900px) {
  #Contact {
    flex-direction: column-reverse;
    gap: 20px;
    height: -50px;
  }
}
#Contact h2 {
  font-family: Outfit;
  font-size: 20px;
  margin: 18px;
}
#Contact h2 span {
  color: #ef4142;
  font-family: Silka;
  font-size: 20px;
}
#Contact img {
  width: 20%;
}
@media screen and (max-width: 900px) {
  #Contact img {
    width: 50%;
  }
}
#Contact p {
  font-family: Silka;
  font-size: 18px;
}
#Contact p::after {
  position: relative;
  content: "⟶";
}
#Contact .container-contact {
  display: flex;
  gap: 20px;
  margin-top: 50px;
  padding-bottom: 10px;
}
#Contact .container-contact ul {
  display: flex;
  flex-direction: column;
  list-style: none;
  font-family: Silka;
  font-size: 18px;
}
#Contact .container-contact ul a {
  text-decoration: none;
  color: #201e1e;
}
#Contact .container-contact ul img {
  width: 80%;
}
#Contact .container-contact ul a:hover {
  color: #ef4142;
}

/*
========================================================
RESPONSIVE
========================================================
*/
@media screen and (max-width: 900px) {
  nav {
    justify-content: flex-start;
  }
  nav ul {
    display: none;
  }
  #AboutMe {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: repeat(2, 1fr);
    /*margin: 10px;*/
    padding: 10px;
    width: 100%;
  }
  #AboutMe h2,
  #AboutMe p,
  #AboutMe div,
  #AboutMe .ButtonSeeMore {
    grid-column: 1;
  }
}
/*# sourceMappingURL=style.css.map */
