/* General Reset */
/* Import Chewy and Barriecito fonts */
@import url('css2.css');



* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Arial', sans-serif;
  background-color: #000000;
  color: white;
  line-height: 1.6;
  overflow-x: hidden;
  overflow-y: auto;
}


/* Utility Classes */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Navbar */
/* Navbar */
.navbar {
  background: transparent; /* Transparent background */
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000; /* Keep above other sections */
  padding: 1rem 0;
}

/* Navbar Container */
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between; /* Push menu to the far right */
  max-width: 1900px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Navbar Logo */
.navbar .logo img {
  height: 50px;
}

/* Navigation Menu */
.nav-menu {
  list-style: none;
  display: flex;
  margin: 0;
  padding: 0;
  gap: 20px; /* Space between menu items */
}

/* Align Menu to Right */
.nav-menu {
  margin-left: auto; /* Push menu items to the right */
}

.nav-menu li {
  display: inline;
}

/* Links */
.nav-link {
  color: rgb(255, 255, 255);
  text-decoration: none;
  font-family: 'Luckiest Guy', sans-serif;
  font-size: 1.5rem;
  padding: 5px 10px;
  border-radius: 5px;
  transition: background 0.3s ease, transform 0.2s ease;
  background: #0072eb; /* Highlight color on hover */
}

.nav-link:hover {
  background: #00d8eb; /* Highlight color on hover */
  transform: scale(1.1); /* Slightly enlarge on hover */
}


/* Hero Section */
.hero {
  height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url('../image/hero-background.png') no-repeat center center/cover;
  text-align: center;
  padding: 0; /* Remove padding to align perfectly with the navbar */
  position: relative;
  letter-spacing: 5px;
/* clip-path: polygon(0 0, 100% 0, 100% 90%, 50% 100%, 0 90%);*/
  margin-top: 0; /* Remove any additional top margin */
}


.hero h1 {
  font-size:70px;
  margin-bottom: 0rem;
  text-transform: uppercase;
  font-weight: bold;
  color: #ffffff;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeIn 1.5s ease-out forwards;
  font-family: 'Luckiest Guy', cursive;
  line-height: 80px;
}

.hero h2 {
  font-size: 25px;
  margin-bottom: 1rem;
  margin-top: 0px;
  text-transform: uppercase;
  font-weight: bold;
  color: #ffffff;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeIn 1.5s ease-out forwards;
  font-family: 'Luckiest Guy', cursive;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* CTA Buttons */

/* Left-Aligned Button in About Section */
/* Button Container Styling */
.cta-buttons {
  margin-top: 1.5rem;
  display: flex;
  gap: 1.5rem;
  justify-content: center; /* Default centered alignment */
}

.cta-buttons.left-aligned {
  justify-content: flex-start; /* Aligns button(s) to the left */
  margin-top: 1.5rem;
}

/* General Button Styling */
.cta-buttons .btn {
  padding: 0.8rem 2rem;
  font-size: 1.3rem;
  font-weight: bold;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
  font-family: 'Luckiest Guy', cursive;
  letter-spacing: 2px;
}

.btn {
  padding: 0.8rem 2rem;
  font-size: 1.3rem;
  font-weight: bold;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
  font-family: 'Luckiest Guy', cursive;
  letter-spacing: 2px;
}

.btn-primary {
  background: linear-gradient(45deg, #00a2ff, #006eff);
}

.btn-learnmore {
  background: linear-gradient(45deg, #aa00ff, #6803c0);
}


.btn-secondary {
  background: linear-gradient(45deg, #00ff6a, #009231);
}

.cta-buttons .btn:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 10px rgba(255, 255, 255, 0.5);
}

.cta-buttons .btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 200%;
  height: 100%;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.3) 0%, transparent 100%);
  transition: left 0.5s ease;
}

.cta-buttons .btn:hover::before {
  left: 100%;
}

/* Mochi Hover Image */
.mochi-hover {
  position: absolute;
  width: 80px;
  height: 80px;
  pointer-events: none;
  display: none;
  z-index: 999;
}

