/* Coming Soon Section */
.coming-soon-section {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 0;
  background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.coming-soon-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('../images/comingsoon.svg') center/cover no-repeat;
  opacity: 0.3;
  z-index: 0;
}

.coming-soon-section .container {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.coming-soon-content {
  text-align: center;
  padding: 3rem 2rem;
}

.icon-container {
  margin-bottom: 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.animated-icon {
  font-size: 5rem;
  display: inline-block;
  animation: float-rotate 3s ease-in-out infinite;
  filter: drop-shadow(0 4px 12px rgba(90, 135, 168, 0.3));
}

@keyframes float-rotate {
  0%, 100% {
    transform: translateY(0) rotate(0deg) scale(1);
  }
  25% {
    transform: translateY(-15px) rotate(5deg) scale(1.05);
  }
  50% {
    transform: translateY(-25px) rotate(0deg) scale(1.1);
  }
  75% {
    transform: translateY(-15px) rotate(-5deg) scale(1.05);
  }
}

.coming-soon-message {
  font-family: 'Merriweather', serif;
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.7;
  color: #5a87a8;
  margin: 0;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  animation: fadeInUp 0.8s ease-out;
}

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

/* Responsive Design */
@media (max-width: 900px) {
  .coming-soon-section {
    min-height: 60vh;
    padding: 3rem 0;
  }

  .coming-soon-content {
    padding: 2rem 1.5rem;
  }

  .animated-icon {
    font-size: 4rem;
  }

  .coming-soon-message {
    font-size: 1.5rem;
  }
}

@media (max-width: 600px) {
  .coming-soon-section {
    min-height: 50vh;
    padding: 2rem 0;
  }

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

  .icon-container {
    margin-bottom: 1.25rem;
  }

  .animated-icon {
    font-size: 3.5rem;
  }

  .coming-soon-message {
    font-size: 1.2rem;
    line-height: 1.6;
  }
}

