/* ================================
   GLOBAL
   ================================ */

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
}

/* ================================
   LANDING PAGE
   ================================ */

.coming-soon {
  min-height: 100vh;
  background-image: url("images/tina-background.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

/* top-right block */
.signup-wrap {
  position: absolute;
  top: 12%;
  right: 8%;
  max-width: 360px;
  z-index: 10;
}

/* Copy alignment: keep “Join the gang”, premium tone */
.tagline {
  margin: 0 0 12px;
  font-size: 15px;
  line-height: 1.45;
  letter-spacing: 0.02em;
  color: #eeeeee;
  font-weight: 600;
}

/* Form container */
.signup {
  display: flex;
  gap: 12px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* Input */
.signup input {
  padding: 14px;
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  font-size: 16px;
  min-width: 200px;
}

/* Gold button – keep “Step inside”, add subtle premium motion */
.signup button {
  padding: 14px 18px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  font-weight: 700;
  background: linear-gradient(
    135deg,
    #f5d77a 0%,
    #e6b84f 30%,
    #ffd978 50%,
    #d4a640 70%,
    #f5d77a 100%
  );
  color: #2b2100;
  box-shadow: 0 6px 16px rgba(212, 166, 64, 0.35);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.signup button:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 26px rgba(212, 166, 64, 0.45);
}

.signup button:active {
  transform: translateY(0);
}

/* Mobile */
@media (max-width: 900px) {
  .signup-wrap {
    top: auto;
    bottom: 10%;
    right: 50%;
    transform: translateX(50%);
    max-width: 90%;
  }

  .signup {
    flex-direction: column;
  }

  .signup input {
    min-width: 100%;
  }
}
