/* ==============================
   Cenit Power Systems
   Under Design Page
   Lightweight + Centered
   ============================== */

:root {
  --bg: #f6f9ff;
  --bg2: #eaf2ff;
  --text: #0c1a2b;
  --muted: #4c637a;
  --primary: #1e73ff;
}

* {
  box-sizing: border-box;
}

html, body {
  height: 100%;
  margin: 0;
}

body {
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: linear-gradient(135deg, var(--bg), var(--bg2));
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* Container */

.under-design-container {
  padding: 20px;
}

/* Logo */

.under-logo {
  height: 220px;   /* adjust 200–260 if desired */
  width: auto;
  margin-bottom: 30px;
}

/* Title */

.under-title {
  font-size: 2.2rem;
  margin: 0 0 10px;
  letter-spacing: 0.5px;
}

/* Subtitle */

.under-subtitle {
  color: var(--muted);
  font-size: 1rem;
  margin-bottom: 30px;
}

/* Contact */

.under-contact {
  font-size: 0.95rem;
  color: var(--muted);
}

.under-contact a {
  color: var(--primary);
  text-decoration: none;
}

.under-contact a:hover {
  text-decoration: underline;
}
