@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background-color: #ffffff; /* White background */
  color: #1e293b; /* Dark slate for body text readability */
  font-family: 'Inter', sans-serif;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1.5rem;
  text-align: center;
}

.construction-container {
  max-width: 480px;
  width: 100%;
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}

/* Building GIF Illustration */
.construction-gif {
  width: 120px;
  height: 120px;
  object-fit: contain;
  margin-bottom: 0.5rem;
}

/* Brand Name */
.brand-name {
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #0172fe; /* Blue 0172fe */
}

/* Typography */
.main-title {
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.35;
  color: #0172fe; /* Blue 0172fe */
  letter-spacing: -0.01em;
}

.description {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #475569; /* Slate gray for readability */
}

/* Divider */
.divider {
  width: 60px;
  height: 1px;
  background-color: #e2e8f0;
  margin: 0.75rem 0;
}

/* Contact Info */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: #64748b;
}

.email-link {
  color: #0172fe; /* Blue 0172fe */
  text-decoration: none;
  font-weight: 600;
  transition: opacity 0.2s ease;
}

.email-link:hover {
  opacity: 0.8;
  text-decoration: underline;
}

/* Responsive adjustments */
@media (max-width: 480px) {
  .construction-container {
    padding: 1.5rem 1rem;
    gap: 1rem;
  }
  
  .main-title {
    font-size: 1.5rem;
  }
  
  .description {
    font-size: 0.9rem;
  }
}
