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

/* BODY WITH IMAGE BACKGROUND */
body {
  min-height: 100vh;
  background: url("../images/background.jpg") center / cover no-repeat fixed;
  color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

/* DARK OVERLAY FOR READABILITY */
.bg-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 0;
}

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

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

/* BRAND */
.brand-name {
  font-size: 2.2rem;
  font-weight: 600;
  line-height: 1.05;
}

.brand-by {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.7;
  color: #ffffff;
  text-decoration: none;
}

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

/* COMING SOON */
.coming-title {
  margin: 2rem 0 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.08);
  backdrop-filter: blur(8px);
  border-radius: 16px;
  width: 120px;
  height: 120px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

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

.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 */
.subtitle {
  font-size: 1.4rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.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;
}

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

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

  .separator {
    display: none;
  }
}