/* Scroll Arrow */
.scroll-arrow img {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  width: 70px;
  animation: scrollArrow 1.5s infinite;
}

@keyframes scrollArrow {
  0%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(-10px);
  }
}


/* About Section */
.gm-text {
  position: absolute;
  top: -20px; /* Adjust as needed */
  right: 320px; /* Adjust as needed */
  font-size: 3rem;
  font-weight: bold;
  color: #ffffff;
  font-family: 'Luckiest Guy', cursive;
  animation: popInOut 1.5s ease-in-out infinite;
}

.soon-text {
  position: absolute;
  top: -20px; /* Adjust as needed */
  right: 320px; /* Adjust as needed */
  font-size: 2rem;
  font-weight: bold;
  color: #ffffff;
  font-family: 'Luckiest Guy', cursive;
  animation: popInOut 1.5s ease-in-out infinite;
}

/* Pop-in-out Animation */
@keyframes popInOut {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.3);
    opacity: 0;
  }
}

.about {
  padding: 6rem 0;
  background: url('../image/BG_About.png') no-repeat center center/cover;
}

.about-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.about-text {
  flex: 1;
  max-width: 600px;
}

.about-text h2 {
  font-size: 3rem;
  color: #d1b317;
  margin-bottom: 0rem;
  font-family: 'Luckiest Guy', cursive;
}

.about-text p {
    text-indent: 2em;
  margin-bottom: 1.2rem;
  font-size: 1rem;
  font-family: 'Lexend Deca', sans-serif;
}

.about-image img {
  width: 100%;
  max-width: 400px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.nfts {
  padding: 6rem 0;
  background: url('../image/BG_About.png') no-repeat center center/cover;
}

.nft-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.nft-text {
  flex: 1;
  max-width: 600px;
}

.nft-text h2 {
  font-size: 5rem;
  color: #ff007c;
  margin-bottom: 0rem;
  font-family: 'Luckiest Guy', cursive;
}

.nft-text p {
    text-indent: 2em;
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
  font-family: 'Lexend Deca', sans-serif;
}

.nft-image img {
  width: 100%;
  max-width: 400px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
  animation: float 3s ease-in-out infinite;
}



/* Honorary PFPs Section */
.honorary-pfps {
  padding: 6rem 0;
  background: url('../image/honorary_bg.png') no-repeat center center/cover;
  height: 600px;
  margin-top: 0px;
}

.honorary-container {
  display: flex;
  flex-direction: row; /* Two columns layout */
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: nowrap; /* Prevent wrapping for two-column layout */
}

/* Left: Stacked Cards */
.pfp-cards {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  perspective: 1000px;
  flex: 1;
  max-width: 50%; /* Restrict to 50% width for two-column layout */
}

.card {
  position: absolute;
  width: 400px;
  height: 400px;
  background: #333;
  border-radius: 15px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s, box-shadow 0.3s ease;
  overflow: hidden;
  cursor: default;
}

.card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
}

/* Stacked Card Positions */
.card1 {
  transform: rotate(-10deg) translateY(0px);
  z-index: 3;
}
.card2 {
  transform: rotate(-5deg) translateY(-20px);
  z-index: 2;
}
.card3 {
  transform: rotate(0deg) translateY(-40px);
  z-index: 1;
}
.hidden {
  display: none;
}

/* Hover Effect for Visible Cards */
.card:hover {
  transform: scale(1.1) translateY(-10px);
  z-index: 10;
  box-shadow: 0 8px 15px rgba(255, 255, 255, 0.7);
}

/* Right: Title and Subtitle */
.honorary-text {
  flex: 1; /* Take equal space */
  max-width: 50%; /* Limit to half of the container */
  text-align: left;
}

.honorary-text h2 {
  font-size: 5rem;
  font-family: 'Luckiest Guy', cursive;
  color: #ffb404;
  margin-bottom: 1rem;
  line-height: 60px;
}

