* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  text-decoration: none;
  list-style: none;
  font-family: 'Poppins', sans-serif;
}


/*
:::: background ::::
*/
body{
  width: 100vw;
  height: 100vh;
  min-height: 100vh;
  background: linear-gradient(
    180deg,
    #2b6fff 0%,
    #6aa6ff 20%,
    #cfe8ff 100%
    );
  position: relative;
}

.background{
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
}
.background img{
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60%;
  z-index: 5;
  object-fit: cover;
  object-position: +15% center;
}

/*
:::: NAVBAR ::::
*/

header {
  position: fixed;
  top: 0px;
  right: 0;
  width: 100%;
  display: flex;
  z-index: 10;
  align-items: center;
  padding: 15px 25px;
  background: transparent;
}
header h1 {
  font-size: clamp(1.7rem, 4vw, 2.5rem);
  font-weight: 700;
  color: white;
}
nav {
  margin-left: auto;
}
.navlist {
  display: flex;
  gap: 4rem;
  align-items: center;
  z-index: 20;
}
.navlist a {
  font-size: clamp(0.85rem, 0.9vw + 0.75rem, 1.2rem);
  font-weight: 500;
  color: white;
  transition: all 0.35s ease;
  position: relative;
  display: inline-block;
}
.navlist a:hover{
  color: #ffb800;
  transform: translateY(-3px);
}
header button{
  background: transparent;
  border: none;
  z-index: 25;
}
#iconMenu {
  font-size: clamp(2rem, 5vw, 2.5rem);
  font-weight: 600;
  color: white;
  display: none;
  cursor: pointer;
  border: none;
  z-index: 25;
}
.nav-icons{
  position: relative;
  margin: 0 25px 0 15px;
}
.btn-theme i {
  position: absolute;
  color: white;
  font-size: 2rem;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: opacity 0.15s ease;
  display: none;                      /* A FAIRE SI DARK MODE */
}


/*
:::: Hero ::::
*/
.hero{
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: 42% 56%;
  position: relative;
}
 .hero_left{
  position: relative;
  height: 100%;
  z-index: 9;
}
.scene{
  position: absolute;
  height: 75%;
  width: 100%;
  bottom: 0;
  left: 0;
}
.flying_saucer{
  position: absolute;
  z-index: 10;
  top: 0%;
  left: 50%;
  transform: translateX(-50%);
  width: clamp(180px, 20vw, 300px);
  filter: drop-shadow(0 12px 8px rgba(0, 0, 0, 0.15));
}
.cone{
  position: absolute;
  top: 5%;
  left: 50%;
  transform: translateX(-50%) scaleY(0.8);
  width: 160px;
  height: 47%;
  background: linear-gradient(
    180deg,
    hsla(43, 100%, 50%, 1),
    hsla(47, 100%, 65%, 0.75),
    hsla(54, 100%, 85%, 0.1)
  );
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  opacity: 0;
}
.cow1{
  position: absolute;
  width: 70px;
  top: 44%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  opacity: 1;
}

 .alien1{
  position: absolute;
  width: 80px;
  top: 44%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  opacity: 0;
}
.cow2{
  position: absolute;
  bottom: 40%;
  right: 0;
  width: clamp(70px, 8vw, 100px);
}

.hero_right{
  z-index: 9;
  display: flex;
  flex-direction: column;
  justify-content: center;
  
}
.taglines{
  width: 100%;
  height: 70%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: clamp(2rem, 2vw + 1rem, 4rem);
}

