/* style.css - SnapChart Landingpage */

body {
  margin: 0;
  font-family: "Poppins", sans-serif;
  background: #ffffff;
  color: #2c2c2c;
  line-height: 1.6;
}

.container {
  width: 90%;
  max-width: 960px;
  margin: 0 auto;
  padding: 20px;
}

.hero {
  background: linear-gradient(135deg, #00c7b7, #008c86);
  color: #ffffff;
  text-align: center;
  padding: 60px 20px;
}

.logo {
  width: 120px;
  margin-bottom: 20px;
}

h1 {
  font-size: 2.5em;
  margin-bottom: 10px;
}

h2 {
  font-size: 2em;
  margin-top: 40px;
  margin-bottom: 20px;
  text-align: center;
}

h3 {
  font-size: 1.5em;
  margin-bottom: 10px;
}

p {
  font-size: 1em;
}

.btn-primary {
  display: inline-block;
  background: #ffffff;
  color: #00c7b7;
  padding: 12px 24px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  margin-top: 20px;
  transition: background 0.3s, color 0.3s;
}

.btn-primary:hover {
  background: #e0f7f4;
  color: #008c86;
}

.features {
  padding: 60px 20px;
  background: #f5f7fa;
}

.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.feature {
  background: #ffffff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  flex: 1 1 250px;
  text-align: center;
}

.cta {
  background: #00c7b7;
  color: #ffffff;
  text-align: center;
  padding: 40px 20px;
}

.footer {
  background: #2c2c2c;
  color: #bbbbbb;
  text-align: center;
  font-size: 0.9em;
  padding: 20px 10px;
}

.footer p {
  margin: 5px 0;
}

@media (max-width: 600px) {
  .feature-grid {
    flex-direction: column;
    align-items: center;
  }
}
