body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: #121212;
  color: #fff;
  text-align: center;
}

.logo {
  width: 280px; /* Shrinks the logo */
  height: auto;
  margin-bottom: 0rem; /* Tightens space below logo */
}

.logo-text {
  font-size: 2.5rem;     /* Bigger "Kettle" text */
  font-weight: bold;
  margin-top: 0;         /* Remove extra space above */
  margin-bottom: 0.75rem;
  color: white;
}

.hero h1 {
  color: #cccccc; /* light gray for subtle contrast */
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 1rem;
}


.cta-buttons {
  margin-top: 1rem;
}

.btn {
  display: inline-block;
  margin: 0.5rem;
  padding: 0.8rem 1.5rem;
  font-size: 1rem;
  text-decoration: none;
  border-radius: 8px;
  background-color: #1f1f1f;
  border: 1px solid #fff;
  color: #fff;
  transition: all 0.3s ease;
}

.btn:hover {
  background-color: #333;
}

.btn.disabled {
  opacity: 0.5;
  pointer-events: none;
}

.features {
  padding: 2rem 1rem;
}

.features ul {
  list-style: none;
  padding: 0;
}

.features li {
  margin: 1rem 0;
  font-size: 1.2rem;
}

footer {
  margin-top: 2rem;
  padding: 1rem;
  font-size: 0.9rem;
  border-top: 1px solid #444;
}
a {
  color: #ff6a00; /* bright kettle-style orange */
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
  color: #ff884d; /* optional lighter orange on hover */
}


