/* styles.css */

html, body {
  margin: 0;
  padding: 0;
  min-height: 100vh;
  background: linear-gradient(160deg, #0f0f0f, #1a1a1a);
  background-attachment: fixed;
  font-family: 'Urbanist', sans-serif;
  color: #f5f5f5;
}

.bot-message {
  text-align: left;
  font-size: 2rem;  
  font-weight: 400;
  color: #eeeeee;
  /* margin: 2rem; */
  background: inherit;
}

.container {
  max-width: 600px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
}

.brand-color-text {
  color: #FFD700;
}

.brand {
  /* font-family: 'Bebas Neue', cursive; */
  font-family: 'Urbanist', sans-serif;
  color: #FFD700;
  font-size: 6.2rem;
  margin: 0;
  text-align: left;
  letter-spacing: 1px;
}

.tagline {
  font-size: 2rem;
  font-weight: 700;
  margin-top: 0.5rem;
  color: #ffffff;
  text-align: left;
}

.subtext {
  font-size: 1.4rem;
  color: #bbbbbb;
  margin-bottom: 2rem;
  text-align: left;
}

.rotating-message {
  font-size: 1.25rem;
  font-weight: 500;
  color: #ffffff;
  margin-bottom: 2.5rem;
  display: inline-block;
  opacity: 0;
  transform: translateY(100%);
  transition: transform 0.6s ease, opacity 0.6s ease;
  min-height: 5rem;
}

.rotating-message.slide-in {
  opacity: 1;
  transform: translateY(0);
}

.rotating-message.slide-out {
  opacity: 0;
  transform: translateY(-100%);
}

.cta-form label {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  display: block;
}

.input-group {
  display: flex;
  gap: 0.5rem;
}

input[type="email"] {
  flex: 1;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  border: 1px solid #333;
  border-radius: 8px;
  background-color: #2a2a2a;
  color: #fff;
  outline: none;
}

input[type="email"]::placeholder {
  color: #888;
}

button {
  background-color: #FFD700;
  color: #121212;
  border: none;
  padding: 0.75rem 1.25rem;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

button:hover {
  background-color: #e6c200;
}

.small-note {
  font-size: 0.9rem;
  color: #888888;
  margin-top: 1rem;
}

@media (max-width: 600px) {
  .input-group {
    flex-direction: column;
  }

  button {
    width: 100%;
  }
}

.spinner {
  display: none;
  width: 20px;
  height: 20px;
  border: 3px solid #f3f3f3;
  border-top: 3px solid #121212;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-right: 8px;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.button-content {
  display: flex;
  align-items: center;
  justify-content: center;
}

button:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}