/* General Styling */
body {
  margin: 0;
  font-family: 'Sriracha', cursive;
  color: #333;
  background-color: #f5f5f5;
}

header {
  background-color: white;
  padding: 10px 20px;
}

section {
  text-align: center;
  padding: 40px 20px;
}

h1, h2 {
  color: blue;
}

.section-image {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.curved-text {
  font-size: 3rem;
  margin: 20px 0;
}

/* About Section */
.about-text p {
  margin: 20px auto;
  max-width: 700px;
  padding: 15px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  background-color: rgba(255, 255, 255, 0.8);
}

/* Buy Section */
.buy-content {
  text-align: center;
  margin-top: 20px;
}

.ca-box {
  background: #e3f2fd;
  padding: 10px;
  border-radius: 5px;
  display: inline-block;
  margin-bottom: 10px;
}

.copy-btn {
  display: inline-block;
  padding: 10px 20px;
  margin-top: 10px;
  background-color: grey;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.buy-btn {
  margin-top: 10px;
  padding: 10px 20px;
  background: blue;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

/* Roadmap Section */
.roadmap-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}

.roadmap-phase {
  max-width: 600px;
  padding: 20px;
  background: rgba(173, 216, 230, 0.5);
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Contact Section */
.contact-icons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.contact-icons a {
  text-decoration: none;
  color: blue;
  font-weight: bold;
}
/* Responsive Navbar for Mobile Screens */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    background-color: white;
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    text-align: center;
    gap: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
  }

  .nav-links.active {
    display: flex;
  }

  .hamburger {
    display: flex;
  }
}