/*
| Nom de la couleur | Code HEX  | Code RGB             |
| ----------------- | --------- | -------------------- |
| **Noir profond**  | `#0E0E0E` | `rgb(14, 14, 14)`    |
| **Gris graphite** | `#2A2A2A` | `rgb(42, 42, 42)`    |
| **Blanc cassé**   | `#F5F5F0` | `rgb(245, 245, 240)` |
| **Beige clair**   | `#E8E4D9` | `rgb(232, 228, 217)` |
| **Beige moyen**   | `#D2C7B3` | `rgb(210, 199, 179)` |
| **Beige rosé**    | `#C9B8A3` | `rgb(201, 184, 163)` |
| **Sépia doux**    | `#B8A58C` | `rgb(184, 165, 140)` |
| **Gris sable**    | `#AFA093` | `rgb(175, 160, 147)` |
*/

/*fonts début*/
.geo-regular {
  font-family: "Geo", sans-serif;
  font-weight: 400;
  font-style: normal;
}
.geo-regular-italic {
  font-family: "Geo", sans-serif;
  font-weight: 400;
  font-style: italic;
}

.share-tech-mono-regular {
  font-family: "Share Tech Mono", monospace;
  font-weight: 400;
  font-style: normal;
}

.ibm-plex-sans- {
  font-family: "IBM Plex Sans", sans-serif;
  font-weight: 400;
  font-style: normal;
}
/*fonts fin*/




html {
  cursor: url('img/cursor_nierPiratage30.png'), auto;
  font-family: "Share Tech Mono", monospace;
  font-weight: 600;
  font-style: normal;
  font-size: 1rem;
}

body {
  background: url(img/bg_body.png);
  background-size: cover;
  display: flex;
  flex-direction: column;
}

.flexContent {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
}

a {
  cursor: url('img/cursor_nierPiratage30.png'), auto;
}

/* bannière début */
header {
  background: rgb(175, 160, 147);
  background-size: cover;
  background-position: center;
  padding: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  box-shadow: 12px 12px 0px black;
  margin: 1rem;
}

.idInfos {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 3rem;
  font-family: "Geo", sans-serif;
  font-style: normal;
}

.idLogo {
  background-color: black;
  padding: 10px 15px;
  box-shadow: 8px 8px 0px rgba(255, 255, 255, 1);
  color: white;
  font-weight: 500;
  font-size: 3rem;
}

.idName {
  color: black;
  font-weight: 600;
  font-size: 3em;
  align-self: center;
  text-shadow: 3px 3px 0px white;
}

nav {
  align-self: flex-end;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
  justify-content: right;
  flex-wrap: wrap;
}

nav a {
  background: rgb(232, 228, 217);
  text-decoration: none;
  font-family: "Share Tech Mono", monospace;
  font-weight: 600;
  font-style: normal;
  font-size: 1.2rem;
  padding: 10px 15px;
  color: rgb(85, 77, 70);
  box-shadow: 6px 6px 0px rgba(232, 228, 217, 0.4);
}

nav a:hover {
  background-color: rgb(85, 77, 70);
  color: rgb(232, 228, 217);
  box-shadow: 6px 6px 0px rgba(85, 77, 70, 0.4);
}

nav a:active {
  background-color: rgba(85, 77, 70, 0.5);
  box-shadow: 6px 6px 0px rgba(85, 77, 70, 0.2);
}

#indexActive,#cvActive,#skillsActive {
  background-color: rgb(85, 77, 70);
  color: rgb(232, 228, 217);
  box-shadow: 6px 6px 0px rgba(85, 77, 70, 0.4);
}
/* bannière fin */

/* carte visite début */
aside {
  align-self: flex-start;
  background-color: rgb(187, 165, 140);
  box-shadow: 12px 12px 0px black;
  margin: 1rem;
  padding: 2rem;
  gap: 3rem;
  width: 17.5%;
  display: flex;
  flex-direction: column;
}