.taglines p, .taglines h2, .taglines h3{
  font-family: "Fredoka", sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: linear-gradient(
    180deg,
    #fff8b5 0%,
    hsla(47, 100%, 65%, 0.865) 55%,
    hsla(43, 100%, 50%, 0.667) 100%
  );
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 3px 0 #c58f00);
}
.taglines p{
  font-size: clamp(2rem, 4vw, 4.5rem);
  text-align: center;
  padding: 0 1rem;
}
.taglines h2{
  font-size: clamp(2rem, 3.5vw, 5rem);
}
.taglines h3{
  font-size: clamp(4rem, 8vw, 9rem);
  -webkit-text-stroke: 2px #ff8c42;
}
.taglines_btn {
  color: white;
  text-transform: uppercase;
  padding: 10px 15px;
  align-self: center;
  font-size: clamp(0.7rem, 1.4vw, 1.2rem);
  font-weight: 500;
  border-radius: 40px;
  background: linear-gradient(#6aa6ff, #cfe8ff);
  border: none;
  box-shadow: 0 5px 10px hsla(0, 0%, 0%, 0.4);
  cursor: pointer;
  transition: all 0.55s ease;
}
.taglines_btn:hover{
  transform: scale(1.025);
  background: linear-gradient(hsla(216, 100%, 71%, 0.7), hsla(209, 100%, 91%, 0.7));
  color: #2b6fff;
}

/*
:::: Footer ::::
*/


.footer-container{
  position: absolute;
  bottom: 0px;
  right: 0;
  width: 100%;
  display: flex;
  z-index: 10;
  align-items: center;
  justify-content: space-between;
  padding: 15px clamp(1rem, 2vw + 0.5rem, 3rem);
  background: transparent;
}
.legal-infos{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(0.7rem, 1.5rem + 1vw, 3rem);
  text-align: center;
}
.footer-container a{
  color: white;
}
.legal-infos a{
  color: white;
  font-size: clamp(0.5rem, 1vw + 0.1rem, 0.7rem);
}
.trademark p {
display: flex;
gap: 10px;
color: white;
font-size: clamp(0.5rem, 1vw + 0.1rem, 0.7rem);
}
.social-icons{
  display: flex;
  gap: clamp(1.7rem, 2vw + 1rem, 4rem);
  justify-content: center;
  align-items: center;
}
.social-icons a{
  font-size: clamp(1.2rem, 1.5vw, 1.7rem);
  transition: all 0.35s ease;
}
.social-icons a:hover {
  color: #ffb800;
  transform: translateY(-5px);
}

/*
:::: responsive ::::
*/
@media (max-width: 1024px) {

  .scene{
    height: 60%;
  }
  .cone{
      height: 51%;
      width: 100px;
    }
  #iconMenu {
    display: block;
  }
  .navlist {
    position: absolute;
    top: -50vh;
    right: 0;
    width: 100vw;
    height: 50vh;
    background-color: hsla(0, 0%, 0%, 0.7);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: space-evenly;
    transition: all 0.5s ease;
    border-radius: 4px 0 0 4px;
    gap: 0.3rem;
  }

  .navlist a {
    color: white;
    z-index: 10;
  }
  .navlist.open {
    top: 0;
  }
}

@media (max-width: 767px) and (orientation: portrait){
    
    .hero{
      grid-template-columns: 1fr;
    }

    .hero_left{
      grid-row: 2;
      height: 50vh;
    }
    .scene{
      top: 0;
      height: 100%;
    }
    .flying_saucer, .cone, .cow1, .alien1{
      left: 30%;
    }
    .cow2{
      right: 20%;
    }
    .cone{
      height: 56%;
    }

    .hero_right{
      grid-row: 1;
      height: 50vh;
    }
    .taglines{
      gap: 0.5rem;
      margin-top: 2rem;
    }
    
    .footer-container{
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 1rem;
    }
    .footer-container > :first-child{
      grid-column: 1 / -1; 
    }
    .legal-infos{
      min-width: 100%;
    }
}

@media (max-width: 1024px) and (max-height: 430px) and (orientation: landscape){

  .scene {
    min-height: 80vh;
  }
  .taglines{
    gap: 0.8rem;
  }
}


@media (max-width: 1024px) and (max-height: 430px) and (orientation: landscape),
       (max-height: 740px) and (orientation: portrait) {

  .taglines p {
    font-size: 1.5rem;
  }

  .taglines h2 {
    font-size: 1.8rem;
  }

  .taglines h3 {
    font-size: 1.6rem;
  }
}