@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');
}

* {box-sizing:border-box}


body {
	background-color: black;
}


p{
	font-family: Roboto_Mono;
	color: #D9D9D9;
}

img{
	height: auto;
	width: 100%;
}

a {
  text-decoration: none;
}
/* 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 {
  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 {
  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);
}

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

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

.mobile-menu.open {
  display: flex;
}

.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);
}


/* Project Description */

.project_name{
	font-family: Jersey_10;
	color: #9B79BD;
	font-size: 20px;
}

.specialisation{
	font-family: Roboto_Mono;
	color: #D9D9D9;
	font-size: 13px;
}



/* Projet Epsaa 4 */

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

.categorie_titles {
  font-family: Jersey_10;
	color: #18FF56;
}

.project_description {
	display: grid;
	grid-template-columns: 1fr;
	padding: 5px;
}

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

.animatic video {
  width: 100%;
  height: auto;
}

.caroussel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5px;
}




/* Slideshow container */
.slideshow-container {
  max-width: 1000px;
  position: relative;
  margin: auto;
}

/* Hide the images by default */
.mySlides {
  display: none;
}

/* Next & previous buttons */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -22px;
  padding: 16px;
  color: #18FF56;
  font-family: Jersey_10;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

/* Position the "next button" to the right */
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}
.prev:hover, .next:hover {
  color: #9B79BD;
}

/* Number text (1/3 etc) */
.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

/* Fading animation */
.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {opacity: .4}
  to {opacity: 1}
}

/* Boutons prev next */

.buttons a {
  color: #18FF56;
  font-family: Jersey_10;
  font-size: 100px;
  display: inline-block;
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  text-decoration: none;

}

.buttons a:hover {
  color: #9B79BD;
}


.avant {
  left: 20px;
}

.apres {
  right: 20px;
}




/* 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;
}

/* Projet */




.project_description {
	display: grid;
	grid-template-columns: 1fr 1fr;
	padding: 10px;
}

.project_description, .developpement, .trailer, .animatic, .moodboard, .visuels{
  padding-left: 100px;
  padding-right: 100px;
  padding-top: 50px;
  padding-bottom: 50px;
}

.trailer_content {
  Display: flex;
  flex-direction: row;
}
.trailer_content img {
  height : 512px;
  width : auto; 
  padding-left: 100px;
  padding-right: 100px;
}
}