/* public/css/pages/under-construction.css — UNDER CONSTRUCTION PAGE */

.under-construction {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  text-align: center;
  background: var(--bg);
}

.construction-container {
  max-width: 800px;
  padding: 3rem;
  background: var(--card);
  border-radius: 24px;
  border: 3px solid #e30613;
  box-shadow: var(--shadow);
}

.construction-container h1 {
  font-size: 4.5rem;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #e30613, #ff4d4d);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.construction-container p {
  font-size: 1.5rem;
  color: var(--text-light);
  margin-bottom: 3rem;
}

.construction-graphic {
  font-size: 6rem;
  margin: 3rem 0;
  animation: float 6s ease-in-out infinite;
}

.hammer { animation-delay: 0s; }
.wrench { animation-delay: 2s; }
.helmet { animation-delay: 4s; }

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

.admin-note {
  margin-top: 3rem;
  font-size: 1.2rem;
  color: var(--text-light);
}

.admin-note .login-x-btn {
  margin-top: 1rem;
  min-width: 220px;
}

/* Responsive */
@media (max-width: 768px) {
  .construction-container {
    padding: 2rem;
  }
  .construction-container h1 { font-size: 3.5rem; }
  .construction-graphic { font-size: 4.5rem; }
}