/* Keyframes for animations */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideInUp {
  from {
    transform: translateY(20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes hoverEffect {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.05);
  }
}

body {
  font-family: "Helvetica Neue", Arial, sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  color: #e0f7fa;
  background-color: #121212;
  animation: fadeIn 1s ease-in-out;
}

header {
  background-color: #1e1e1e;
  color: #e0f7fa;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1em 2em;
  position: sticky;
  top: 0;
  z-index: 1000;
  animation: slideInUp 1s ease-in-out;
}

header .logo img {
  max-height: 50px;
  animation: fadeIn 2s ease-in-out;
}

nav ul {
  list-style: none;
  display: flex;
  margin: 0;
  padding: 0;
}

nav ul li {
  margin-left: 1em;
}

nav ul li a {
  color: #e0f7fa;
  text-decoration: none;
  padding: 0.5em;
  transition: color 0.3s;
  animation: fadeIn 2s ease-in-out;
}

nav ul li a:hover {
  color: #4db6ac;
}

#hero {
  background: linear-gradient(
      to right,
      rgba(77, 182, 172, 0.8),
      rgba(0, 105, 92, 0.8)
    ),
    url("logo-element.png") no-repeat center center/cover;
  text-align: center;
  padding: 5em 1em;
  color: #e0f7fa;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  height: 100vh;
  animation: fadeIn 1.5s ease-in-out;
}

#hero .hero-content {
  max-width: 800px;
  margin: auto;
  animation: slideInUp 1.5s ease-in-out;
}

#hero .hero-image {
  display: none; /* Hide the hero image element */
}

#hero h1 {
  margin: 0;
  font-size: 3em;
  font-weight: bold;
}

#hero p {
  font-size: 1.5em;
  margin-top: 0.5em;
}

.cta-button {
  display: inline-block;
  padding: 0.75em 2em;
  margin-top: 1.5em;
  color: #121212;
  background-color: #4db6ac;
  text-decoration: none;
  border-radius: 25px;
  transition: background-color 0.3s, color 0.3s;
  font-size: 1.2em;
  /* animation: fadeIn 2s ease-in-out; */
}

.cta-button:hover {
  background-color: #80cbc4;
  animation: hoverEffect 0.3s forwards;
}

section {
  padding: 4em 2em;
  text-align: center;
  color: #e0f7fa;
  animation: fadeIn 2s ease-in-out;
}

#about img,
.app-icon {
  max-width: 200px;
  height: auto;
  border-radius: 10px;
  margin-top: 1em;
}

.app {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 3em 0;
  background-color: #1e1e1e;
  padding: 2em;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s;
  animation: fadeIn 2s ease-in-out;
}

.app-content {
  flex: 1;
  margin-left: 2em;
}

.app-screenshot {
  max-width: 200px;
  height: auto;
  border-radius: 10px;
}

.app:hover {
  transform: translateY(-10px);
}

.app-stats {
  display: flex;
  justify-content: space-around;
  margin-top: 1em;
}

.stat {
  text-align: center;
}

.stat .count {
  font-size: 1.5em;
  font-weight: bold;
}

.stat p {
  margin: 0.5em 0 0;
}

footer {
  background-color: #1e1e1e;
  color: #e0f7fa;
  padding: 2em;
  text-align: center;
  animation: fadeIn 2s ease-in-out;
}

footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
}

footer ul li {
  margin: 0 1em;
}

footer ul li a {
  color: #e0f7fa;
  text-decoration: none;
  padding: 0.5em;
  transition: color 0.3s;
}

footer ul li a:hover {
  color: #4db6ac;
}

footer p {
  margin: 1em 0 0;
}

footer a {
  color: #e0f7fa;
  text-decoration: none;
}

.social-media img {
  width: 30px;
  height: 30px;
  margin: 0 0.5em;
  filter: invert(1);
}

form {
  max-width: 600px;
  margin: auto;
  background-color: #1e1e1e;
  padding: 2em;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  animation: fadeIn 2s ease-in-out;
}

form label {
  display: block;
  margin-bottom: 0.5em;
  font-weight: bold;
  color: #e0f7fa;
}

form input,
form textarea {
  width: 100%;
  padding: 0.75em;
  margin-bottom: 1em;
  border: 1px solid #4db6ac;
  border-radius: 5px;
  background-color: #121212;
  color: #e0f7fa;
}

form button {
  padding: 0.75em 2em;
  color: #121212;
  background-color: #4db6ac;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  transition: background-color 0.3s;
  animation: fadeIn 2s ease-in-out;
}

form button:hover {
  background-color: #80cbc4;
}
