/* =============================================
   YOUR DECOR PLUG — Coming Soon
   Aesthetic: Minimal · Black · Inter
   ============================================= */

/* ── Reset ─────────────────────────────────── */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
}

body {
  font-family: 'Inter', sans-serif;
  background: #000;
  color: #fff;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ══════════════════════════════════════════════
   NAVBAR
   Identical to reference: logo left, pill right
══════════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 2rem;
}

.navbar__logo-img {
  height: 50px;
  width: auto;
  object-fit: contain;
  display: block;
  /* screen blend removes the dark bg from the logo PNG */
  mix-blend-mode: screen;
  opacity: 0.9;
  transition: opacity 0.3s ease;
}

.navbar__logo-img:hover {
  opacity: 1;
}

/* White pill button — exactly like reference */
.navbar__cta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: #fff;
  color: #111;
  border: none;
  border-radius: 100px;
  padding: 0.6rem 1.5rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  cursor: pointer;
  transition: opacity 0.2s ease, transform 0.2s ease;
  white-space: nowrap;
}

.navbar__cta:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}

/* ══════════════════════════════════════════════
   HERO  — pure black, flex-centered
══════════════════════════════════════════════ */
.hero {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 5rem 1.5rem 3rem;
  /* pure black — no image, no gradient */
  background: #000;
}

/* ── Floating bouquet (like the astronaut) ── */
.hero__float {
  margin-bottom: 2.4rem;
  animation: float 6s ease-in-out infinite;
  /* screen blend on the container removes the JPEG black box */
  mix-blend-mode: screen;
  background: transparent;
}

.hero__bouquet {
  width: 200px;
  height: 200px;
  object-fit: contain;
  display: block;
  /* contrast crushes near-black to pure black → screen makes it transparent */
  filter: brightness(1.1) contrast(1.5);
}

@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(-1.5deg); }
  50%       { transform: translateY(-16px) rotate(1.5deg); }
}

/* ── Headline ── */
.hero__title {
  font-size: clamp(1.8rem, 5vw, 3.2rem);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: #fff;
  margin-bottom: 0.9rem;
  max-width: 680px;
}

/* ── Subtext ── */
.hero__sub {
  font-size: clamp(0.85rem, 2vw, 1rem);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 0.01em;
  margin-bottom: 2.8rem;
}

/* ── Countdown ── */
.countdown {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.countdown__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15rem;
}

.countdown__num {
  font-size: clamp(1.2rem, 3vw, 1.7rem);
  font-weight: 300;
  letter-spacing: -0.03em;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1;
}

.countdown__lbl {
  font-size: 0.6rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.28);
}

.countdown__dot {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.15);
  line-height: 1;
  margin-bottom: 1rem; /* align with number */
}

/* pop animation for digit changes */
@keyframes countPop {
  0%   { transform: scale(1); }
  50%  { transform: scale(1.2); }
  100% { transform: scale(1); }
}

.countdown__num.pop {
  animation: countPop 0.3s ease-out;
}

/* ══════════════════════════════════════════════
   FOOTER  — photo strip like Earth horizon
══════════════════════════════════════════════ */
.footer {
  position: relative;
  width: 100%;
  /* roughly 28% of viewport height, like the reference */
  min-height: 28vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

/* The photo strip — fills entire footer as bg */
.footer__img-strip {
  position: absolute;
  inset: 0;
  background: url('assets/hero-bg-new.png') center top / cover no-repeat;
  /* dark vignette so content is legible */
  filter: brightness(0.55);
}

/* Gradient fade from black at top into the photo */
.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 60%;
  background: linear-gradient(to bottom, #000 0%, transparent 100%);
  z-index: 1;
}

.footer__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  padding: 2rem 1.5rem;
  flex: 1;
}

/* Services line */
.footer__services {
  font-size: 0.7rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
}

/* Social icons row — exactly like reference */
.footer__socials {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.6rem;
}

.social-icon {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.25s ease, transform 0.25s ease;
}

.social-icon:hover {
  color: #fff;
  transform: translateY(-3px);
}

/* ══════════════════════════════════════════════
   NOTIFY MODAL
══════════════════════════════════════════════ */
.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.modal-backdrop.open {
  opacity: 1;
  pointer-events: all;
}

.modal {
  background: #111;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 2.4rem 2rem 2rem;
  width: min(440px, 92vw);
  position: relative;
  transform: translateY(16px) scale(0.97);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.modal-backdrop.open .modal {
  transform: translateY(0) scale(1);
}

.modal__close {
  position: absolute;
  top: 1rem;
  right: 1.2rem;
  background: none;
  border: none;
  font-size: 1.4rem;
  color: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: color 0.2s;
  line-height: 1;
  font-family: 'Inter', sans-serif;
}

.modal__close:hover {
  color: rgba(255, 255, 255, 0.8);
}

.modal__label {
  font-size: 0.95rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.65);
  text-align: center;
  margin-bottom: 1.4rem;
  letter-spacing: -0.01em;
}

/* Input + button in one pill row */
.modal__row {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 100px;
  padding: 4px 4px 4px 20px;
  transition: border-color 0.3s ease;
}

.modal__row:focus-within {
  border-color: rgba(255, 255, 255, 0.3);
}

.modal__row input {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  font-weight: 300;
  color: #fff;
  padding: 0.5rem 0;
}

.modal__row input::placeholder {
  color: rgba(255, 255, 255, 0.25);
}

.modal__row button {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  background: #fff;
  color: #111;
  border: none;
  border-radius: 100px;
  padding: 0.65rem 1.3rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  cursor: pointer;
  letter-spacing: -0.01em;
  transition: opacity 0.2s;
  white-space: nowrap;
}

.modal__row button:hover {
  opacity: 0.85;
}

.form-feedback {
  margin-top: 0.9rem;
  font-size: 0.8rem;
  text-align: center;
  min-height: 1rem;
  color: rgba(255, 255, 255, 0.5);
  opacity: 0;
  transition: opacity 0.35s ease;
  font-weight: 300;
}

.form-feedback.visible { opacity: 1; }
.form-feedback.success { color: #7dd8a0; }
.form-feedback.error   { color: #f07070; }

/* ══════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════ */
@media (max-width: 600px) {
  .navbar {
    padding: 1rem 1.25rem;
  }

  .navbar__logo-img {
    height: 36px;
  }

  .navbar__cta {
    padding: 0.5rem 1.1rem;
    font-size: 0.82rem;
  }

  .hero__bouquet {
    width: 150px;
    height: 150px;
  }

  .countdown {
    gap: 0.6rem;
  }

  .footer__services {
    font-size: 0.62rem;
    letter-spacing: 0.05em;
  }

  .footer__socials {
    gap: 1.2rem;
  }
}