.honorary-text p {
     text-indent: 2em;
  font-family: 'Lexend Deca', sans-serif;
  font-size: 1.2rem;
  color: #ccc;
  line-height: 1.6;
}


/* NFT Section */
.nft {
  padding: 6rem 0;
  background: linear-gradient(135deg, #1c1c1c, #2c2c2c);
}

.nft-container {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: center;
  justify-content: space-between;
}

.nft-image img {
  width: 100%;
  max-width: 400px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

/* Post Cards Section */
.post-cards {
  padding: 6rem 0;
  text-align: center;
  background: url('../image/BG_Post.png') no-repeat center center;
  background-size: cover; /* Ensures the image covers the entire section */
}

.competition {
  padding: 6rem 0;
  text-align: center;
  background-color: black;
  background-size: cover; /* Ensures the image covers the entire section */
  overflow: hidden; /* Ensure coins stay within the section */
}

.competition-text {
  margin-bottom: 2rem;
  position: relative; /* For positioning the wow-text */
}

.competition-text h2 {
  font-size: 6rem;
  font-family: 'Luckiest Guy', cursive;
  color: #fff;
  margin-bottom: 0.5rem;
}

.competition-text p {
  font-family: 'Lexend Deca', sans-serif;
  font-size: 1.4rem;
  color: #ccc;
  line-height: 1.6;
  margin-bottom: 2rem;
}


.win-text {
  position: absolute;
  top: -70px; /* Adjusted for better positioning */
  left: 20%; /* Center it horizontally */
  transform: translateX(-50%); /* Adjust to center */
  font-size: 2rem;
  font-weight: bold;
  color: #e9b554;
  font-family: 'Luckiest Guy', cursive;
  animation: popInOut 1.5s ease-in-out infinite;
}

/* Wow Text Animation */
.wow-text {
  position: absolute;
  top: -70px; /* Adjusted for better positioning */
  left: 20%; /* Center it horizontally */
  transform: translateX(-50%); /* Adjust to center */
  font-size: 3rem;
  font-weight: bold;
  color: #e9b554;
  font-family: 'Luckiest Guy', cursive;
  animation: popInOut 1.5s ease-in-out infinite;
}

/* Pop-in-out Animation */
@keyframes popInOut {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.3);
    opacity: 0;
  }
}

/* Post Text Styling */
.post-text {
  margin-bottom: 2rem;
  position: relative; /* For positioning the wow-text */
}

.post-text h2 {
  font-size: 6rem;
  font-family: 'Luckiest Guy', cursive;
  color: #00c3ff;
  margin-bottom: 0.5rem;
}

.post-text p {
  font-family: 'Lexend Deca', sans-serif;
  font-size: 1.4rem;
  color: #ccc;
  line-height: 1.6;
  margin-bottom: 2rem;
}

/* Images Row */
.post-images {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem; /* Space between images */
}

/* Image Styling */
.post-images img {
  width: 100%;
  max-width: 350px;
  border-radius: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

/* Hover Effect: Pure Glow with No Blackness */
.post-images img:hover {
  transform: scale(1.1); /* Scale up slightly */
}


/* Sticky Sidebar */
.sticky-sidebar {
  position: fixed;
  right: 1.5rem; /* Adjust spacing from the edge */
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 1rem; /* Space between icons */
  z-index: 1000;
  background-color: #333; /* Optional: Add background for better visibility */
  padding: 0.5rem;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3); /* Optional: Add subtle shadow */
}

.sticky-sidebar a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: linear-gradient(45deg, #1c1c1c, #2c2c2c);
  border-radius: 50%; /* Circular icons */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sticky-sidebar a img {
  width: 20px; /* Adjust icon size */
  height: 20px;
}

.sticky-sidebar a:hover {
  transform: scale(1.2); /* Slight zoom effect on hover */
  box-shadow: 0 0 15px #ff007c, 0 0 25px #00ffab; /* Glowing effect */
}

/* Floating Coins */
#floating-coins {
  position: fixed;
  width: 100%;
  height: 100%;
  pointer-events: none; /* Prevent interaction */
  overflow: hidden;
  z-index: 999; /* Ensure coins appear above other elements */
}

