/* =========================
   AFRIKLINGO COLOR PALETTE
   ========================= */
:root {
  --golden-yellow: #FDB515;
  --orange: #F7941D;
  --deep-orange: #F15A29;

  --light-green: #39B54A;
  --medium-green: #1FA14A;
  --dark-green: #0B7D3B;

  --brand-text: #0E5A36;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

body {
  min-height: 100vh;
  background: linear-gradient(
    135deg,
    var(--golden-yellow),
    var(--orange),
    var(--deep-orange)
  );
  display: flex;
  align-items: center;
  justify-content: center;
}

.container {
  background: #ffffff;
  padding: 3rem 2.5rem;
  max-width: 520px;
  width: 90%;
  text-align: center;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* 🔍 Logo slightly bigger */
.logo {
  width: 180px;
  margin-bottom: 1.5rem;
}

h1 {
  font-size: 2rem;
  color: var(--brand-text);
  margin-bottom: 0.5rem;
  letter-spacing: 1px;
}

.tagline {
  font-size: 1rem;
  color: var(--dark-green);
  margin-bottom: 1.5rem;
}

.divider {
  height: 4px;
  width: 80px;
  margin: 0 auto 2rem;
  border-radius: 50px;
  background: linear-gradient(
    90deg,
    var(--light-green),
    var(--medium-green),
    var(--dark-green)
  );
}

.coming-soon {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--deep-orange);
  margin-bottom: 1rem;
}

.sub-coming {
  font-size: 1rem;
  font-weight: 500;
  color: var(--dark-green);
  margin-bottom: 1.2rem;
}


/* 📖 Improved readability */
.description {
  font-size: 1.05rem;
  color: #444;
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

/* =========================
   WAITLIST SECTION
   ========================= */
.waitlist-text {
  font-size: 1rem;
  font-weight: 600;
  color: var(--brand-text);
  margin-bottom: 0.8rem;
}

.waitlist-form {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.waitlist-form input {
  padding: 0.7rem 1rem;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 0.95rem;
  min-width: 220px;
}

.waitlist-form input:focus {
  outline: none;
  border-color: var(--medium-green);
}

.waitlist-form button {
  padding: 0.7rem 1.3rem;
  border-radius: 8px;
  border: none;
  background: linear-gradient(
    90deg,
    var(--light-green),
    var(--medium-green)
  );
  color: #fff;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.waitlist-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.footer {
  font-size: 0.85rem;
  color: var(--brand-text);
  margin-top: 2.5rem;
}

/* =========================
   RESPONSIVE
   ========================= */
@media (max-width: 480px) {
  h1 {
    font-size: 1.7rem;
  }

  .container {
    padding: 2.5rem 1.5rem;
  }

  .waitlist-form {
    flex-direction: column;
  }

  .waitlist-form input,
  .waitlist-form button {
    width: 100%;
  }
}