/* Base Reset */
body {
  margin: 0;
  padding: 0;
  background-color: #f9f7f2;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  color: #000;
  text-align: center;
  -webkit-font-smoothing: antialiased;
}

/* Wrapper */
.coming-soon-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 80px 20px 60px;
  min-height: 100vh;
  box-sizing: border-box;
}

/* Logo */
.logo {
  max-width: 200px;
  height: auto;
  margin-top: 40px;
  margin-bottom: 8px;
}

/* Subtitle */
.subtitle {
  font-size: 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 60px;
}

/* Description */
.description {
  font-size: 11px;
  text-transform: uppercase;
  font-weight: bold;
  line-height: 1.6;
  letter-spacing: 0.5px;
  max-width: 300px;
  margin: 0 auto 48px;
}

/* Email Form */
.email-form {
  width: 100%;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.email-form label {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
  align-self: flex-start;
}

.email-form input[type="email"] {
  width: 100%;
  border: none;
  border-bottom: 1px solid #000;
  background: transparent;
  padding: 10px 5px;
  font-size: 14px;
  outline: none;
  margin-bottom: 24px;
  color: #000;
}

/* ✅ Submit Button — Fixed "invisible text on mobile" bug */
.email-form button {
  border: 1px solid #000;
  border-radius: 999px;
  padding: 10px 28px;
  font-size: 13px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  background-color: transparent;
  display: inline-block;
  margin-top: 10px;
  line-height: 1;

  /* ✅ Fix for invisible text issue */
  color: #000 !important;
  -webkit-text-fill-color: initial !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  text-shadow: none !important;
}

.email-form button:hover {
  background-color: #000;
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
}

/* Footer */
.footer-text {
  margin-top: 100px;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
}

/* Success / Error */
.success-msg,
.error-msg {
  font-size: 12px;
  margin-top: 20px;
  font-weight: 500;
  color: #000;
}

/* Mobile Styles */
@media (max-width: 480px) {
  .coming-soon-wrapper {
    padding: 60px 20px 60px;
  }

  .logo {
    max-width: 160px;
    margin-top: 20px;
  }

  .subtitle {
    margin-bottom: 40px;
  }

  .description {
    font-size: 10px;
    margin-bottom: 40px;
  }

  .email-form input[type="email"] {
    font-size: 13px;
  }

  .email-form button {
    font-size: 12px;
    padding: 10px 22px;
    color: #000 !important;
    -webkit-text-fill-color: initial !important;
    text-shadow: none !important;
  }

  .footer-text {
    margin-top: 80px;
    font-size: 9px;
  }
}