.coin {
  position: absolute;
  width: 40px;
  height: 40px;
  background-image: url('https://itsmochi.com/images/mochi-coin.png'); /* Path to coin image */
  background-size: cover;
  background-repeat: no-repeat;
  animation: floatCoin 10s linear infinite;
  opacity: 0.8; /* Slight transparency for better visuals */
}

@keyframes floatCoin {
  0% {
    transform: translateY(0) rotate(0deg);
    opacity: 0.8;
  }
  50% {
    transform: translateY(-20px) rotate(180deg);
    opacity: 1;
  }
  100% {
    transform: translateY(0) rotate(360deg);
    opacity: 0.8;
  }
}


/* Footer */
footer {
  background: black;
  padding: 2rem 0;
  text-align: center;
  color: #ccc;
}

.footer-logo img {
  height: 50px;
  margin-bottom: 1rem;
}

footer a {
  color: white;
  text-decoration: none;
}

footer a:hover {
  color: #00ffab;
}

.eya_tjpro .eya_tjpro_list {
    width: 1400px;
    height: auto;
    margin: 0 auto;
    padding: 0;
    overflow: hidden;

}


.eya_tjpro .eya_tjpro_list img {
 
max-width: 200px;
max-height:60px;
    display: block;
    vertical-align: middle;
}

.inquiry-form textarea {
    width: 100%;
    height: 160px;
}
.inquiry-form input, .inquiry-form  textarea {
    width: 100%;
    height: 80px;
    background: rgba(0,0,0,0.6);
    
    
    border: 1px solid #E5E5E5  ;
    border-radius: 5px;
    font-family: inherit;
    padding: 10px;
    font-size: 16px;
    outline: 0;
    margin-bottom: 1em;
    transition: all .1s linear;
    resize: none;
}


.inquiry-form button {
    background: #c99f72;
    border: 0;
    font-family: inherit;
    padding: 10px;
    font-size: 16px;
    outline: 0;
    color: #fff;
    width: 30%;
    cursor: pointer;
	border-radius: 5px;
}


.eya_news .main {
	

    width: 1400px;
    height: auto;
    margin: 0 auto;

    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
	overflow:hidden;
		margin-top:30px;
}

.eya_news .cont .swiper-slide .text {
    width: 77%;
    overflow: hidden;
    margin: 0;
    padding: 0 20px 0 0;
    float: right;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
}