.statut,.coordonnees,.socials {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.linkCV {
  text-decoration: none;
  align-self: center;
  color: rgb(116,81,235);
  background: rgb(232, 228, 217);
  text-decoration: none;
  width: 13rem;
  padding: 7px 10px;
  box-shadow: 6px 6px 0px rgba(232, 228, 217, 0.4);
}
.linkCV:hover {
  color: rgb(232, 228, 217);
  background-color: rgb(116,81,235);
  box-shadow: 6px 6px 0px rgba(85, 77, 70, 0.4);
}
.linkCV:active {
  color: rgb(232, 228, 217);
  background-color: rgba(116,81,235,0.5);
  box-shadow: 6px 6px 0px rgba(85, 77, 70, 0.2);
}

.socials ul {
  list-style: none;
  display: flex;
  flex-direction: row;
  gap: 1rem;
  justify-content: left;
  flex-wrap: wrap;
}

.socials a {
  background: rgb(232, 228, 217);
  text-decoration: none;
  padding: 7px 10px;
  font-size: 1.1rem;
  box-shadow: 6px 6px 0px rgba(232, 228, 217, 0.4);
}

.linkedin {
  color: rgb(14, 118, 168);
}
.linkedin:hover {
  color: rgb(232, 228, 217);
  background-color: rgb(14, 118, 168);
  box-shadow: 6px 6px 0px rgba(85, 77, 70, 0.4);
}
.linkedin:active {
  color: rgb(232, 228, 217);
  background-color: rgba(14, 118, 168, 0.5);
  box-shadow: 6px 6px 0px rgba(85, 77, 70, 0.2);
}

.github {
  color: rgb(139,40,185);
}
.github:hover {
  color: rgb(232, 228, 217);
  background: linear-gradient(180deg, rgb(40,1,116), rgb(197,65,223));
  box-shadow: 6px 6px 0px rgba(85, 77, 70, 0.4);
}
.github:active {
  color: rgb(232, 228, 217);
  background: linear-gradient(180deg, rgba(40,1,116,0.5), rgba(197,65,223,0.5));
  box-shadow: 6px 6px 0px rgba(85, 77, 70, 0.2);
}

.codepen {
  color: black;
}
.codepen:hover {
  color: rgb(232, 228, 217);
  background: black;
  box-shadow: 6px 6px 0px rgba(85, 77, 70, 0.4);
}
.codepen:active {
  color: rgb(232, 228, 217);
  background: rgba(0,0,0,0.5);
  box-shadow: 6px 6px 0px rgba(85, 77, 70, 0.2);
}
/* carte visite fin */

/* bas début */
footer {
  background: rgb(85, 77, 70);
  margin: 1rem;
  padding: 1rem;
  box-shadow: 12px 12px 0px black;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}

.buttonUp {
  align-self: center;
  background: rgb(175, 160, 147);
  text-decoration: none;
  color: black;
  font-size: 3rem;
  padding: 6px 16px;
  box-shadow: 6px 6px 0px black;
}
.buttonUp:hover {
  color: rgb(85, 77, 70);
  background: rgb(232, 228, 217);
  box-shadow: 6px 6px 0px rgba(232, 228, 217, 0.4);
}
.buttonUp:active {
  color: rgb(85, 77, 70);
  background: rgba(232, 228, 217, 0.4);
  box-shadow: 6px 6px 0px rgba(232, 228, 217, 0.2);
}

.copyright {
  color: white;
  align-self: center;
}

.footerNav {
  align-self: center;
}

.footerNav ul {
  list-style: none;
  display: flex;
  gap: 0.5rem;
  justify-content: flex-start;
  flex-wrap: wrap;
}

.footerNav a {
  background: rgb(85, 77, 70);
  text-decoration: none;
  font-family: "Share Tech Mono", monospace;
  font-weight: 600;
  font-style: normal;
  font-size: 1rem;
  padding: 7px 10px;
  color: rgb(232, 228, 217);
  box-shadow: 6px 6px 0px rgb(85, 77, 70);
}

.footerNav a:hover {
  background: rgb(232, 228, 217);
  box-shadow: 6px 6px 0px rgba(232, 228, 217, 0.4);
  color: rgb(85, 77, 70);
}

.footerNav a:active {
  background-color: rgba(232, 228, 217, 0.5);
  box-shadow: 6px 6px 0px rgba(232, 228, 217, 0.2);
}
/* bas fin */

/* contenu début */
main {
  width: 82.5%;
  margin: 1rem;
  border: 2px solid black;
  padding: 2rem;
}

.title {
  font-family: "Share Tech Mono", monospace;
  font-weight: 600;
  font-style: normal;
  font-size: 1.75rem;
  text-shadow: 2px 2px 0px rgba(255, 255, 255, 0.7)
}

strong {
  font-size: 1.1rem;
}
/* contenu fin */

/* contenu A Propos début */
.aPropos {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.davidPresentation,.davidRoad {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 2rem;
}

.davidPresentation {
  background: white;
  padding: 2rem;
  box-shadow: 12px 12px 0px rgba(0,0,0,0.6);
}

.davidPic {
  width: 25%;
  width: 200px; height: 200px;
}

.davidInfo {
  color: rgba(0,0,0,0.75);
  text-align: justify;
  width: 75%;
}

.davidProjects {
  padding: 2rem;
  flex: 1;
  align-self: flex-start;
  border: 3px dashed black;
}

.davidProjectsPostIt {
  background: beige;
  padding: 1rem;
}

.davidProjectsTitle {
  text-shadow: 1.5px 1.5px 0px rgba(255, 255, 255, 0.7);
  text-align: center;
  font-size: 1.25rem;
  margin: 0.5rem;
}

.davidProjectsText {
  text-align: justify;
  margin: 1rem;
}

.davidUniverse {
  background: rgba(190, 224, 228);
  padding: 2rem;
  box-shadow: 12px 12px 0px rgba(0,0,0,0.6);
  flex: 1;
  align-self: flex-start;
}

.davidInterestsTitle {
  text-shadow: 1.5px 1.5px 0px rgba(255, 255, 255, 0.7);
  font-size: 1.25rem;
  margin: 0.5rem;
}
/* contenu A Propos fin */

/* contenu CV début */
.cv {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.cvFlex {
  display: flex;
  flex-direction: row;
  gap: 2rem;
}

.cvBox {
  background: white;
  padding: 2rem;
  box-shadow: 12px 12px 0px rgba(0,0,0,0.6);
  flex: 1;
  align-self: flex-start;
}

.cvHead {
  background: white;
  padding: 2rem;
  box-shadow: 12px 12px 0px rgba(116,81,235,0.6);
  align-self: center;
  border: 5px solid rgb(116,81,235);
}

.presentCV {
  margin-top: 1.5rem;
  text-align: center;
}

.titleCV {
  margin-bottom: 2rem;
  text-align: center;
  text-shadow: 2px 2px 0px rgba(175, 160, 147, 0.75);
}

.textOC {
  color: rgb(116,81,235);
}

.dateLieu {
  color: rgba(0,0,0,0.75);
  text-align: end;
}

.formation,.occupation {
  text-align: start;
  color: rgb(85, 77, 70);
  font-size: 1.3rem;
}

.entreprise,.school {
  text-align: start;
}

.commentary {
  color: rgba(0,0,0,0.75);
  text-align: left;
}

.edu .commentary {
  text-align: end;
}

.cvBox a {
  text-decoration: none;
  color: blue;
}
.cvBox a:hover {
  text-decoration: underline;
}
.cvBox a:active {
  text-decoration: underline;
  color: rgb(117, 58, 58);
}
/* contenu CV fin */

/* contenu Skills début */
.titleSkills {
  text-shadow: 2px 2px 0px rgba(175, 160, 147, 0.75);
}

.workSkills,.lifeSkills{
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  padding: 2rem;
  gap: 2rem;
}

.hardSoft,.toolSoft,.lifeBox {
  flex: 1;
  align-self: flex-start;
}

.toolSkills {
  background-color: white;
  box-shadow: 12px 12px 0px rgba(0,0,0,0.6);
  padding: 2rem;
}

.toolFlex {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 2rem;
}

.toolSoft,.listLife {
  margin-left: 25px;
}

.bar {
  display: inline-block;
  width: 70%;
  height: 8px;
  background-color: rgb(40, 40, 40);
  
  overflow: hidden;
  vertical-align: middle;
  border: 2px solid rgb(40, 40, 40);
  box-shadow: 4px 4px 0px rgba(40,40,40,0.6);
}

.fill {
  height: 100%;
  background-color: rgb(82, 238, 194);
  
}

.levelSkill {
  font-style: italic;
  font-size: 0.8rem;
  color: rgba(0,0,0,0.65);
}

.flag {
  width: 25px; 
}
/* contenu Skills fin */