/* Google Font */
body {
  margin: 0;
  font-family: 'Outfit', sans-serif;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  text-align: center;
  padding: 20px;
}

.coming-soon-container {
  max-width: 600px;
  width: 100%;
}

.logo img {
  max-width: 250px;
  margin-bottom: 30px;
}

h1 {
  font-size: 3.5rem;
  margin-bottom: 10px;
  color: #000f5c;
  animation: fadeIn 2s ease;
}

.tagline {
  font-size: 1.1rem;
  margin-bottom: 30px;
  opacity: 0.8;
  color: #222;
}

.contact-info p {
  margin: 10px 0;
  font-size: 1rem;
  color: #222;
}

.contact-info a {
  color: #000f5c;
  text-decoration: none;
}

.countdown {
  display: flex;
  justify-content: space-between;
  margin: 30px 0;
  font-size: 1.2rem;
}

.countdown div {
  flex: 1;
  background-color: #913bff;
  margin: 0 5px;
  padding: 10px 0;
  border-radius: 8px;
}

.countdown span {
  display: block;
  font-size: 2rem;
  font-weight: bold;
  color: #fff;
}

.footer {
  margin-top: 40px;
  font-size: 0.9rem;
  opacity: 0.6;
  color: #222;
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-15px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media screen and (max-width: 480px) {
  h1 {
    font-size: 2rem;
  }
  .countdown {
    flex-direction: column;
  }
  .countdown div {
    margin: 5px 0;
  }
}
