/* General Styles */
body {
  font-family: 'Poppins', sans-serif; /* Poppins font for readability */
  margin: 0;
  padding: 0;
  background-color: darkgrey; /* Light blue */
  color: #333;
}

/* Header */
header {
  text-align: center;
  padding: 20px;
  background-color: darkgray; /* Steel blue */
  color: white;
}

header h1 {
  font-size: 2.5em;
  margin: 0;
  font-family: 'Roboto', sans-serif; /* Roboto font for the title */
}

/* Home Section */
#home {
  text-align: center;
  padding: 50px 20px;
}

#home img {
  max-width: 100%;
  height: auto;
  border-radius: 15px;
}

.buy-btn {
  background-color: green; /* Orange-Red */
  color: white;
  padding: 15px 30px;
  font-size: 1.2em;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  margin-top: 20px;
}

.buy-btn:hover {
  background-color: greenyellow; /* Lighter red */
}

/* About Section */
#about {
  padding: 50px 20px;
  background-color: lightgrey;
  color: #333;
  text-align: center;
}

#about h2 {
  color: #4682B4;
}

/* Vision Section */
#vision {
  padding: 50px 20px;
  text-align: center;
  background-color: lightgray;
  color: #333;
}

#vision h2 {
  color: #4682B4;
}

#vision img {
  max-width: 100%;
  height: auto;
  margin-top: 20px;
  border-radius: 20px;
}
#about img {
  max-width: 100%;
  height: auto;
  margin-top: 20px;
  border-radius: 20px;
}

#vision p {
  font-size: 1.1em;
  max-width: 900px;
  margin: 20px auto;
  line-height: 1.6;
}

/* Roadmap Section */
#roadmap {
  padding: 50px 20px;
  text-align: center;
}

#roadmap h2 {
  color: #4682B4;
}

.phase {
  background-color: rgba(255, 255, 255, 0.8); /* Transparent white */
  margin: 20px auto;
  padding: 20px;
  border-radius: 10px;
  max-width: 600px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* Contact Section */
#contact {
  padding: 50px 20px;
  text-align: center;
  background-color: darkgrey;
  color: white;
}

#contact img {
  width: 100px;
  height: 100px;
  margin-bottom: 20px;
  border-radius: 50%;
}

#contact span {
  display: inline-block;
  margin: 5px;
}

#contact a {
  color: #FF4500; /* Orange-Red */
  text-decoration: none;
  font-size: 1.1em;
  display: inline-block;
  margin-top: 10px;
}

#contact a:hover {
  text-decoration: underline;
}

.social-icon {
  width: 20px;
  height: 20px;
  margin-right: 8px;
  vertical-align: middle;
}

/* Footer */
footer {
  background-color: #2F4F4F; /* Dark slate gray */
  color: white;
  text-align: center;
  padding: 10px 0;
  margin-top: 20px;
}

footer p {
  margin: 0;
}