/* Coming Soon Page */
*, *::before, *::after {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  height: 100%;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: #000;
  color: #fff;
}

/* MAIN CONTAINER */
.coming-soon-page {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 100dvh;

  /* Image */
  background-image: url("../images/wonders.png");

  background-size: cover;        /* fills screen clean */
  background-position: center 20%; /* focus on lower part of image */
  background-repeat: no-repeat;

  display: flex;
  justify-content: center;
  align-items: center;
}

/* OVERLAY */
.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
}

/* CONTENT */
.content {
  position: relative;
  z-index: 2;

  text-align: center;
  padding: 20px;
  max-width: 900px;
}

/* TEXT */
h1 {
  font-size: 4rem;
  letter-spacing: 3px;
  font-weight: 700;

  text-shadow:
    0 0 10px rgba(0,200,255,.8),
    0 0 20px rgba(0,200,255,.6),
    0 0 40px rgba(0,200,255,.4);

  animation: techGlow 4s infinite alternate;
}

h2 {
  font-size: 2rem;
  margin-bottom: 10px;
  letter-spacing: 2px;
}

p {
  font-size: 1.5rem;
  margin-top: 20px;
  letter-spacing: 2px;
}

/* ANIMATIONS */
.fade-top,
.fade-main,
.fade-bottom {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 3s forwards ease;
}

.fade-top { animation-delay: 0.4s; }
.fade-main { animation-delay: 0.6s; }
.fade-bottom { animation-delay: 0.8s; }

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes techGlow {
  0% {
    text-shadow:
      0 0 10px rgba(0,200,255,.8),
      0 0 20px rgba(0,200,255,.6),
      0 0 40px rgba(0,200,255,.4);
  }

  100% {
    text-shadow:
      0 0 20px rgba(0,200,255,1),
      0 0 40px rgba(0,200,255,.9),
      0 0 80px rgba(0,200,255,.7);
  }
}

/* MOBILE */
@media (max-width: 600px) {
  h1 { font-size: 2.5rem; }
  h2 { font-size: 1.5rem; }
  p { font-size: 1.1rem; }
}