/* =============================================
   YOUR DECOR PLUG — Coming Soon Landing Page
   ============================================= */

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  color: #f5f0eb;
  background: #0a0a0a;
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ── Particles Canvas ────────────────────────── */
#particles {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

/* ── Hero Section ────────────────────────────── */
.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0a0a0a;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('assets/hero-bg.png') center/cover no-repeat fixed;
  filter: blur(10px);
  -webkit-filter: blur(10px);
  transform: scale(1.05);
  z-index: 1;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
      rgba(10, 10, 10, 0.90) 0%,
      rgba(10, 10, 10, 0.78) 30%,
      rgba(10, 10, 10, 0.82) 70%,
      rgba(10, 10, 10, 0.96) 100%);
  z-index: 2;
}

.hero__content {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 3rem 1.5rem;
  max-width: 700px;
  width: 100%;
}

/* ── Logo ────────────────────────────────────── */
.logo-wrapper {
  margin-bottom: 2rem;
  animation: fadeSlideDown 1s ease-out 0.2s both;
}

.logo-img {
  width: 180px;
  height: auto;
  filter: drop-shadow(0 0 40px rgba(196, 164, 120, 0.3));
  border-radius: 12px;
  transition: transform 0.5s ease;
}

.logo-img:hover {
  transform: scale(1.05);
}

/* ── Tagline ─────────────────────────────────── */
.tagline {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.3rem, 4vw, 2.2rem);
  font-weight: 400;
  font-style: normal;
  color: #d4b896;
  letter-spacing: 0.02em;
  margin-bottom: 3rem;
  line-height: 1.4;
  animation: fadeSlideDown 1s ease-out 0.5s both;
}

/* ── Countdown Timer ─────────────────────────── */
.countdown {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 3rem;
  animation: fadeSlideDown 1s ease-out 0.8s both;
}

.countdown__block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(212, 184, 150, 0.15);
  border-radius: 16px;
  padding: 1.2rem 1.4rem;
  min-width: 80px;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.countdown__block:hover {
  transform: translateY(-4px);
  border-color: rgba(212, 184, 150, 0.35);
}

.countdown__number {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.8rem, 5vw, 2.8rem);
  font-weight: 600;
  color: #f5f0eb;
  line-height: 1;
  transition: color 0.3s ease;
}

.countdown__block:hover .countdown__number {
  color: #d4b896;
}

.countdown__label {
  font-size: 0.7rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(212, 184, 150, 0.6);
}

.countdown__separator {
  font-family: 'Poppins', sans-serif;
  font-size: 2rem;
  font-weight: 300;
  color: rgba(212, 184, 150, 0.3);
  margin: 0 0.1rem;
  animation: pulse 2s ease-in-out infinite;
}

/* ── Notify Section ──────────────────────────── */
.notify-section {
  width: 100%;
  max-width: 480px;
  margin-bottom: 2.5rem;
  animation: fadeSlideDown 1s ease-out 1.1s both;
}

.notify-text {
  font-size: 0.95rem;
  font-weight: 400;
  color: rgba(245, 240, 235, 0.6);
  margin-bottom: 1rem;
  letter-spacing: 0.03em;
}

.notify-form {
  width: 100%;
}

.input-group {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(212, 184, 150, 0.18);
  border-radius: 60px;
  padding: 5px 5px 5px 24px;
  transition: border-color 0.4s ease, box-shadow 0.4s ease;
}

.input-group:focus-within {
  border-color: rgba(212, 184, 150, 0.5);
  box-shadow: 0 0 30px rgba(212, 184, 150, 0.08);
}

.input-group input {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  color: #f5f0eb;
  padding: 0.6rem 0;
}

.input-group input::placeholder {
  color: rgba(245, 240, 235, 0.35);
}

.input-group button {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, #c4a478, #a08060);
  border: none;
  border-radius: 50px;
  padding: 0.75rem 1.6rem;
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: #fff;
  cursor: pointer;
  letter-spacing: 0.04em;
  transition: all 0.4s ease;
  white-space: nowrap;
}

.input-group button:hover {
  background: linear-gradient(135deg, #d4b896, #b08e6e);
  transform: translateY(-1px);
  box-shadow: 0 6px 25px rgba(196, 164, 120, 0.3);
}

.input-group button:active {
  transform: translateY(0);
}

.btn-icon {
  display: flex;
  align-items: center;
}

.form-feedback {
  margin-top: 0.8rem;
  font-size: 0.85rem;
  min-height: 1.2rem;
  color: #d4b896;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.form-feedback.visible {
  opacity: 1;
}

.form-feedback.error {
  color: #e8786a;
}

.form-feedback.success {
  color: #7dd8a0;
}

/* ── Social Links ────────────────────────────── */
.socials {
  display: flex;
  gap: 1rem;
  margin-bottom: 2.5rem;
  animation: fadeSlideDown 1s ease-out 1.4s both;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(212, 184, 150, 0.12);
  color: rgba(245, 240, 235, 0.6);
  text-decoration: none;
  transition: all 0.4s ease;
}

.social-link:hover {
  color: #d4b896;
  border-color: rgba(212, 184, 150, 0.4);
  background: rgba(212, 184, 150, 0.08);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(212, 184, 150, 0.1);
}

/* ── Footer ──────────────────────────────────── */
.footer {
  animation: fadeSlideDown 1s ease-out 1.6s both;
}

.footer p {
  font-size: 0.78rem;
  color: rgba(245, 240, 235, 0.25);
  letter-spacing: 0.05em;
}

/* ── Animations ──────────────────────────────── */
@keyframes fadeSlideDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {

  0%,
  100% {
    opacity: 0.3;
  }

  50% {
    opacity: 0.8;
  }
}

/* ── "Pop" animation for countdown digits ──── */
@keyframes countPop {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.15);
  }

  100% {
    transform: scale(1);
  }
}

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

/* ── Responsive ──────────────────────────────── */
@media (max-width: 600px) {
  .hero__content {
    padding: 2rem 1.2rem;
  }

  .logo-img {
    width: 140px;
  }

  .countdown {
    gap: 0.3rem;
  }

  .countdown__block {
    min-width: 60px;
    padding: 0.9rem 0.8rem;
    border-radius: 12px;
  }

  .countdown__separator {
    font-size: 1.4rem;
  }

  .input-group {
    flex-direction: column;
    border-radius: 20px;
    padding: 12px;
    gap: 8px;
  }

  .input-group input {
    width: 100%;
    text-align: center;
    padding: 0.5rem;
  }

  .input-group button {
    width: 100%;
    justify-content: center;
    padding: 0.85rem;
    border-radius: 14px;
  }

  .socials {
    gap: 0.7rem;
  }

  .social-link {
    width: 42px;
    height: 42px;
  }
}

@media (max-width: 380px) {
  .countdown__block {
    min-width: 50px;
    padding: 0.7rem 0.5rem;
  }

  .countdown__number {
    font-size: 1.4rem;
  }
}