* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body,
html {
  height: 100%;
  overflow: hidden; /* NO SCROLL */
}

/* .coming-soon {
  height: 100vh;
  background: linear-gradient(135deg, #0f2027, #2e7d32, #66bb6a);
  color: #fff;
  padding: 20px;
} */

.coming-soon {
  height: 100vh;
  background: url("bg.jpg") no-repeat center center/cover;
  color: #fff;
}

.logo {
  width: 400px;
  animation: fadeIn 2s ease;
}

.title {
  font-size: 42px;
  font-weight: 600;
  margin-bottom: 10px;
}

.subtitle {
  font-size: 18px;
  /* opacity: 0.85; */
}

.time-box {
  background: rgba(255, 255, 255, 0.1);
  padding: 15px;
  border-radius: 12px;
  backdrop-filter: blur(10px);
}

.time-box h2 {
  font-size: 28px;
}

.subscribe {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.subscribe input {
  padding: 12px;
  border: none;
  border-radius: 30px;
  width: 220px;
}

.subscribe button {
  padding: 12px 20px;
  border: none;
  border-radius: 30px;
  background: #1b5e20;
  color: #fff;
  transition: 0.3s;
}

.subscribe button:hover {
  background: #43a047;
}

/* Animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
/* @media (max-width: 768px) {
  .title {
    font-size: 28px;
  }

  .subscribe {
    flex-direction: column;
  }

  .subscribe input {
    width: 100%;
  }
} */

.logo-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

/* Logo */
/* .logo{
  width: 180px;
  z-index: 2;
  animation: zoomIn 1.5s ease;
} */

/* Leaves */
.leaf {
  width: 60px;
  opacity: 0.9;
  animation: fadeIn 2s ease;
}
@media (max-width: 768px) {
  .title {
    font-size: 26px;
    line-height: 1.3;
  }

  .subtitle {
    font-size: 14px;
    padding: 0 10px;
  }

  .logo {
    width: 210px;
  }

  .time-box h2 {
    font-size: 18px;
  }

  .subscribe {
    flex-direction: column;
    align-items: center;
  }

  .subscribe input {
    width: 60%;
  }

  .subscribe button {
    width: 60%;
  }
  .leaf {
    width: 40px;
  }
}
