:root {
  --green: #2f9a4a;
  --yellow: #ffd200;
  --white: #ffffff;
  --black: #000000;
  --red: #e53935;
  --font: 'Roboto', sans-serif;
  --topbar-height: 100px;
  --left-marging: 260px;
  --left-marging-less: 260px;
}

{
  /*box-sizing: border-box;*/
  box-sizing: content-box;
  margin: 0;
  padding: 0;
}
body {
  font-family: var(--font);
  font-weight: 100;
  background-color: var(--white);
  color: #111;
}

header {
  display: flex;
  flex-direction: column;
  /*align-items: center;*/
  width: fit-content;
  line-height: 0.0; /* valeur relative */
}
/*///////////////////////////////////////////////////*/
.topbar {
  display: flex;
  flex-direction: column;
  justify-content: flex-start; 
  /*align-items: center;*/
  position: fixed;
  top: 0;
  left: 0;
  margin-left: 0px; 
  width: 100%;
  height: var(--topbar-height);
  background-color: var(--white);
  z-index: 1000;
  box-shadow: 0 0 20px rgba(0,0,0,0.1);
  margin-bottom: 100px; 
  padding: 5px 0;
 }

.logo img {
  margin-top: 20px;
  margin-bottom: 20px;
  margin-left: 700px;
  justify-content: center;
  align-items: center;
  display: block;
}

.nav-links {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  /*margin-left: var(--left-marging );*/
  margin-left: 560px; 
  /*justify-content: center; /* ← centre les liens */
  gap: 20px;
}
.nav-links-showreel{
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  margin-left: 560px; 
  gap: 20px;	
}

.nav-item {
  color: black;
  text-decoration: none;
  font-size: 24px;
  font-weight: 300; 
  transition: color 0.3s ease;
  cursor: pointer !important; 
  user-select: none;
}
.nav-item-off {
  color: black;
  text-decoration: none;
  font-size: 24px;
  font-weight: 300; 
  cursor: pointer !important; 
  user-select: none;
}

.nav-item:hover {
  color: var(--yellow);
}

.nav-sep {
  color: black;
  text-decoration: none;
  font-size: 28px; 
}


/*///////////////////////////////////////////////////*/
/*///////////////////////////////////////////////////*/

/* Responsive */
@media (max-width: 1300px) {

:root {
  --font: 'Roboto', sans-serif;
  --topbar-height: 120px;
  --left-marging: 50px;
  --left-marging-less: 45px;
}


/*///////////////////////////////////////////////////*/
header {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 0.0; /* valeur relative */
}
.topbar {
  display: flex;
  flex-direction: column;
  justify-content: center; 
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  margin-left: 0px; 
 }

.logo img {
  margin-top: 0px;
  margin-bottom: 20px;
  margin-left: 0px; 
  justify-content: center;
  align-items: center;
}

.nav-links {
  display: flex;  
  flex-direction: row;
  /*display: inline-block;*/
  /*width: 100vw;*/
  justify-content: center;
  text-align: center;  
  align-items: center;
  margin-left: 0;
  gap: 10px;
  overflow: visible; /* ou auto si scroll souhaité */    
}
.nav-links-showreel {
  display: flex;  
  flex-direction: row;
  /*display: inline-block;*/
  /*width: 100vw;*/
  justify-content: center;
  text-align: center;  
  align-items: center;
  margin-left: 0;
  gap: 10px;
  overflow: visible; /* ou auto si scroll souhaité */  
}
.nav-item {
  flex-wrap: wrap; 
  color: black;  
  text-decoration: none;
  font-size: 20px;
  font-weight: 300; 
  transition: color 0.3s ease;  
}
.nav-item-off {
  flex-wrap: wrap; 
  color: black;  
  text-decoration: none;
  font-size: 20px;
  font-weight: 300; 
  transition: color 0.3s ease;  
}


/*///////////////////////////////////////////////////*/
