/* Reset & Base */
body, html {
  margin: 0;
  padding: 0;
  width: 100%;
  min-height: 100%;
  font-family: 'Poppins', sans-serif;
  background-color: #fdfbf7;  /* ✅ Brand background color */
  overflow-x: hidden;         /* ✅ Prevent horizontal scroll */
}

/* ✅ Canvas Behind All Content */
canvas#bgCanvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;                 /* ✅ Pushes canvas behind content */
  pointer-events: none;        /* ✅ Allows clicks to pass through */
}

/* ✅ Foreground Container */
.container {
  position: relative;          /* ✅ Stacking context above canvas */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  text-align: center;
  padding: 0 20px;
  z-index: 1;
}

.logo img {
  max-width: 500px;
  width: 100%;
  height: auto;
  margin-bottom: 20px;
}

.coming-soon {
  font-size: 2rem;
  font-weight: 600;
  color: #444;
  margin-bottom: 20px;
}

form {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

input[type="email"] {
  padding: 12px 16px;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  width: 100%;
  max-width: 300px;
  margin-bottom: 10px;
}

button {
  padding: 12px 24px;
  font-size: 1rem;
  background-color: #2dd4bf;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s ease;
}

button:hover {
  background-color: #26b5a5;
}

/* ✅ Responsive Tweaks for Mobile */
@media (max-width: 480px) {
  .coming-soon {
    font-size: 1.5rem;
  }

  .logo img {
    max-width: 90%;
  }

  button {
    width: 100%;
    max-width: 300px;
  }
}

.footer {
  text-align: center;
  font-size: 0.875rem;
  color: #666;
  padding: 20px 0;
  position: relative;
  z-index: 1;
}
