/* Basic reset and styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
    Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color: #2c3e50;
  overflow-x: hidden;
  min-height: 100vh;
}

/* Coming Soon Page */
.coming-soon {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #e8f4f8 0%, #d1e7dd 100%);
  padding: 2rem;
  position: relative;
}

.coming-soon::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.3;
  z-index: 0;
}

.coming-soon-content {
  text-align: center;
  z-index: 1;
  position: relative;
  animation: fadeInUp 1s ease-out;
  max-width: 600px;
  width: 100%;
}

.logo-container {
  margin-bottom: 3rem;
  animation: fadeIn 1.2s ease-out;
}

.coming-soon-logo {
  max-width: 400px;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.1));
}

.coming-soon-title {
  font-size: 3.5rem;
  font-weight: 700;
  color: #2a436c;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
  animation: fadeInUp 1s ease-out 0.2s both;
}

.coming-soon-subtitle {
  font-size: 1.25rem;
  color: #7f8c8d;
  line-height: 1.8;
  max-width: 500px;
  margin: 0 auto;
  animation: fadeInUp 1s ease-out 0.4s both;
}

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

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

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

  .coming-soon-subtitle {
    font-size: 1.1rem;
  }

  .coming-soon-logo {
    max-width: 250px;
  }
}

@media (max-width: 480px) {
  .coming-soon {
    padding: 1rem;
  }

  .coming-soon-title {
    font-size: 2rem;
  }

  .coming-soon-subtitle {
    font-size: 1rem;
  }

  .coming-soon-logo {
    max-width: 200px;
  }

  .logo-container {
    margin-bottom: 2rem;
  }
}
