@import url("https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;800&display=swap");

.coming-soon-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 70vh;
  padding: 3rem;
  text-align: center;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  margin: 2rem;
}

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

.coming-soon-title {
  font-family: "Nunito", sans-serif;
  font-size: 4.5rem;
  font-weight: 800;
  background: linear-gradient(45deg, #3498db, #9b59b6);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -2px;
  text-transform: uppercase;
  position: relative;
}

.progress-container {
  width: 100%;
  max-width: 400px;
  margin: 2rem auto;
  position: relative;
}

.progress-bar {
  width: 100%;
  height: 12px;
  background-color: #ecf0f1;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
}

.progress-fill {
  position: absolute;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #3498db, #9b59b6);
  border-radius: 6px;
  transition: width 2s ease-in-out;
  animation: progress 3s ease-in-out infinite;
  background-size: 200% 100%;
  background-position: -100% 0;
}

.progress-text {
  font-family: "Nunito", sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: #2c3e50;
  margin-top: 1rem;
  text-align: center;
  opacity: 0;
  animation: fadeIn 0.5s ease-in forwards;
  animation-delay: 0.5s;
}

@keyframes progress {
  0% {
    width: 0%;
    background-position: -100% 0;
  }

  50% {
    background-position: 100% 0;
  }

  100% {
    width: 100%;
    background-position: -100% 0;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Shimmer effect for progress bar */
.progress-fill::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.3) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  animation: shimmer 2s infinite;
}

@keyframes shimmer {
  0% {
    transform: translateX(-100%);
  }

  100% {
    transform: translateX(100%);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .coming-soon-title {
    font-size: 3rem;
  }

  .coming-soon-container {
    margin: 1rem;
    padding: 1.5rem;
  }

  .progress-container {
    max-width: 300px;
  }
}