/* Responsive Adjustments */
@media (max-width: 768px) {
    
    
    .eya_tjpro .eya_tjpro_list {
    width: 98%;
    height: auto;
    margin: 0 auto;
    padding: 0;
    overflow: hidden;
}
    

  .wow-text {
    position: absolute;
    top: -70px;
    left: 60%;
    font-size: 3rem;
}

.win-text {
  position: absolute;
  top: -70px;
  left: 15%;
  font-size: 1.5rem;
}

  .honorary-pfps{
    padding-top: 0px;
  }

  /* Honorary Section */
  .honorary-container {
    flex-direction: column; /* Stack content vertically */
    align-items: center;
    gap: 2rem; /* Add space between text and cards */
    text-align: center;
  }

  .honorary-text {
    max-width: 100%; /* Center text with reduced width */
    margin-bottom: 2rem;
    text-align: center;
  }

  .honorary-text h2 {
    font-size: 3rem; /* Adjust font size for mobile */
    margin-bottom: 1rem;
  }

  .honorary-text p {
    font-size: 1.2rem;
    line-height: 1.6;
  }

  .pfp-cards {
    display: flex;
    flex-direction: column; /* Show cards vertically */
    align-items: center;
    gap: 1.5rem; /* Add space between cards */
    max-width: 100%; /* Restrict width */
  }

  .cta-buttons.left-aligned {
    justify-content: center; /* Aligns button(s) to the left */
    margin-top: 1.5rem;
  }

  .card {
    position: relative; /* Reset position for stacking */
    transform: none; /* Remove transform effect for simplicity */
    width: 100%; /* Full-width for the card */
    max-width: 500px; /* Restrict maximum width */
    margin: 0 auto; /* Center the card */
  }

  .card:not(:first-child) {
    display: none; /* Hide all but the first card */
  }

  .card img {
    width: 100%;
    border-radius: 15px;
  }

  /* PFP Collection Section */
  .nft-container {
    display: flex;
    flex-direction: column; /* Stack content vertically on mobile */
    align-items: center;
    gap: 2rem; /* Space between text and image */
    margin-top: 180px;
    padding-bottom: 0px ;
  }

  .post-cards {
    padding-top: 40px;
}

  .nfts {
    padding-bottom: 0px ;
    padding-top: 0px;
  }

  .nft-text {
    max-width: 100%; /* Center-align and restrict width */
    text-align: center;
  }

  .nft-text h2 {
    font-size: 3rem; /* Adjust heading size for mobile */
    color: #ff007c;
    margin-bottom: 1rem;
  }

  .nft-text p {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #ccc;
    margin-bottom: 1.5rem;
  }

  .soon-text {
    top: -20px;
    right: 180px;
}

  .nft-image {
    display: flex;
    justify-content: center;
  }

  .nft-image img {
    width: 100%;
    max-width: 300px; /* Scale image for mobile */
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
  }

  /* General Buttons */
  .cta-buttons .btn {
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
    border-radius: 5px;
    text-align: center;
    white-space: nowrap; /* Prevent text wrapping */
  }

  /* Hero Section */
  .hero {
    height: 500px;
    width: 100%;
    display: flex;
    flex-direction: column; /* Stack content vertically for mobile */
    align-items: center;
    justify-content: center;
    background: url('../image/hero-background.png') no-repeat center center;
    background-size: cover;
    text-align: center;
    padding: 2rem 0;
    position: relative;
    overflow: hidden; /* Prevent content from overflowing */
    clip-path: polygon(0 0, 100% 0, 100% 90%, 50% 100%, 0 90%);
  }

  .hero h1 {
    font-size: 2.0rem;
    text-transform: uppercase;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 0.5rem;
    line-height: 1.2;
  }

  .hero h2 {
    font-size: 1.3rem;
    text-transform: uppercase;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 1rem;
    line-height: 1.2;
  }

  /* About Section */
  .about-container {
    display: flex;
    flex-direction: column; /* Stack content vertically */
    align-items: center;
    gap: 2rem;
  }

  .about-text {
    text-align: center; /* Center-align text */
    max-width: 100%; /* Limit width for better readability */
  }

  .about-text h2 {
    font-size: 3.2rem;
    color: #ff007c;
    margin-bottom: 1rem;
  }

  .gm-text {
    position: absolute;
    top: -20px;
    right: 260px;
    font-size: 3rem;
}

  .about-text p {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #ccc;
    margin-bottom: 1.5rem;
  }

  /* Post Section */
  .post-images {
    display: flex;
    flex-direction: column; /* Stack images vertically */
    align-items: center;
    gap: 1.5rem;
  }

  .post-images img {
    width: 100%;
    max-width: 300px;
    border-radius: 10px;
  }

  .post-text {
    text-align: center;
    max-width: 100%; /* Limit width for better readability */
  }

  .post-text h2 {
    font-size: 4rem;
    color: #00c3ff;
    margin-bottom: 1rem;
  }

  .post-text p {
    font-size: 1.5rem;
    color: #ccc;
    line-height: 1.6;
  }

  .competition {
    margin-top: 20px;
    margin-bottom: 0px;
  }

  .competition-text {
    text-align: center;
    max-width: 100%; /* Limit width for better readability */
  }

  .competition-text h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    line-height: 65px;
  }

  .post-text p {
    font-size: 1.5rem;
    color: #ccc;
    line-height: 1.6;
  }

  /* General Fixes */
  html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden; /* Prevent horizontal scrolling */
    box-sizing: border-box;
  }
}




