/* ================= CSS (styles.css) ================= */

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: #ffffff;
  color: #111;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
}

.container {
  text-align: center;
}

.logo-img {
  width: 180px;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  padding: 12px;
  background: white;
}

.tagline {
  margin-top: 16px;
  font-size: 16px;
  color: #555;
  letter-spacing: 2px;
}

.button {
  display: inline-block;
  margin-top: 32px;
  padding: 12px 24px;
  border: 1px solid #2e7d32;
  color: #2e7d32;
  background: transparent;
  cursor: pointer;
  border-radius: 8px;
  transition: 0.2s ease;
}

.button:hover {
  background: #2e7d32;
  color: white;
}

.coming-soon {
  margin-top: 20px;
  font-size: 14px;
  color: #2e7d32;
  opacity: 0;
  transform: translateY(5px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.coming-soon.visible {
  opacity: 1;
  transform: translateY(0);
}
