@import url('https://fonts.googleapis.com/css2?family=Comic+Relief:wght@400;700&family=Luckiest+Guy&display=swap');

:root {
  --main-clr: #000;
  --sec-clr: #f9f900;
  --card-shadow: 0 8px 8px #00000017;
  --headline-font: "Comic Relief", system-ui, Arial;
  --bg-color: #000000;
  --border:   2px solid var(--sec-clr);
}
*,
*::before,
*::after {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: var(--headline-font);
  line-height: 1.5;
}
html,
body {
  height: 100vh;
  height: 100dvh;
  width: 100%;
  max-width: 100%;
  scroll-behavior: smooth;
  background-color: var(--main-clr);
}

img {
  display: block;
}
button {
  display: block;
  cursor: pointer;
  border: none;
}
a {
  text-decoration: none;
}
header{
  width: 100%;
    display: flex;
  align-items: center;
  justify-content: space-around;
}
.navbar {
  width: 60%;
  display: flex;
  align-items: center;
  position: fixed;
  top: 20px;
  z-index: 9999;
  padding: 0.7rem 3rem;
  border:  var(--border);
  border-radius: 100vw;
}
.logo {
  width: 150px;
  position: relative;
  z-index: 9999;
}
#menucheck {
  display: none;
}
.menuBtn {
  display: none;
  z-index: 9999;
  margin-left: auto;
}
.menuicon {
  display: block;
  height: 25px;
  fill: #fff;
}
#middle,
#x1,
#x2 {
  -ms-transform-origin: center;
  transform-origin: center;
  -ms-transform-box: fill-box;
  transform-box: fill-box;
  transition: transform 0.4s ease-in-out;
}
#x1 {
  -ms-transform: translateY(150%);
  transform: translateY(150%);
}
#x2 {
  -ms-transform: translateY(-150%);
  transform: translateY(-150%);
}

.menu {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 2rem;
  margin-left: auto;
  font-weight: 500;
  font-size: 1.2rem;
  transition: top 300ms ease-in-out;
}

.menu_link {
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
}
.menu_link:not(.menu_link.cta):hover {
  color: var(--primary);
}
.cta {
  color: #000;
  font-weight: 700;
  background: var(--sec-clr);
  padding: 0.5rem 1rem;
  border-radius: 9999px;
}
.menu_ele a:not(#cta, .lang a):hover::before {
  left: 0;
}
.menu_link[aria-current="page"]:not(.cta) {
  color: var(--primary);
  font-weight: 800;
  text-decoration: underline;
}
.cta[aria-current="page"] {
  background: var(--primary);
}

