/* Coming Soon page styles */

.coming-soon-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - 160px); /* adjust if header/footer heights differ */
  padding: 2rem 1rem;
  background-color: var(--background-alt);
  text-align: center;
}
.coming-soon-section i {
  font-size: 4rem;
  color: var(--primary);
  margin-bottom: 1rem;
  animation: popIn 0.6s ease forwards;
}
@keyframes popIn {
  from {
    transform: scale(0.5);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
.coming-soon-section h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  color: var(--text-light);
}
.coming-soon-section p {
  max-width: 500px;
  margin: 0 auto 1.5rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Countdown */
.countdown-container {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
}
.countdown-item {
  background: var(--card-bg);
  padding: 1rem 1.25rem;
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
  min-width: 70px;
}
.countdown-item span {
  display: block;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary);
}
.countdown-item small {
  display: block;
  font-size: 0.75rem;
  color: var(--text-light);
}

/* Email signup */
.signup-form {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 1rem;
}
.signup-form input[type="email"] {
  padding: 0.75rem 1rem;
  border: 2px solid var(--primary);
  border-radius: 6px;
  font-size: 1rem;
  color: var(--text-light);
  background: transparent;
  outline: none;
  min-width: 250px;
  transition: border-color 0.3s ease;
}
.signup-form input[type="email"]::placeholder {
  color: var(--text-muted);
}
.signup-form input[type="email"]:focus {
  border-color: var(--primary-hover);
}
.signup-form button {
  padding: 0.75rem 1.5rem;
  background-color: var(--primary);
  border: none;
  border-radius: 6px;
  color: var(--on-primary);
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
}
.signup-form button:hover {
  background-color: var(--primary-hover);
  transform: translateY(-2px);
}
.thank-you-message {
  margin-top: 1rem;
  color: var(--primary);
  font-weight: 600;
  display: none;
}

/* Back to home */
.back-home {
  margin-top: 1.5rem;
}
.back-home a {
  color: var(--primary);
  text-decoration: none;
}
.back-home a:hover {
  text-decoration: underline;
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .coming-soon-section {
    min-height: calc(100vh - 140px);
  }
  .coming-soon-section h1 {
    font-size: 2rem;
  }
  .signup-form input[type="email"] {
    min-width: 200px;
  }
  .countdown-item {
    min-width: 60px;
    padding: 0.75rem 1rem;
  }
  .countdown-item span {
    font-size: 1.25rem;
  }
}
@media (max-width: 480px) {
  .coming-soon-section {
    padding: 1.5rem 1rem;
  }
  .coming-soon-section h1 {
    font-size: 1.75rem;
  }
  .countdown-container {
    gap: 0.5rem;
  }
}
