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


/* Font setup */

body {
	background-color: black;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

p{
 font-family: Scandia;
 color: #FFFFFF;
}




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



.Tid_company h1{
  font-family: Scandia;
  font-size: 50px;
  color: #FFFFFF;
}

.Tid_company {
  padding: 100px;
  display: flex;
  justify-content: left;
  align-items: left;
}

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

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



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

.text {
  display: flex;
  flex-direction: column;
}

.paragraph1, .paragraph2, .paragraph3, .paragraph4, .paragraph5, .paragraph6 {
  padding: 50px;
  width: 700px;
  height: auto;
  text-align: center;
  justify-content: center;
}