/* Setup */

@font-face {
  font-family: 'Gajraj'; /* Nom personnalisé de la police */
  src: url('../GajrajOne-Regular.woff')
}

@font-face {
  font-family: 'Scandia'; /* Nom personnalisé de la police */
  src: url('../Steps-Mono-Thin.woff')
}

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

body {
	background-color: black;
}
 p{
    font-family: Scandia;
    font-size: 16px;
 }

/* style header */

header {
  display: flex;
  justify-content: space-between;
  justify-content: right;
  padding: 20px;
  position: relative;
  z-index: 10;

}


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

}

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

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

.logo svg {
    height: 70px;
    width: 70px;
    animation: rotateClockwise 12s linear infinite;
}

@keyframes rotateClockwise {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

.navigation{
    display: flex;
    flex-direction: column;
    padding: 50px;
}
/* Menu links */
.mobile-menu a {
  color: white;
  text-decoration: none;
  font-size: 18px;
  font-family: Scandia;
}


.mobile-menu a:active {
	opacity: 0.5;
    transition: 3s;
}

/* When menu is active, show it */
.mobile-menu.open {
  display: flex;
  flex-direction: column;
  align-items: center;
}


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

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

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



/* Banner */


.Banner {
    background: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    animation: reveal linear;
    animation-timeline: view(); 
    width: 100%;
    height: 100px;
   z-index: 10;
}

@keyframes reveal {
    from{
        transform: translateY(600px);
    }
    to{
        transform: translateY(0);
    }
}

.Banner h1{
    color: #FFFFFF;
    font-family: Gajraj;
    font-size: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-shadow: 2px 2px 5px black;
}

.Banner h3 {
    font-family: Scandia;
    color: #FFFFFF;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-right: 20px;
    
}




.Eggwatch_gif {
    width: 100%;
    height: auto;
    z-index: 1;
    padding-top: 60px;
}


/* Specs Description */


.Specs{
  font-family: Scandia;
  color: #FFFFFF;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 100px;
  padding-bottom: 200px;
}

.Specs h2 {
  font-size 30px;
  animation: appear linear;
  animation-timeline: view(); 
}

@keyframes appear {
  from{
    opacity: 0;
    transform: translateY(50px);
  }
  to{
    opacity: 1;
    transform: translateY(0);
  }
}

.Specs h3 {
  font-size: 20px;
  padding: 30px;
  animation: appear linear;
  animation-timeline: view(); 
}


.description {
  color: #FFFFFF;
  display: flex;
  flex-direction: row;
  padding-top: 50px;
  justify-self: center;
}

.spec1, .spec2, .spec3, .spec4, .spec5 {
  width: 100px;
  height: auto;
  padding: 20px;
}





/* Form Design */

.order {
  display: flex;
  flex-direction: column;
  justify-self: center;
  padding-bottom: 200px;
}


form {
  color: #FFFFFF;
  width: 100%;
  height: auto;
  background-color: black;
  padding: 2rem;
  border-radius: 25px;
  font-family: Scandia;
  border: dotted;
}

.order h1{
  color: #FFFFFF;
  font-family: Gajraj;
}

.form-input {
  padding-top: 20px;
}

input {
  width: 200px;
  height: 20px;
  border-radius: 5px;
  border: none;
  font-family: Scandia;
}

/* Button Design */

.cancel{
  background-color: black;
  border: solid;
  color: #FFFFFF;
  font-family: Scandia;
  width: 70px;
  height: 50px;
}

.submit{
  background-color: white;
  border: none;
  font-family: Scandia;
  width: 70px;
  height: 50px;
}

button:hover {
  background-color: gray;
  transition: 0.3s;
}

.form-btn {
  padding-top: 20px;
  justify-self: end;
}




/* Desktop */

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

/* Header */

.header {
    justify-content: center;
    align-items: center;
    
}


 .burger {
    display: none;
  }

  

  .mobile-menu {
	height: 100px;
	width: 100%;
    position: fixed;
    display: grid !important;
    grid-template-columns: 1fr 1fr 1fr;
    padding-top: 0px;
    background: none;
    text-align: center;
	justify-content: center;
    align-items: center;
  }

  .mobile-menu a {
    color: #FFFFFF;
  }

  .mobile-menu a:hover, a:active {
	opacity: 0.4;
    transition: 0.3s;
    
}

.logo svg {
    height: 50px;
    width: 50px;
}

.logo{
    justify-self: start;
}



.navigation {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    width: 100%;
    height: ;
}

.socials{
    display: grid;
    grid-template-columns: 1fr;
    justify-self: end;
}

.Banner {
    padding-top: 150px;
    height: 300px;
}

.Banner h1{
    font-size: 200px;
    z-index: 0;
    animation: reveal linear;
    animation-timeline: view(); 
}

.Banner h3 {
    justify-content: center;
    align-items: center
    font-size: 20px;

}

.Eggwatch_gif {
    padding-top: 150px;
    padding-bottom: 150px;
}


.spec1, .spec2, .spec3, .spec4, .spec5 {
  width: 250px;
  height: auto;
  padding: 20px;
}
/*.hover-blur {
z-index: 1;
position: absolute;
width: 300px;
height: 300px;
border-radius: 50%;
pointer-events: none;
mix-blend-mode: overlay;
backdrop-filter: blur(15px);
transition: transform 0.15s ease, opacity 0.3s ease;
mask-image: radial-gradient(circle,black 25%,transparent 75%);
opacity: 0;
transform: translate(-50%, -50%) scale(0.5);
}
} */



