/* Theme styles for the Index Page */
body {
  background-color: #101010;
  color: #f5f5f5;
  font-family: 'Roboto', sans-serif;
}

header {
  background-color: #181818;
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.6rem;
  color: #f5f5f5;
  font-weight: bold;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav-links a {
  color: #f5f5f5;
  text-decoration: none;
  font-size: 1rem;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background-color: #f5f5f5;
  margin: 4px 0;
}
.hero-section {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background: linear-gradient(145deg, #242424, #101010);
  text-align: center;
  color: #f5f5f5;
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  color: #00cc99;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

.btn-download {
  display: inline-block;
  padding: 10px 20px;
  font-size: 1.2rem;
  color: #f5f5f5;
  background-color: #00cc99;
  text-decoration: none;
  border-radius: 5px;
}

#logo-image-id{
  margin-bottom: 20px;
  border-radius: 10px;
}

.btn-download:hover {
  background-color: #009966;
}

.features-preview {
  padding: 60px 40px;
  background-color: #181818;
}

.features-preview h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #00cc99;
}

.feature-item {
  margin-bottom: 20px;
}

.feature-item h3 {
  font-size: 1.8rem;
  color: #00cc99;
}

.feature-item p {
  font-size: 1.2rem;
  color: #cccccc;
}

.download-section {
  padding: 60px 40px;
  background-color: #101010;
  text-align: center;
}

.download-content h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #00cc99;
}

.download-content p {
  font-size: 1.2rem;
  margin-bottom: 20px;
  color: #cccccc;
}

.logo-container {
  margin-top: 20px;
}

.logo-image {
  width: 150px;
  height: auto;
}

.privacy-section {
  padding: 60px 40px;
  background-color: #181818;
  text-align: center;
}

.privacy-content h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #00cc99;
}

.privacy-content p {
  font-size: 1.2rem;
  margin-bottom: 20px;
  color: #cccccc;
}

.privacy-link {
  color: #00cc99;
  text-decoration: none;
}

.privacy-link:hover {
  text-decoration: underline;
}

footer {
  background-color: #181818;
  color: white;
  text-align: center;
  padding: 20px;
}

@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }
  #logo-image-id{
    margin-bottom: 20px;
    border-radius: 10px;
    height: 90px;
    width: 90px;
  }
  .nav-links {
    display: none;
    flex-direction: column;
    background-color: #181818;
    position: absolute;
    top: 70px;
    right: 40px;
    width: 200px;
    padding: 20px;
    border-radius: 5px;
  }

  .nav-links.active {
    display: flex;

  }
}