.menu,
.menu_ele {
  position: relative;
}
main {
  min-height: 100%;
  width: 100%;
  
}
.hero_page {
  height: 100vh;
  height: 100dvh;
  width: 100%;
  /* background-color: var(--main-clr); */
   background: linear-gradient(to top,#0000008f,#000000), url(assets/ooorganize.svg);
   background-size: cover;
   background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  z-index: 1;
  padding: 0 1rem;
  /* background-image: url(./assets/bg.jpg);
  background-size: cover;
  background-position: center;
  background-attachment: fixed; */
}
.hero_text_wrapper {
  width: min(800px, 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 2rem;
}
.hero_text {
  color: #fff;
  text-align: center;
  font-size: clamp(1.5rem, 2vw + 1rem, 3rem);
}
.hero_text_red{
  color: #fff;
  background-color: #fe0000;
  padding: 0 2rem ;
  border-radius: 100vw;
  position: relative;
  
}
.hero_text_red::before{
  content: '😱';
  position: absolute;
  font-size: 70%;
  right: -10%;
  top: -30%;
  transform: rotate(50deg);
   border-radius: 100vw;
  animation: red_animation 0.2s  infinite forwards ease-in-out alternate-reverse;
}
.shop_btn {
  color: #000;
  font-weight: 600;
  background-color: var(--sec-clr);
  padding: 0.8rem 3rem;
  border-radius: 100vw;
}
.mint_btn {
  color: #000;
  font-weight: 600;
  background-color: var(--sec-clr);
  padding: 0.8rem 3rem;
  border-radius: 100vw;
  display: block;
  margin: auto;
  max-width: min-content;
}
.wrapper_img {
  position: absolute;
  width: 30%;
  transform: translateY(65%);
  animation: floating 3s infinite ease-in-out alternate-reverse;
  z-index: -1;
}
.nfts_section {
  width: 100%;
  padding: 8rem 0 1rem 0;
}

.nfts_wrapper,
.nft_cards {
  display: grid;
}

.nfts_wrapper {
  overflow: hidden;
  perspective: 35em;
  mask: /* lateral fade */ linear-gradient(
    90deg,
    transparent,
    red 20% 80%,
    transparent
  );
  height: 100vh;
  place-items: center;
}

.nft_cards {
  place-self: center; 
  transform-style: preserve-3d;
  animation: ry 32s linear infinite;
}



.card {
  /* base card width, you may change this */
  --w: 17.5em;
  /* compute base angle corresponding to a card */
  --ba: 1turn / var(--n); /* in the future: sibling-count() */
  grid-area: 1 / 1; /* stack in same one grid cell */
  width: var(--w);
  aspect-ratio: 7 / 10;
  object-fit: cover;
  border-radius: 1.5em;
  /* don't want to see back of cards in front of screen plane */
  backface-visibility: hidden;
  /* need to use a transform chain here, cannot use separate 
             * rotate & translate properties because they'd be applied 
             * in wrong order (translate, then rotate) for what we need */
  transform: 
                /* rotate around y axis; in the future: sibling-index() */ rotateY(
      calc(var(--i) * var(--ba))
    )
    /* only after that translate along z axis with minus */
    translateZ(calc(-1 * (0.5 * var(--w) + 0.5em) / tan(0.5 * var(--ba))));
}

.chart_wrapper{
  width: 100%;
  height: 600px;
  padding: 3rem 1rem;
}
.dexscreener{
  width: 100%;
  height: 100%;
  border:  var(--border);
}
.testimonials_section ,.token_section{
  width: 100%;
  padding: 8rem 0;
}
.testimonials_section{
  display: none;
}
.testimonials-header {
  text-align: center;
  margin-bottom: 40px;
  padding: 0 20px;
}

.headline {
  color: #fff;
  font-size: clamp(1.5rem, 2vw + 1rem, 3rem);
  font-weight: 700;
  margin: 0 0 8px 0;
  text-align: center;
}

/* Carousel Container */
.testimonial-carousel {
  overflow: hidden;
  padding: 20px 0;
  width: 100%;
  position: relative;
  display: flex;
  gap: 2rem;
}

/* Gradient Fades for Left/Right edges */
.testimonial-carousel::before,
.testimonial-carousel::after {
  content: "";
  height: 100%;
  width: 15%;
  position: absolute;
  top: 0;
  z-index: 2;
  pointer-events: none;
}

.testimonial-carousel::before {
  left: 0;
  background: linear-gradient(to right, var(--bg-color), transparent);
}

.testimonial-carousel::after {
  right: 0;
  background: linear-gradient(to left, var(--bg-color), transparent);
}

/* The Moving Track */
.testimonial-track {
  display: flex;
  gap: 20px;
  animation: scroll 30s linear infinite;
}

/* Pause animation on hover */
.testimonial-carousel:hover .testimonial-track {
  animation-play-state: paused;
}

/* X Style Card */
.testimonial_card {
  border: 1px solid var(--sec-clr);
  border-radius: 16px;
  padding: 2rem 1rem;
  min-width: 320px;
  max-width: 320px;
  transition: background-color 0.2s ease;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testimonial-card:hover {
  background-color: #1c1f24;
}
.testimonial_text{
  color: #fff;
}
/* Mobile Responsive Adjustments */
@media (max-width: 600px) {
  .testimonial-card {
    min-width: 280px;
    max-width: 280px;
    padding: 12px;
  }
  .testimonials-header h2 {
    font-size: 1.6rem;
  }
  .testimonial-track {
    gap: 14px;
  }
}

.faq_page {
  min-height: 100dvh;
  width: 100%;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 3rem;
  padding: 10rem 1rem 2rem 1rem;
}

.faq_wrapper {
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 2rem;
}

.faq-section {
  width: min(1200px, 100%);
}

.faq-item {
  border:  var(--border);
  margin-bottom: 12px;
  border-radius: 16px;
  box-shadow: var(--card-shadow);
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item:hover {
  box-shadow: var(--card-shadow);
  transform: translateY(-3px);
}

.faq-question {
  padding: 24px 28px;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--sec-clr);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: background-color 0.3s ease;
}

.faq-question .question-text {
  flex: 1;
}

.faq-toggle {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--footer);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  flex-shrink: 0;
}

.faq-item.active .faq-toggle {
  transform: rotate(135deg);
}

.faq-answer {
  padding: 0 28px;
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  color: #fff;
  font-size: 1.05rem;
  line-height: 1.7;
}

.faq-item.active .faq-answer {
  padding-bottom: 28px;
  max-height: 500px;
}


.contact {
  min-height: 100%;
  width: 100%;
  padding: 5rem 1rem;
  /* background: linear-gradient(to bottom,#ffffffac,#ffffffac) , url(https://images.unsplash.com/photo-1483304528321-0674f0040030?q=80&w=2070&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D); */
  background: linear-gradient(to top,#0000008c,#000000db), url(assets/rrrepeat.svg);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  justify-content: space-evenly;
  gap: 3rem;
  align-items: center;
  flex-wrap: wrap;
}
.contact_info_map {
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 2rem;
  padding: 0 2rem;
}
.contact_informations {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.contactinfo {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.contact_link {
  color: #fff;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: clamp(25px,1rem,2rem);
}
.contact_icons {
  height: auto;
  height: 25px;
}
.map {
  aspect-ratio: 1/1;
  flex: 1;
  width: 100%;
  border: var(--border);
}

.form {
  height: fit-content;
  width: min(450px, 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  background: var(--gradient);
  border-radius: 10px;
  padding: 3rem 2.2rem;
}
.form > input::placeholder,
.form > textarea::placeholder {
  font-size: 1rem;
}
.form > *:not(.submit_form, .h-captcha) {
  width: 100%;
  border: none;
  font-size: 1.3rem;
  padding: 0.5rem;
  resize: vertical;
  background-color: transparent;
  border-bottom: 1px solid var(--sec-clr);
}
.submit_form {
  border-radius: 8px;
  padding: 0.5rem 2rem;
  width: 100%;
  border: none;
  font-size: 1.2rem;
  background-color: var(--sec-clr);
  margin-top: 1rem;
  font-weight: 600;
}
.about_page{
  width: 100%;
  min-height: 100%;
  background: linear-gradient(to top,#0000008f,#000000), url(assets/ooorganize.svg);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
    display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: relative;
}
.company_section{
  height: 100vh;
  width: min(900px,100%);
    display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1rem;
  padding: 0 2rem;
  
  z-index: 2;
  
}
.img_wrapper_section{
   position: absolute;
   width: 100%;
   height: 100vh;
  z-index: -1;
  overflow: hidden;
}
.about_wrapper_img{
  width: 40%;
  right: -10%;
  bottom: -30%;
  position: absolute;
}
.company_headline , .product_headline{
  font-size: clamp(60px,3rem,4rem);
   font-size: clamp(1.5rem, 2vw + 1rem, 3rem);
  color: var(--sec-clr);
  font-weight: 800;
}
.company_paragraph{
  color: #fff;
  font-size: clamp(1.5rem, 1vw + 1rem, 3rem);
   /* font-size: clamp(20px,1rem,2rem); */
   text-align: justify;
}
.product_section{
   height: 100vh;
    width: 100%;
       display: flex;
  align-items: center;
  justify-content: center;
 

   background: url(assets/uuunion.svg);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.product_paragraph_section{
  height: 100%;
    width: 100%;
    flex:1;
         display: flex;
  justify-content: center;
  flex-direction: column;
  padding: 1rem 0 1rem 5rem;
  gap: 2rem;
}
 .product_headline{
  color: #000;
  text-align: left;
 }
.product_paragraph{
  color: #fff;
   font-size: clamp(1.5rem, 1vw + 1rem, 3rem);
  
}
ul{
  color: #fff;
  padding-left: 1rem;
}
.product_img_section{
   width: 100%;
  flex:1;
        display: flex;
  align-items: center;
  justify-content: center;
}
.product_img{
  width: 50%;
 transform: rotate3d(1, 8, 2, 30deg);
 animation: wrapper 2s infinite forwards ease-in-out alternate-reverse;
}
.footer_socials{
  width: 100%;
    display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1rem;
  gap: 2rem;
}
.footer_social_links_icon{
  width: 2rem;
  flex: 1;
}
.not_found {
  height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 3rem;
}
.notfound_heading{
  color: var(--sec-clr);
  font-size: clamp(2rem, 2vw + 1rem, 4rem);
}
.para_warapper{
  width: 100%;
    display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 2rem;
}
.notfound_text{
   color: #fff;
   font-size: clamp(1rem, 2vw + 1rem, 2rem);
   text-align: center;
}
.notfound_link{
   color: #000;
  font-weight: 600;
  background-color: var(--sec-clr);
  padding: 0.8rem 3rem;
  border-radius: 100vw;
}
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
@keyframes wrapper {

  100% {
    transform: rotate3d(1, 5, 1, 20deg);
  filter: drop-shadow(0 0 50px #ffff1dab);
  }
}
@keyframes floating {
  100% {
    transform: translateY(70%);
  }
}
@keyframes ry {
  to {
    rotate: y 1turn;
  }
}
@keyframes red_animation {
  to {
    transform: rotate(20deg);
  }
}


@media (prefers-reduced-motion: reduce) {
  .nft_cards {
    animation-duration: 128s;
  }
}
