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

body {
  margin: 0;
  padding: 0;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Cairo", sans-serif;
  position: relative;
  color: #333;
}

.coming-soon-container {
  text-align: center;
  animation: fadeInUp 1.5s ease-out;
}

.logo {
  width: 200px;
  height: auto;
  margin-bottom: 30px;
  animation: fadeIn 2s ease-out;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.coming-soon {
  font-size: 4rem;
  font-weight: 800;
  margin: 0;
  color: #2c3e50;
  text-shadow: none;
  animation: fadeInUp 1.5s ease-out 0.5s both;
}

.subtitle {
  font-size: 1.2rem;
  margin-top: 20px;
  opacity: 0.8;
  color: #7f8c8d;
  text-shadow: none;
  animation: fadeInUp 1.5s ease-out 1s both;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .coming-soon {
    font-size: 3rem;
  }
  .logo {
    width: 100px;
  }
}
