/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

body {
  min-height: 100vh;
  background: linear-gradient(135deg, #0f2f23, #143d2b, #1b5e3b);
  color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* MAIN */
.coming-soon {
  text-align: center;
  max-width: 900px;
  padding: 3rem 2rem;
}



/* LOGO */
.logo {
  width: 140px;
  margin-bottom: 2rem;
}



.coming-title {
  margin-top: 2rem;     /* 👈 THIS creates space from BY CODRIT */
  margin-bottom: 3rem;
  letter-spacing: 0.3em;
  font-weight: 500;
  opacity: 0.95;
}


/* COUNTDOWN */
.countdown {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.time-box {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  border-radius: 16px;
  width: 120px;
  height: 120px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.time-box span {
  font-size: 3rem;
  font-weight: 600;
}

.time-box small {
  margin-top: 0.3rem;
  letter-spacing: 0.15em;
  font-size: 0.7rem;
  opacity: 0.8;
}

.separator {
  font-size: 2.5rem;
  opacity: 0.5;
}

/* TEXT */
.description {
  font-size: 1.15rem;
  line-height: 1.7;
  opacity: 0.9;
  margin-bottom: 3.5rem;
}

/* SOCIAL */
.socials p {
  font-size: 0.9rem;
  letter-spacing: 0.15em;
  margin-bottom: 1.2rem;
  opacity: 0.85;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 1.2rem;
  flex-wrap: wrap;
}

.social-icons img {
  width: 22px;
  height: 22px;
  filter: brightness(0) invert(1);
  transition: transform 0.2s ease, opacity 0.2s ease;
  opacity: 0.85;
}

.social-icons a:hover img {
  transform: translateY(-2px);
  opacity: 1;
}


/* BRAND */



.brand-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 0;   /* 👈 SPACE BEFORE “COMING SOON” */
}


.brand-name {
  font-size: 2.2rem;
  font-weight: 600;
  margin: 0;            /* IMPORTANT: remove default h1 margin */
  line-height: 1.05;    /* tight */
}

.brand-by {
  margin-top: 0.15rem; /* 👈 the ONLY space between them */
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.7;
  text-decoration: none;
  color: #ffffff;
  line-height: 1;
}

.brand-by:hover {
  opacity: 1;
  text-decoration: underline;
}


/* MOBILE */
@media (max-width: 768px) {
  .time-box {
    width: 95px;
    height: 95px;
  }

  .time-box span {
    font-size: 2.3rem;
  }

  .separator {
    display: none;
  }
}

.subtitle {
  font-size: 1.4rem;
  font-weight: 500;
  margin-bottom: 1rem;
  opacity: 0.95;
  letter-spacing: 0.03em;
}

