/* General Styles */
body {
  font-family: 'Fredoka', sans-serif;
  margin: 0;
  padding: 0;
  color: #222;
  background: linear-gradient(to bottom, #a3d8f4, #e2f1f8);
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  background-color: #76c9e5;
  color: white;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.navbar-logo {
  display: flex;
  align-items: center;
}

.navbar-logo img {
  width: 50px;
  height: 50px;
  margin-right: 10px;
  border-radius: 50%;
  background: white;
}

.navbar h1 {
  font-family: 'Pacifico', cursive;
  color: #ffffff;
}

.hamburger {
  cursor: pointer;
}

.hamburger span {
  display: block;
  width: 25px;
  height: 4px;
  margin: 5px 0;
  background-color: white;
}

/* Home Section */
.home {
  height: 100vh;
  background: url('home.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}

.home h1 {
  font-size: 4rem;
  font-family: 'Pacifico', cursive;
  text-shadow: 2px 2px 4px #000;
}

/* About Section */
.about {
  padding: 50px 20px;
  background: rgba(255, 255, 255, 0.9);
  text-align: center;
}

.about img {
  width: 300px;
  height: 300px;
  border-radius: 100%;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.about .text p {
  padding: 15px;
  margin: 10px 0;
  border-radius: 15px;
  background: rgba(0, 204, 255, 0.7);
  color: white;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Buy Section */
.buy {
  padding: 50px 20px;
  background: url('wave-pattern.png') center/cover repeat;
}

.buy-box {
  text-align: center;
  background: rgba(255, 255, 255, 0.9);
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}




.copy-btn,
.buy-btn {
  padding: 10px 20px;
  margin: 10px;
  border: none;
  border-radius: 10px;
  background-color: #007bff;
  color: white;
  cursor: pointer;
  font-size: 1rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

.copy-btn:hover,
.buy-btn:hover {
  background-color: #0056b3;
}

.dex-logo {
  margin-top: 20px;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Roadmap Section */
.roadmap {
  padding: 50px 20px;
}

.roadmap h1 {
  text-align: center;
  font-family: 'Pacifico', cursive;
  font-size: 2.5rem;
  color: #007bff;
  margin-bottom: 30px;
}

.roadmap .phase {
  padding: 20px;
  margin: 10px 0;
  border-radius: 15px;
  background: rgba(255, 214, 79, 0.7);
  font-size: 1.2rem;
  transition: transform 0.3s;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.roadmap .phase:hover {
  transform: scale(1.05);
  background: rgba(255, 214, 79, 0.9);
}

/* Vision Section */
.vision {
  padding: 50px 20px;
  background: rgba(135, 206, 250, 0.8);
  text-align: center;
  font-family: 'Pacifico', cursive;
  font-size: 1.2rem;
}

.vision h1 {
  font-size: 2.5rem;
  color: #007bff;
  margin-bottom: 20px;
}

.vision p {
  font-size: 1.5rem;
  color: #222;
  text-shadow: 1px 1px 2px #ccc;
}

/* Contact Section */
.contact {
  padding: 50px 20px;
  text-align: center;
}

.contact h1 {
  font-family: 'Pacifico', cursive;
  font-size: 2.5rem;
  color: #007bff;
  margin-bottom: 30px;
}

.social-links img,
.partner-links img {
  width: 100px;
  height: 100px;
  margin: 20px;
  border-radius: 100%;
  transition: transform 0.3s;
}

.social-links img:hover,
.partner-links img:hover {
  transform: scale(1.2);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Roadmap Animation */
@keyframes popIn {
  0% {
    transform: scale(0.8);
    opacity: 0;
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.roadmap .phase {
  opacity: 0;
  transform: scale(0.8);
  transition: transform 0.3s, opacity 0.3s;
}

.roadmap .phase.animated {
  animation: popIn 0.5s ease-in-out forwards;
}


/* Buy Section - Contract Address */
.ca-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.9);
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  width: 100%;
  max-width: 500px; /* Restrict max width */
  margin: 0 auto; /* Center the box */
  word-wrap: break-word; /* Ensure long text breaks */
  overflow-wrap: break-word;
  text-align: center; /* Align text */
}

/* Contract Address Text */
.ca {
  font-weight: bold;
  font-size: 1rem;
  color: #007bff;
  margin-bottom: 10px;
}

/* Copy Button */
.copy-btn {
  padding: 10px 20px;
  margin: 10px;
  border: none;
  border-radius: 10px;
  background-color: #007bff;
  color: white;
  cursor: pointer;
  font-size: 1rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

.copy-btn:hover {
  background-color: #0056b3;
}

/* Responsive Design */
@media (max-width: 768px) {
  .ca-box {
    padding: 15px;
    font-size: 0.9rem;
  }

  .ca {
    font-size: 0.9rem;
  }

  .copy-btn {
    font-size: 0.8rem;
    padding: 8px 16px;
  }
}