/* ===== COMING SOON (PAGE-LEVEL BACKGROUND) ===== */
body.coming-soon-page {
  /* Full-page background */
  min-height: 100svh;
  display: flex;
  flex-direction: column;

  /* Use your existing hero image so the aesthetic matches the site */
  background-image: url('./images/man-4.jpg');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  /* Optional: keep it fixed for a subtle parallax feel */
  background-attachment: fixed;
}

/* Center the hero content and let it stretch to push the footer to the bottom */
.coming-soon-page .hero {
  flex: 1; /* take remaining height so footer sits at bottom */
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1rem;
}

/* Readable overlay card on top of the full-page background */
.coming-soon-page .hero-content {
  background: rgba(0, 0, 0, 0.55);
  padding: 2rem;
  border-radius: 12px;
  max-width: 640px;
  width: 100%;
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  border: 1px solid rgba(245, 215, 66, 0.25);
}

.coming-soon-page .hero-title {
  font-size: 3rem;
  color: #ffd700;
  margin-bottom: 0.75rem;
  text-shadow: 0 2px 8px rgba(0,0,0,.6);
}

.coming-soon-page .hero-subtitle {
  font-size: 1.15rem;
  margin-bottom: 1.25rem;
  line-height: 1.6;
  color: #f5e6c8;
}

/* Form (uses your newsletter aesthetic) */
.coming-soon-page .newsletter-form {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
}

.coming-soon-page .newsletter-form input[type="text"],
.coming-soon-page .newsletter-form input[type="email"] {
  padding: 0.85rem 1rem;
  border: 2px solid #f5d742;
  border-radius: 6px;
  background: #1e1e2d;
  color: #fff;
  font-size: 1rem;
}

.coming-soon-page .btn {
  background: linear-gradient(135deg, #8b0000 0%, #b22222 100%);
  color: #ffd700;
  border: none;
  border-radius: 6px;
  padding: 0.9rem 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s ease, filter 0.2s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.coming-soon-page .btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.08);
}



/* Footer centered and tidy at the bottom */
.coming-soon-page .footer {
  text-align: center;             /* center footer text */
  background: rgba(0, 0, 0, 0.5); /* subtle bar for contrast */
  color: #e0e0e0;
  border-top: 1px solid rgba(245, 215, 66, 0.2);
  padding: 1.25rem 1rem;
  box-shadow: 
        0 0 15px rgba(255, 220, 100, 0.3),
        0 0 30px rgba(255, 215, 0, 0.2),
        0 0 45px rgba(255, 200, 50, 0.1),
        inset 0 0 10px rgba(255, 240, 150, 0.1);
}

.coming-soon-page .footer .footer-inner {
  max-width: 900px;
  margin: 0 auto;                 /* center the inner content */
}

@media (max-width: 600px) {
  .coming-soon-page .hero-title {
    font-size: 2.3rem;
  }
  .coming-soon-page .hero-content {
    padding: 1.5rem;
  }
}

/* ===== Inline Success Popup ===== */
.success-popup {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(.9);
  background: rgba(20, 20, 20, .95);
  color: #ffd700;
  padding: 1rem 2rem;
  border-radius: 10px;
  font-size: 1.1rem;
  font-weight: 600;
  text-align: center;
  z-index: 2000;
  opacity: 0;
  transition: opacity .3s ease, transform .3s ease;
  border: 2px solid #ffd700;
  box-shadow: 0 8px 25px rgba(0,0,0,.5);
}

.success-popup.show {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.success-popup.error {
  background: rgba(139, 0, 0, .95);
  color: #fff;
  border-color: #ff5555;
}
