/* Under Construction Page Styles */

.construction-hero {
  animation: fadeIn 1s ease-in;
}

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

.construction-icon {
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-20px);
  }
  60% {
    transform: translateY(-10px);
  }
}

.construction-info {
  animation: slideUp 0.8s ease-out 0.3s both;
}

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

.social-links a {
  transition: all 0.3s ease;
}

.social-links a:hover {
  background-color: #ff0068;
  color: white !important;
  border-color: #ff0068;
  transform: scale(1.1);
}

.progress-bar {
  transition: width 1.5s ease-in-out;
}

/* Responsive adjustments */

@media (max-width: 768px) {
  .display-3 {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .lead {
    font-size: 1.2rem !important;
  }
}

@media (max-width: 768px) {
  .construction-icon svg {
    width: 80px;
    height: 80px;
  }
}

