@font-face {
    font-family: thisfont;
    src: url(./fonts/animeace2_bld.otf);
}
@font-face {
    font-family: titles;
    src: url(./fonts/animeace2_bld.ttf);
}

@keyframes rotaion {
    0% {
    transform: rotate(0deg) translateY(0px);
    }
    25% {
        transform: rotate(3deg) translateY(-2px);
    }
    50% {
        transform: rotate(0deg) translateY(0px);
    }
    75% {
        transform: rotate(-3deg) translateY(-2px);
    }
    100% {
        transform: rotate(0deg) translateY(0px);
    }
}

@keyframes float {
    0% {
    transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0px);
}
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-100%);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slideUp {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(-20px);
  }
}

/* Burger styles */
.mobilenav{
    display: none;
    align-items: center;
    justify-content: space-between;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100000;
    padding: 0 10px;
    width: 90%;
    /* background-color: #00ac3f; */
}
.mobilenav img{
    max-width: 100px;
}
.burger {   
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.burger span {
  width: 25px;
  height: 3px;
  background: white;
  border-radius: 2px;
}

.nav-menu.active {
  display: flex;
}
.nav-menu.show {
  display: flex;
  animation-name: slideDown;
}

.nav-menu.hide {
  animation-name: slideUp;
}

/* Menu styles */
.nav-menu {
  display: none;
  gap: 20px;
    animation-duration: 0.3s;
  animation-fill-mode: forwards;
}

.navbuttongroupe,
.navsocials,
.navspecialbuttons {
  display: flex;
  align-items: center;
  gap: 10px;
    text-decoration: none;
}

/* Responsive rules */
@media (max-width: 1250px) {
  .mobilenav {
    display: flex;
  }


  .nav-menu {
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    flex-direction: column;
    background-color: #ff522a;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100vh;
    z-index: 10;
    /* padding: 20px 0; */
    gap: 20px;
  }

  .nav-menu.active {
    display: flex;
  }

  .navbuttongroupe,
  .navspecialbuttons {
    flex-direction: column;
    gap: 15px;
  }
  .navsocials{
    flex-direction: row;
    justify-content: center;
    gap: 15px;
  }
  .navbuttongroupe a {
    color: white;
  }

  .navspecialbuttons a{
    font-size: 16px;
    min-width: 90%;
  }

  .nav{
    display: none !important;
  }

  .socialrow {
    align-items: center;
    justify-content: center;
    max-width: 90% !important;
    gap: 10px;
}

}

html,body{
    padding: 0;
    margin: 0;
    scroll-behavior: smooth;
    color: white;
}

*{
    text-transform: uppercase;
    font-family: thisfont;
}
section{
    width: 100%;
    display: flex;
}
.flexbox{
    width: 90%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.land{
    padding-top: 100px;
}
h1{
    color: white;
    margin: 0;
    font-size: 5rem;
    width: 100%;
    text-align: center;
    -webkit-text-stroke-width: 2px;
    stroke-width: 2px;
    -webkit-text-stroke-color: #000;
    stroke: #000;
    text-shadow: 4px 4px 0px #000000;
    line-height: 1.1;
    font-family: 'titles';
}

.nav{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 25px;
    max-height: 100px;
    position: absolute;
    top: 0;
    z-index: 1;
    z-index: 1000;
    background-color: black;
}
.logo{
    max-width: 70px;
}
.nav li{
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    gap: 25px;
}
.nav li a{
    color: white;
    -webkit-text-stroke-width: 0.5px;
    -webkit-text-stroke-color: black;
    text-decoration: none;
    font-size: 21px;
}
.dnavbuttongroupe{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    gap: 60px;
}
.navsocials{
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    gap: 5px;
}
.navsocials img{
    width: 20px;
}
.navspecialbuttons{
    display: flex;
    align-items: center;
    justify-content: space-between; 
    gap: 10px;
}



.landing{
    position: relative;
    min-height: 100vh;
    align-items: center;
    justify-content: center;

    background-image: url(./assets/bg1.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;

    border-bottom: 6px black solid;
    
}

.titleholder{
    width: 800px;
    max-width: 90%;

    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.titleholder .flexbuttonscontainer{
    justify-content: center !important;
    padding: 15px 0;
}
.title1{
    max-width: 100%;
    transform: rotate(-3deg);

}
.title2{
    max-width: 30%;
    transform: rotate(-3deg);
    animation: rotaion 1.8s ease-in-out infinite;
}

.landingimg{
    width: 650px;
    max-width: 50%;
}

.about{

    align-items: center;
    justify-content: center;
    flex-direction: column;

    background-image: url(./assets/bg2.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;

    gap: 40px;

    padding: 100px 0;
    
    border-top: 6px rgb(100, 100, 100) solid;

    border-bottom: 6px black solid
}
.about .flexbox{
    flex: 1;
    gap: 30px;
}
.aboutimg,.textcontainer{
    flex: 1;
}
.aboutimg img{
    max-width: 100%;
}
.textcontainer{
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
}
.flexbuttonscontainer{
    width: 90%;
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}
.textcontainer p{
    font-size: 16px;
}
.flexbuttonscontainer a {
  background-color: #262626;
  color: white;
  padding: 7px 30px;
  border-radius: 14px;
  text-decoration: none;
  box-shadow: 2px 2px 0px 0px #000000;
  position: relative;
  overflow: hidden;
  z-index: 1; /* Add this line */
  transition-timing-function: cubic-bezier(.2, 1, .3, 1);
  transition: background .3s, border .3s, border-radius .3s, box-shadow .3s, transform .3s;
}

.flexbuttonscontainer a:hover {
  border-color: #262626;
  color: #336;

}
.flexbuttonscontainer a span{
    z-index: 2;
    position: relative;
}

.flexbuttonscontainer a::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 150%;
  height: 100%;
  z-index: 0; /* Make sure it's under the text but visible */
  opacity: 0; /* Add this */
  transform: rotate3d(0, 0, 1, -90deg) translate3d(0, -3em, 0);
  transform-origin: 0 100%;
  transition: transform .3s, opacity .3s, background-color .3s;
  background-color: white;
}

.flexbuttonscontainer a:hover::after {
  opacity: 1;
  transform: rotate3d(0, 0, 1, 0deg);
  transition-timing-function: cubic-bezier(.2, 1, .3, 1);
}

.flexbuttonscontainer a {
  z-index: 1;
}
.flexbuttonscontainer a::after {
  z-index: 0;
}
.tokenomics{

    align-items: center;
    justify-content: center;
    flex-direction: column;

    background-image: url(./assets/bg3.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;

    gap: 40px;

    padding: 100px 0 100px 0;

    border-top: 6px rgb(100, 100, 100) solid;

    border-bottom: 6px black solid

}
.udnertitle{
    width: 100%;
    text-align: center;
    font-size: 23px;
    color: white;

}
.tokenomics .flexbox{
    width: 90%;
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}
.flexbox .tokenomicselement{
    flex: 1;
    background-color: #1111117A;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 10px;
    flex-direction: column;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255,0.5);
    max-width: 90%;

}
.tokenomicselementimg{
    width: 90px;
    background-color: white;
    border-radius: 13px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.tokenomicselementimg img{
    width: 100%;
    max-width: 40px;
}
.tokenomicselement h2{
    font-size: 18px;
    color: white;

}
.tokenomicselement p{
    font-size: 16px;
    color: white;
    
}

.ca{
    background-color: #1111117A;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-direction: column;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255,0.5);
    max-width: 90%;
    width: 43.5%;
}
.cabutotnsholder {
    width: 90%;
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}
.cabutotnsholder a {
  background-color: #262626;
  color: white;
  padding: 7px 30px;
  border-radius: 14px;
  text-decoration: none;
  box-shadow: 2px 2px 0px 0px #000000;
  position: relative;
  overflow: hidden;
  z-index: 1; /* Add this line */
  transition-timing-function: cubic-bezier(.2, 1, .3, 1);
  transition: background .3s, border .3s, border-radius .3s, box-shadow .3s, transform .3s;
}

.cabutotnsholder a:hover {
  border-color: #262626;
  color: #336;

}
.cabutotnsholder a span{
    z-index: 2;
    position: relative;
}

.cabutotnsholder a::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 150%;
  height: 100%;
  z-index: 0; /* Make sure it's under the text but visible */
  opacity: 0; /* Add this */
  transform: rotate3d(0, 0, 1, -90deg) translate3d(0, -3em, 0);
  transform-origin: 0 100%;
  transition: transform .3s, opacity .3s, background-color .3s;
  background-color: white;
}

.cabutotnsholder a:hover::after {
  opacity: 1;
  transform: rotate3d(0, 0, 1, 0deg);
  transition-timing-function: cubic-bezier(.2, 1, .3, 1);
}

.cabutotnsholder a {
  z-index: 1;
}
.cabutotnsholder a::after {
  z-index: 0;
}
.ca h2{
    color: white;
}
.ca p{
    color: white;
    word-break: break-word;
}

.footer{
    align-items: center;
    justify-content: center;
    flex-direction: column;

    background-image: url(./assets/bg5.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
}
.footer .flexbox{
    flex-direction: column;
    gap: 15px;
}
.flexbox .left,.flexbox .right{
    flex: 1;
}
.footerimg{
    max-width: 200px;
}
.copr{
    text-align: center;
}
.Socialsrow{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}
.Socialsrow a img{
    max-width: 40px;
}
.footerbigtext{
    font-size: 25px;
    font-weight: 900 !important;
    text-align: center;
}
.whiteline{
    width: 80%;
    height: 1px;
    background-color: rgba(255, 255, 255,0.5);
}
.floating{
    width: 450px;
    max-width: 90%;
    animation: float 3s ease-in-out infinite;
}
.right,.left{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.socialrow{
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 60%;
    gap: 10px;
}
.socialbox{
    flex: 1;
    background-color: white;
    border-style: solid;
    border-color: #000000;
    border-width: 2px 6px 6px 2px;
    border-radius: 5px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 3px;
}
.socialbox img{
    max-width: 90%;
}

@media only screen and (max-width: 1000px) {
    .flexbox.land{
        flex-direction: column;
    }
    .landingimg {
        width: 650px;
        max-width: 69%;
    }
    h1 {
        font-size: 3.5rem;
    }
    .about .flexbox{
        flex-direction: column;
    }
    .textcontainer {
        align-items: center;
        text-align: center;
    }
    .answers .flexbox{
        flex-direction: column;
    }
    .qaimg img {
    width: 80%;
}
.cabutotnsholder a {
    padding: 7px 10px;
    flex: 1;
}
.cabutotnsholder{
    flex-direction: column;
}
.ca{
    width: 80%;
}
}

@media only screen and (max-width: 550px) {
    h1 {
    font-size: 2.5rem;
    }
}

.swiper {
      width: 100%;
      padding-top: 50px;
      padding-bottom: 50px;
    }

    .swiper-slide {
      background-position: center;
      background-size: cover;
      width: 300px !important;
      height: 300px !important;
    }

    .swiper-slide img {
      display: block;
      width: 100% !important;
    }
    .carousel{
        position: relative;
        width: 100%;
    }