/* RESET + BASE */
body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  color: #222;
}

/* HERO SECTION */
.coming-hero {
  min-height: 100vh;
  padding: 20px;
  background: url('images/hero.jpeg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* OVERLAY CARD */
.coming-overlay {
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: white;
  text-align: center;
  padding: 50px;
  border-radius: 12px;
  max-width: 600px;
  width: 100%;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

/* BRAND */
.brand {
  font-size: 3rem;
  letter-spacing: 2px;
  font-weight: 700;
  margin: 0;
}

/* TAGLINE */
.tagline {
  color: #f4c542;
  margin: 10px 0 20px;
  font-weight: 500;
}

/* DESCRIPTION */
.desc {
  margin: 15px 0 25px;
  font-weight: 300;
}

/* PILLARS */
.pillars {
  margin-bottom: 25px;
}

.pillars span {
  background: #e63946;
  padding: 8px 15px;
  margin: 5px;
  border-radius: 20px;
  display: inline-block;
  font-size: 14px;
}

/* BUTTON */
.btn {
  display: inline-block;
  background: #e63946;
  padding: 12px 25px;
  border-radius: 30px;
  text-decoration: none;
  color: white;
  transition: all 0.3s ease;
  font-weight: 500;
}

.btn:hover {
  background: #c92a35;
  transform: scale(1.05);
}

/* OPTIONAL SMALL TEXT */
.note {
  margin-top: 15px;
  font-size: 14px;
  opacity: 0.8;
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {
  .brand {
    font-size: 2rem;
  }

  .coming-overlay {
    padding: 30px 20px;
  }

  .pillars span {
    font-size: 12px;
    padding: 6px 12px;
  }
}

/* COUNTDOWN */
.countdown {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 20px;
}

.countdown div {
  background: rgba(255,255,255,0.1);
  padding: 10px 15px;
  border-radius: 8px;
}

.countdown span {
  font-size: 1.5rem;
  font-weight: 700;
  display: block;
}

.countdown p {
  margin: 0;
  font-size: 12px;
}

/* FADE ANIMATION */
.coming-overlay {
  animation: fadeIn 1.5s ease-in-out;
}

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

/* WHATSAPP BUTTON */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #128C7E;
  color: white;
  font-size: 24px;
  padding: 15px 18px;
  border-radius: 50%;
  text-decoration: none;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  z-index: 1000;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}
