@font-face {
  font-family: 'Jersey_10'; /* Nom personnalisé de la police */
  src: url('../Work/files_portfolio/Jersey_10/Jersey10-Regular.woff') format('woff')
}

@font-face  {
	font-family: 'Roboto_Mono';
  	src: url('../Work/files_portfolio/Roboto_Mono/static/RobotoMono-regular.woff') format('woff');
}

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

body {
	background-color: black;
}

h1 {
	font-family: Jersey_10;
}

h3 {
	font-family: Jersey_10;
	color: #18FF56;
	font-size: 30px;
}

p{
	font-family: Roboto_Mono;
	font-size: 15px;
}

/* style header */

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  position: relative;
  z-index: 10;
}

.logo{
	font-family: Jersey_10;
	font-size: 40px;
	color: #9B79BD;
	justify-content: top;
}

/* Burger icon */
.burger {
  width: 30px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 22px;
  z-index: 11;
}

.burger div {
  height: 4px;
  background: #9B79BD;
  border-radius: 2px;
  transition: 0.3s;
}

/* MOBILE MENU (hidden by default) */
.mobile-menu {
  position: absolute;
  top: 0px;
  right: 0px;
  width: 66%;
  height: 100vh;
  background: #1E1E1E;
  padding: 150px 30px;
  justify-content: top;
  display: none; /* start hidden */
  flex-direction: column;
  gap: 15px;
  box-shadow: 0px 4px 15px rgba(0,0,0,0.2);
}

/* Menu links */
.mobile-menu a {
  color: #9B79BD;
  text-decoration: none;
  font-size: 18px;
  font-family: Roboto_Mono;
}

.mobile-menu a:active {
	color: #18FF56;
}

/* When menu is active, show it */
.mobile-menu.open {
  display: flex;
}

/* ANIMATION for burger transform */
.burger.open div:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.burger.open div:nth-child(2) {
  opacity: 0;
}

.burger.open div:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* CV */


/*color CV*/

.intro{
	color: #9B79BD;
}

.specialisation {
	color: #D9D9D9;
	font-family: Roboto_Mono;
  padding-left: 10px;
}
.Artist_statement{
  font-family: Roboto_Mono;
  color: #D9D9D9;
}
button {
	background-color: #18FF56;
	width: 70px;
	height: 50px;
	font-family: Jersey_10;
	font-size: 50px;
	color: #1E1E1E;
	border-radius: 10px;
	border-style: none;
	cursor: pointer;
}
.CV_button {
 align-items: center;
 padding-left: 10px;
}
.years_exp{
	color: #9B79BD;
}

.experience_description{
	color: #D9D9D9;
}

.years_edu{
	color: #9B79BD;
}
.education_description{
	color: #D9D9D9;
}

.education_description a {
    font-family: Roboto_Mono;
    font-size : 30px;
	padding-left: 10px;
}

.education_description a:hover {
	color: #18FF56;
}

/* Display */

/* Mobile */



.intro_CV {
	display: grid;
	grid-template-columns: 1fr;
}

.CV {
	display: grid;
	grid-template-columns: 1fr;
	
}

/* Experience */
.experience_subdivision {
  display: grid;
  gap: 10px; /* spacing between rows */
}

.experience_item {
  display: grid;
  grid-template-columns: 1fr 2fr; /* years + description */
  align-items: start;
  column-gap: 20px;
}

.years_exp p,
.experience_description p {
  margin: 10px;
}


/* Education */
.education_subdivision {
  display: grid;
  gap: 10px; /* spacing between rows */
}

.education_item {
  display: grid;
  grid-template-columns: 1fr 2fr; /* left: year | right: description */
  align-items: start;
  column-gap: 20px;
}
.education_item a {
	text-decoration: none;
	color: #D9D9D9;
	font-size: 15px;
	font-family: Roboto_Mono;
	cursor: pointer;
}
.years_edu p,
.education_description p {
  margin: 10px;
}





/* Desktop */

@media only screen and (min-width: 900px){

/* Header */

 .burger {
    display: none;
  }

  .mobile-menu {
	 height: 50px;
	 width: 66%;
    position: fixed;
    display: flex !important;
    flex-direction: row;
    gap: 30px;
    box-shadow: none;
    background: none;
    padding-top: 20px;
	justify-content: right;
	
  }

  .mobile-menu a:hover, a:active {
	color: #18FF56;
}
.CV_button{
  justify-items: center;
}

button:hover, button:active{
  background-color: #9B79BD;
}

.CV {
	display: grid;
	grid-template-columns: 1fr 2fr;
	padding: 20px;
}


}
