@font-face {
  font-family: "Nico Moji";
  src: url("./fonts/NicoMoji-Regular.ttf") format("truetype");
}

body {
  font-family: Arial, sans-serif;
  background: #e6ede8;
}

#appName {
  font-family: "Nico Moji", sans-serif;
  font-size: 30px;
  color: #2d470b;
  /* font-weight: bolder; */
  margin: 0px 20px;
}

header {
  justify-content: space-between;
  align-items: center;
}

nav a {
  margin: 0 15px;
  text-decoration: none;
  color: black;
  font-weight: bold;
}

.join-btn {
  background: #426b1f;
  color: white;
  padding: 10px;
  border: none;
  cursor: pointer;
  margin: 0px 15px;
  border-radius: 5px;
}

.hero {
  padding: 50px 20px;
  text-align: center;
}

#title {
  font-family: "M PLUS 1p", sans-serif;
  font-size: 64px;
  font-weight: bolder;
  margin: 60px 0px;
}

#tagline {
  font-family: "Advent Pro", sans-serif;
  font-size: 40px;
  color: #4fb1cc;
  font-weight: bolder;
  font-style: italic;
  margin: 80px 0px;
}

.sign-up-btn {
  background: #426b1f;
  color: white;
  padding: 20px 40px;
  border: none;
  cursor: pointer;
  border-radius: 10px;
  font-size: 20px;
}

.offer {
  margin-top: 1rem;
}

.features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 20px;
}

.feature-card {
  /* background: yellow; */
  padding: 20px;
  margin: 35px;
  width: 260px;
  font-weight: bold;
}

.about {
  padding: 40px;
}

#about-title {
  font-size: 30px;
  font-family: "Montserrat";
  font-weight: bolder;
  margin: 0px 30px;
}

#about-title h2 {
  font-weight: bolder;
}

#about-text {
  font-size: 25px;
  font-family: "Poppins";
  margin: 0px 30px;
}

footer {
  background-color: #0a0a2a;
  color: white;
  padding: 20px;
  font-family: "Montserrat";
}
.footer-container {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: auto;
}
.footer-section {
  flex: 1;
  margin: 10px;
  text-align: left;
}
.footer-section h2 {
  font-size: 20px;
  margin-bottom: 10px;
}
.footer-section ul {
  list-style: none;
  padding: 0;
}
.footer-section ul li {
  margin: 5px 0;
}
.footer-section a {
  color: white;
  text-decoration: none;
}
.social-icons a {
  color: white;
  margin: 5px;
  font-size: 20px;
}
.footer-bottom {
  margin-top: 20px;
  border-top: 1px solid gray;
  padding-top: 10px;
  text-align: center;
}
.highlight {
  color: yellow;
}
.heart {
  color: red;
}
#scrollTopBtn {
  position: fixed;
  bottom: 20px; /* Distance from the bottom of the page */
  right: 30px; /* Distance from the right side of the page */
  background-color: orange;
  color: black;
  border: none;
  padding: 10px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 15px;
  z-index: 1000; /* Ensure it stays above other elements */
}

#animated-word {
  display: inline-block;
  transition: opacity 0.5s ease-in-out; /* Smooth fade effect */
  opacity: 1;
  color: #2c5d97;
}

#animated-word.fade-out {
  opacity: 0; /* Fade out effect */
}

.footer .footer-section .social-icons a {
  height: 4rem;
  width: 4rem;
  padding: 0.5rem;
  text-align: center;
  border-radius: 5rem;
  font-size: 1rem;
  /* margin-right: 1rem; */
  transition: 0.2s;
  background: rgb(230, 230, 230);
  color: #02094b;
  border: none;
}
.footer .footer-section .social-icons a:hover {
  background: transparent;
  transform: scale(0.98);
  border: 0.1rem solid rgb(180, 178, 178);
  color: #ffae00;
}

@media (max-width: 500px) {
  #title {
    font-size: 50px;
    margin: 20px 0px;
  }
  #tagline {
    font-size: 25px;
  }
  .features {
    padding: 0px;
  }
  .feature-card {
    width: 90%;
    align-items: center;
    padding: 0px;
    margin: 20px;
  }
  #about {
    padding: 0px;
  }
  #about-title {
    font-size: 20px;
  }
  #about-text {
    font-size: 18px;
  }
  #who {
    padding: 0px;
  }
}
