/**
 * In Constructie Component
 * "Under Construction" page styling
 */

.in-constructie-page-wrapper {
  background-color: #151625;
  min-height: 100vh;
  width: 100%;
}

.in-constructie-wrapper {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.in-constructie-content {
  max-width: 600px;
  padding: 40px 20px;
}

.in-constructie-icon {
  margin-bottom: 30px;
  animation: float 3s ease-in-out infinite;
}

.in-constructie-icon svg {
  filter: drop-shadow(0 0 20px rgba(22, 241, 211, 0.5));
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-15px); }
}

.in-constructie-title {
  font-size: 3rem;
  font-weight: 800;
  color: #16f1d3;
  margin-bottom: 20px;
  text-shadow: 0 0 20px rgba(22, 241, 211, 0.5);
  letter-spacing: 2px;
}

.in-constructie-desc {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 40px;
  line-height: 1.6;
}

.btn-back-home {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background: linear-gradient(135deg, #16f1d3, #0eead1);
  color: #001311;
  font-weight: 700;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 0 20px rgba(22, 241, 211, 0.4);
}

.btn-back-home:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(22, 241, 211, 0.7);
  color: #001311;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .in-constructie-title {
    font-size: 2rem;
  }

  .in-constructie-desc {
    font-size: 1rem;
  }
}

