/* Coming Soon Page Styles - Envy Homestore */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --sage: #9caf88;
  --sage-light: #8a9e78;
  --sage-glow: rgba(156, 175, 136, 0.2);
  --warm: #C79576;
  --bg-base: #c6c1aa;
  --bg-subtle: #b8b39b;
  --glass-bg: rgba(255, 255, 255, 0.7);
  --glass-border: rgba(0, 0, 0, 0.06);
  --glass-border-strong: rgba(0, 0, 0, 0.1);
  --text-primary: #1a1a1a;
  --text-secondary: #4a4a4a;
  --text-muted: #6b6b6b;
  --text-subtle: #9a9a9a;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg-base);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  color: var(--text-primary);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Ambient Background Gradients */
.bg-ambient {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(ellipse 80% 50% at 50% -20%, rgba(156, 175, 136, 0.12), transparent),
    radial-gradient(ellipse 60% 40% at 100% 100%, rgba(199, 149, 118, 0.06), transparent),
    radial-gradient(ellipse 40% 30% at 0% 50%, rgba(156, 175, 136, 0.04), transparent);
  pointer-events: none;
  z-index: 0;
}

/* Main Container */
.container {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 24px;
  text-align: center;
}

/* Hero Logo */
.hero-logo {
  margin-bottom: 40px;
  width: 100%;
  max-width: 320px;
  position: relative;
}

.hero-logo img {
  width: 100%;
  height: auto;
  display: block;
}

/* Tagline */
.tagline {
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 28px;
  letter-spacing: 0.01em;
}

/* Main heading */
h1 {
  font-family: 'Inter', sans-serif;
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 12px;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

h1 span {
  background: linear-gradient(135deg, var(--sage) 0%, var(--sage-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.subtitle {
  font-size: 1.125rem;
  color: var(--text-muted);
  max-width: 500px;
  line-height: 1.7;
  margin-bottom: 48px;
  font-weight: 400;
}

/* Glass Card for Form */
.glass-card {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 24px;
  padding: 32px;
  max-width: 520px;
  width: calc(100% - 32px);
  margin: 0 auto;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12), 0 2px 8px rgba(0, 0, 0, 0.08);
}

/* Email Form */
.signup-form {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  width: 100%;
  margin-bottom: 16px;
  align-items: stretch;
}

.signup-form input {
  flex: 1 1 200px;
  min-width: 0;
  padding: 16px 20px;
  font-size: 16px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 9999px;
  background: #ffffff;
  color: var(--text-primary);
  transition: all 0.3s ease;
  font-family: inherit;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.06);
}

.signup-form input::placeholder {
  color: var(--text-subtle);
}

.signup-form input:focus {
  outline: none;
  border-color: var(--sage);
  box-shadow: 0 0 0 4px var(--sage-glow);
  background: rgba(255, 255, 255, 1);
}

.signup-form button {
  flex: 0 0 auto;
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  background: var(--sage);
  border: none;
  border-radius: 9999px;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  box-shadow: 0 4px 14px var(--sage-glow);
}

.signup-form button:hover {
  background: var(--sage-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px var(--sage-glow);
}

.form-note {
  font-size: 13px;
  color: var(--text-subtle);
}

/* Success message */
.success-message {
  display: none;
  background: rgba(156, 175, 136, 0.15);
  color: var(--sage-light);
  padding: 16px 24px;
  border-radius: 12px;
  margin-bottom: 20px;
  font-weight: 500;
  border: 1px solid rgba(156, 175, 136, 0.3);
}

.success-message.show {
  display: block;
  animation: fadeIn 0.5s ease;
}

/* Features preview */
.features {
  display: flex;
  gap: 32px;
  margin-top: 64px;
  flex-wrap: wrap;
  justify-content: center;
}

.feature {
  text-align: center;
  max-width: 140px;
  padding: 20px;
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.feature:hover {
  transform: translateY(-4px);
  border-color: var(--glass-border-strong);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  font-size: 28px;
  margin-bottom: 12px;
}

.feature-text {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
  font-weight: 500;
}

/* Social links */
.social-links {
  display: flex;
  gap: 16px;
  margin-top: 48px;
}

.social-links a {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 20px;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: var(--sage);
  border-color: var(--sage);
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px var(--sage-glow);
}

/* Footer */
footer {
  position: relative;
  z-index: 1;
  padding: 24px;
  text-align: center;
  font-size: 13px;
  color: var(--text-subtle);
}

footer a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s ease;
}

footer a:hover {
  color: var(--sage);
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* Responsive */
@media (max-width: 600px) {
  h1 {
    font-size: 2.25rem;
  }

  .subtitle {
    font-size: 1rem;
  }

  .hero-logo {
    max-width: 260px;
  }

  .glass-card {
    padding: 20px;
    width: calc(100% - 24px);
    border-radius: 20px;
  }

  .signup-form {
    gap: 10px;
  }

  .signup-form input {
    flex: 1 1 100%;
    padding: 14px 18px;
  }

  .signup-form button {
    flex: 1 1 100%;
    padding: 14px 24px;
  }

  .features {
    gap: 12px;
  }

  .feature {
    padding: 14px;
    max-width: 110px;
  }
}

@media (min-width: 601px) and (max-width: 768px) {
  .glass-card {
    padding: 28px;
    max-width: 480px;
  }

  .signup-form input {
    flex: 1 1 180px;
  }
}
