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

/* Make sure body fills the screen */
html, body {
	height: 100%;
	overflow: hidden; /* hides scrollbars if video overflows */
}

/*burger*/

header {
  display: flex;
  justify-content: space-between;
  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;
  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;
}

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

/* Optional: hide burger on desktop */
@media only screen and (min-width: 900px) {
  .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;
  }
}



/* Position the video container */
.showreel {
	position: fixed; /* stays behind all content */
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -1; /* puts it behind your text */
	overflow: hidden;
}

/* Style the video itself */
.showreel video {
	width: 100%;
	height: 100%;
	object-fit: cover; /* fills the screen, cropping edges instead of stretching */
	object-position: center;
}

/*
.title {
	font-family: Jersey_10;
	position: absolute;
	color: #9B79BD;
	font-size: 70px;
	padding: 30px;
	justify-items: left;


}
*/

a:hover, a:active{
	color: #18FF56;
}

a{
	text-decoration: none;
}

a {
	color: #9B79BD;
}