/* ==========================================================================
   SEARCHMARO - "Coming Soon" over Skyscrapers (dark overlay)
   ========================================================================== */

:root {
  --white: #ffffff;
  --soft: rgba(255, 255, 255, 0.82);
  --muted: rgba(255, 255, 255, 0.62);
  --send-text: #3f6377;
  --font: 'Josefin Sans', -apple-system, BlinkMacSystemFont, sans-serif;
}

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

html, body {
  width: 100%;
  min-height: 100vh;
  font-family: var(--font);
  color: var(--white);
  background: #0b1620;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Skyscraper background image */
.bg-image {
  position: fixed;
  inset: 0;
  background: url('bg-skyscrapers.jpg') center center / cover no-repeat;
  z-index: 0;
}

/* Black overlay so white text stays readable */
.bg-overlay {
  position: fixed;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(6, 14, 22, 0.72) 0%, rgba(6, 14, 22, 0.52) 45%, rgba(6, 14, 22, 0.68) 100%),
    radial-gradient(ellipse at 50% 35%, rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.55) 100%);
  z-index: 1;
}

/* Main content column */
.content {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 24px 120px;
}

/* Logo + Tagline */
.header-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  margin-bottom: 6px;
  flex-wrap: wrap;
}

.logo {
  height: clamp(66px, 9vw, 96px);
  width: auto;
  max-width: 78vw;
  object-fit: contain;
}

.tagline {
  text-align: left;
  font-size: clamp(13px, 1.4vw, 16px);
  font-weight: 300;
  line-height: 1.5;
  letter-spacing: 0.4px;
  color: var(--soft);
}

/* COMING SOON */
.coming-soon {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  margin: 14px 0 44px;
  font-weight: 300;
  letter-spacing: 0.14em;
  line-height: 0.98;
  text-transform: uppercase;
}

.coming-soon span {
  font-size: clamp(3.4rem, 9vw, 7.4rem);
  color: var(--white);
  text-shadow: 0 6px 40px rgba(0, 0, 0, 0.45);
}

/* Newsletter label */
.newsletter-label {
  font-size: 16px;
  font-weight: 300;
  letter-spacing: 0.6px;
  color: var(--soft);
  margin-bottom: 20px;
}

/* Email form (input + SEND) */
.email-form {
  display: flex;
  align-items: stretch;
  justify-content: center;
  width: 100%;
  max-width: 500px;
  height: 54px;
}

.email-input {
  flex: 1;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-right: none;
  outline: none;
  color: var(--white);
  font-family: var(--font);
  font-size: 16px;
  font-weight: 300;
  letter-spacing: 0.4px;
  padding: 0 20px;
}

.email-input::placeholder {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 300;
}

.email-input:focus {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.send-btn {
  width: 116px;
  background: var(--white);
  color: var(--send-text);
  border: 1px solid var(--white);
  outline: none;
  cursor: pointer;
  font-family: var(--font);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 2px;
  transition: background 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
}

.send-btn:hover {
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 0 24px rgba(255, 255, 255, 0.3);
}

.send-btn:active {
  transform: translateY(1px);
}

/* Success toast */
.success-message {
  display: none;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 0.4px;
  color: #b9f5cd;
  animation: fadeIn 0.4s ease forwards;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Connect label */
.connect-label {
  margin-top: 40px;
  font-size: 15px;
  font-weight: 300;
  letter-spacing: 0.6px;
  color: var(--soft);
}

/* Social bar */
.social-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  margin-top: 16px;
}

.social-btn {
  color: var(--white);
  font-size: 20px;
  text-decoration: none;
  opacity: 0.9;
  transition: transform 0.25s ease, opacity 0.25s ease, color 0.25s ease;
}

.social-btn:hover {
  transform: translateY(-3px);
  opacity: 1;
  color: #cfe3f2;
}

/* Footer logo */
.site-footer {
  position: fixed;
  bottom: 18px;
  left: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
  pointer-events: none;
}

.footer-logo {
  height: 38px;
  width: auto;
  object-fit: contain;
  opacity: 0.9;
}

.privacy-link {
  pointer-events: auto;
  font-size: 12.5px;
  font-weight: 300;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.25s ease;
}

.privacy-link:hover {
  color: #fff;
}

/* Responsive */

/* Tablet & below: stack logo above tagline */
@media (max-width: 780px) {
  .content { padding: 64px 20px 110px; }
  .header-row {
    flex-direction: column;
    gap: 12px;
  }
  .tagline { text-align: center; }
}

/* Phones: stack the email form, tighten spacing */
@media (max-width: 560px) {
  .content { padding: 52px 18px 100px; }
  .coming-soon { margin: 12px 0 32px; letter-spacing: 0.08em; }
  .coming-soon span { font-size: clamp(2.6rem, 15vw, 3.4rem); }
  .newsletter-label { font-size: 13.5px; margin-bottom: 16px; }
  .tagline { font-size: 13px; }
  .email-form {
    flex-direction: column;
    height: auto;
    max-width: 340px;
    gap: 12px;
  }
  .email-input {
    flex: 0 0 auto;
    width: 100%;
    height: 52px;
    border: 1px solid rgba(255, 255, 255, 0.55);
    text-align: center;
  }
  .send-btn {
    flex: 0 0 auto;
    width: 100%;
    height: 50px;
  }
  .connect-label { margin-top: 32px; }
  .social-bar { gap: 20px; }
  .social-btn { font-size: 18px; }
}

/* Short viewports: let the page scroll instead of clipping */
@media (max-height: 620px) {
  .content { justify-content: flex-start; }
  .site-footer { position: static; margin-top: 30px; padding-bottom: 20px; }
}
