/* KEYFRAMES */

@-webkit-keyframes fadeInOpacity {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadeInOpacity {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.fade-in {
  -webkit-animation-name: fadeInOpacity;
          animation-name: fadeInOpacity;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
  -webkit-animation-timing-function: ease-in;
          animation-timing-function: ease-in;
  -webkit-animation-duration: 0.5s;
          animation-duration:0.5s;
}


@keyframes slidedown {
  0% {
    top: -4rem;
  }
  100% {
      top:  3rem;
  }
}

@keyframes landing {
  0%{
    transform: translateY(-50px);
  }
  100%{
    transform: translateY(0px);
  }
}

@keyframes portfolio-down {
  0%{
    opacity: 0;
    transform: translateY(150px);
  }

  100%{
    opacity: 1;
    transform: translateY(0px);
  }
}

.show-transition {
  animation: portfolio-down 2s cubic-bezier(0,.83,.3,1);
  animation-delay: calc(var(--animation-order) * 200ms);
  animation-fill-mode: both;
}









/* --------------------------------------------------------------------------------- */

/* FONT IMPORTS */

@font-face {
  font-family: 'ClashDisplay-Bold';
  src: url('../fonts/static/BricolageGrotesque_24pt-ExtraBold.ttf') format('woff2'),
       url('../fonts/static/BricolageGrotesque_24pt-ExtraBold.ttf') format('woff'),
       url('../fonts/static/BricolageGrotesque_24pt-ExtraBold.ttf') format('truetype');
       font-weight: 700;
       font-display: swap;
       font-style: Bold;
}

@font-face {
  font-family: 'ClashDisplay-Semibold';
  src: url('../fonts/static/BricolageGrotesque_24pt-Bold.ttf') format('woff2'),
    url('../fonts/static/BricolageGrotesque_24pt-Bold.ttf') format('woff'),
    url('../fonts/static/BricolageGrotesque_24pt-Bold.ttf') format('truetype');
  font-weight: 700;
  font-display: swap;
  font-style: Semibold;
}

@font-face {
  font-family: 'ClashDisplay-Medium';
  src: url('../fonts/static/BricolageGrotesque_24pt-Medium.ttf') format('woff2'),
    url('../fonts/static/BricolageGrotesque_24pt-Medium.ttf') format('woff'),
    url('../fonts/static/BricolageGrotesque_24pt-Medium.ttf') format('truetype');
  font-weight: 400;
  font-display: swap;
  font-style: Medium;
}

@font-face {
  font-family: 'ClashDisplay-Regular';
  src: url('../fonts/static/BricolageGrotesque_24pt-ExtraBold.ttf') format('woff2'),
    url('../fonts/static/BricolageGrotesque_24pt-ExtraBold.ttf') format('woff'),
    url('../fonts/static/BricolageGrotesque_24pt-ExtraBold.ttf') format('truetype');
  font-display: swap;
  font-style: Normal;
}

@font-face {
  font-family: 'ClashDisplay-Variable';
  src: url('../fonts/static/BricolageGrotesque_24pt-ExtraBold.ttf') format('woff2'),
    url('../fonts/static/BricolageGrotesque_24pt-ExtraBold.ttf') format('woff'),
    url('../fonts/static/BricolageGrotesque_24pt-ExtraBold.ttf') format('truetype');
  font-display: swap;
  font-style: Variable;
}

@font-face {
  font-family: 'ClashGrotesk-Regular';
  src: url('../fonts/static/BricolageGrotesque_24pt-ExtraBold.ttf') format('woff2'),
    url('../fonts/static/BricolageGrotesque_24pt-ExtraBold.ttf') format('woff'),
    url('../fonts/static/BricolageGrotesque_24pt-ExtraBold.ttf') format('truetype');

  font-display: swap;
  font-style: Normal;
}

@font-face {
  font-family: 'ClashGrotesk-Medium';
  src: url('../fonts/static/BricolageGrotesque_24pt-ExtraBold.ttf') format('woff2'),
    url('../fonts/static/BricolageGrotesque_24pt-ExtraBold.ttf') format('woff'),
    url('../fonts/static/BricolageGrotesque_24pt-ExtraBold.ttf') format('truetype');

  font-display: swap;
  font-style: Medium;
}













/* --------------------------------------------------------------------------------- */

/* GENERAL */

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  cursor: none;
  scroll-behavior: smooth;
}

body{
  background-size: cover; /* Pour que l'image couvre toute la zone */
  background-position: center; /* Pour centrer l'image */
  background-repeat: no-repeat; /* Pour éviter que l'image se répète */
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 1200px;
  margin: auto;
}

div.main {
  background-color:#080808;
  border-radius: 20px;
  padding: 20px 20px;
  margin: 50px;
  height: 90%;
  width: 90%;
}
html {
  height: -webkit-fill-available;
}

::selection {
  color: rgb(0, 0, 0);
  background: rgb(255, 255, 255);
}



/* GENERAL - Texts */

h1{
  font-size: 80px;
  font-family: 'ClashDisplay-Bold', sans-serif;
  font-weight: bold; 
  line-height: 0.9;
}

h2{
  font-size: 45px;
  font-family: 'ClashDisplay-Semibold', sans-serif;
  font-weight: semibold;
}

h3{
  font-size: 28px;
  font-family: 'ClashDisplay-Semibold', sans-serif;
  font-weight: semibold;
}

h4{
  font-size: 16px;
  font-family: 'ClashDisplay-Semibold', sans-serif;
  font-weight: semibold;
}

p{
  font-size: 22px;
  font-family: 'ClashGrotesk-Regular', sans-serif;
  font-weight: normal;
}

#highlight{
  background-color: rgba(255, 251, 0, 0.658); border-radius: 10px;  font-style: italic;
}

p2{
  font-size: 16px;
  font-family: 'ClashDisplay-Regular', sans-serif;
  font-weight: normal;
}

a:link{
  text-decoration:none;
}

b{
  font-family: 'ClashDisplay-Regular', sans-serif;
  font-weight: 600;
}

h1, h2, h3, h4, h5, h6, p, p2{
  color: white;
}

ul{
  margin: 0px;
  padding: 0px;
}

a { 
  color: inherit; 
} 



/* GENERAL - Buttons */

button {
  font-family: 'ClashDisplay-Semibold';
  font-weight: bold;
  font-size: 22px;
  color: rgb(255, 255, 255);
  padding: 12px 12px;
  border: 1px solid #e0e0e011; /* Légère bordure grise */
  border-radius: 15px;
  background: linear-gradient(145deg, #252525, #0a0a0a); /* Dégradé gris */
  transition: all 0.4s ease;
}

button:hover{
  border-radius: 15px;
  color: black;
  background: white;
  transform:scale(1.07);
  -webkit-transform:scale(1.07); /* Safari et Chrome */
  -moz-transform:scale(1.07); /* Firefox */
  -ms-transform:scale(1.07); /* Internet Explorer 9 */
  -o-transform:scale(1.07); /* Opera */
  box-shadow: 0 0px 20px rgba(255, 255, 255, 0.25);
}


button.cta {
  font-family: 'ClashDisplay-Semibold';
  font-weight: bold;
  font-size: 22px;
  color: rgb(0, 0, 0);
  padding: 12px 12px;
  border: 1px solid #ffffff11; /* Légère bordure grise */
  border-radius: 15px;
  background: linear-gradient(145deg, #ffffff, #c4c4c4); /* Dégradé gris */
  transition: all 0.4s ease 0s;
}

button.cta:hover {
  border-radius: 15px;
  color: rgb(0, 0, 0);
  background: linear-gradient(145deg, #ffffff, #ffffff); /* Dégradé gris */
  transform:scale(1.07);
  -webkit-transform:scale(1.07); /* Safari et Chrome */
  -moz-transform:scale(1.07); /* Firefox */
  -ms-transform:scale(1.07); /* Internet Explorer 9 */
  -o-transform:scale(1.07); /* Opera */
  box-shadow: 0 0px 20px rgba(255, 255, 255, 0.25);
  transition: all 0.4s ease 0s;
}



#tag{
  font-weight: bold; 
  font-family: "ClashDisplay-SemiBold"; 
  padding: 8px 15px; 
  border-radius: 10px; 
  border: solid 2px;
  display: inline-block;
  margin: 6px;
}


/* GENERAL - Loader */

.loader-wrapper {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #171717;
  display:flex;
  justify-content: center;
  align-items: center;
}



/* GENERAL - Cursors */

.cursor {
  position: fixed;
  background: white;
  width: 15px;
  height: 15px;
  border-radius: 100%;
  z-index: 999;
  transition: 0.5s cubic-bezier(0.75, -1.27, 0.3, 2.33) transform,
      0.2s cubic-bezier(0.75, -1.27, 0.3, 2.33) opacity;
  user-select: none;
  pointer-events: none;
  transform: scale(0.8);
  display: flex;
  align-items: center;
  justify-content: center;
}

.cursor p{
  font-size: 15px;
  font-weight: bold;
  display: none;
}

.cursor.active p {
  display: block;
}

.cursor::before {
  content: "";
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  display: block;
  border-radius: 100%;
  opacity: 0;
}

.cursor.active {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  width: 160px;
  height: 30px;
  transform: scale(1.5);
  border-radius: 7px;
  background-color: hsla(0, 0%, 0%, 0.486);
  backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
  -webkit-box-shadow: -1px 0px 30px 0px rgba(0, 0, 0, 0.322);
  box-shadow: -1px 0px 30px 0px rgba(0,0,0,0.4);
}

.cursor.active::before {
  opacity: 1;
}

.cursor-follower {
  position: fixed;
  background: rgba(255, 255, 255, 0.1);
  width: 40px;
  height: 40px;
  border-radius: 100%;
  z-index: 998;
  transition: 0.5s cubic-bezier(0.75, -1.27, 0.3, 2.33) transform,
      0.3s cubic-bezier(0.75, -1.27, 0.3, 2.33) opacity;
  user-select: none;
  pointer-events: none;
  transform: translate(5px, 5px);
}

.cursor-follower.active {
  opacity: 0.3;
  transform: scale(0);
}

.cursor.link{
  transform: scale(1.5)
}





/* GENERAL - Scrollbar */

::-webkit-scrollbar{
  width: 6px;
  transition: transform 0.3s, opacity 0.3s;
  opacity: 0%;
}
::-webkit-scrollbar-track{
  border-radius: 0px;
}
::-webkit-scrollbar-thumb{
  border-radius: 0px;
  background-color: #929292;
}








/* --------------------------------------------------------------------------------- */

/* NAVIGATION */

header{
  margin-top: 10px;
  align-items: center;
  align-content: center;
  align-self: center;
  position: relative;
  width: 100%;
  height: 100px;
  z-index: 990;
  padding: 0 4rem; animation: landing 0.5s cubic-bezier(0,.88,.13,1);
  animation-fill-mode: forwards;
}






/* --------------------------------------------------------------------------------- */

/* CONTENT */



div.main img{
  margin-bottom: 0px;
  transition: all 0.7s ease 0s;
  align-items: center;
  width: 100%;
  height: auto;
}



/* CONTENT - Homepage image */

.homepage{ animation: landing 2s cubic-bezier(0,.8,.49,1);
  animation-fill-mode: forwards;
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: -1;
  object-fit: cover 
}

.homepage-mobile{
  display: none;
}



/* CONTENT - Text Image Container */

.text-image-container {
  display: flex;
  align-items: center;
  max-width: 80%; 
}

.text-image-container img {
  margin-right: 40px;
  width: 50% !important;
}

.image-container{
  align-items: right;
}

.text-container {
  vertical-align: top;
  text-align: left;
  padding: 20px;
}






/* --------------------------------------------------------------------------------- */

/* MISC */

h1.headh1{
  animation: landing 1.5s cubic-bezier(0,.88,.13,1);
  animation-fill-mode: forwards;
}

iframe{
  max-width: 90%;
  margin: 10px;
  border-radius: 15px;
}

.video-container {
  height: 600px;
  position: relative;
  display: flex;
}

.video-container video {
width: 100%;
height: 100%;
position: absolute;
object-fit: cover;
z-index: 0;
}

.video-container .caption {
z-index: 1;
align-self: flex-end;
position: relative;
padding: 30px;
}



/* MISC - End Plug */

#plug{
  border-radius: 3vh;
  border: solid 2px rgb(172, 172, 172);
  padding: 60px;
  width: 100%;
  display: flex;
  justify-content: space-between; 
  align-items: center;
}

@media screen and (max-width: 991px) {
  #plug{
    display:block;
  }
  #plug  > *, p{
   margin-top: 20px;
  }
}





/* --------------------------------------------------------------------------------- */

/* FOOTER */

footer {
  margin-top: 7%;
  padding: 3% 5%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

div.pages {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: flex-end;
}

.menu2 {
  flex-direction: row;
  justify-content: flex-end;
  align-items: flex-end;
  list-style: none;
  display: flex;
  gap: 32px;
  align-items: center;
  flex: none;
  order: 2;
  align-self: stretch;
  flex-grow: 1;
}

.bottom{
  padding-top: 1%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: baseline;

  flex: none;
  order: 2;
  align-self: stretch;
  flex-grow: 1;
}

ul.footer{
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: baseline;
 list-style: none;
}

hr.footer{
order: 1;
align-self: stretch;
flex-grow: 0.1;
border: 0.1vh solid #676767;
}

/* Add a point symbol (•) before/behind each item */
ul.footer li+li:before {
  padding: 9px;
  color: rgb(255, 255, 255);
  content: "•";
}



/* FOOTER - Social Media */

li2{
  font-size: 40px;
}

div.media {
  align-items: flex-start;
  display: flex;
  flex-direction: row;
  gap: 60px;
}














































