body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.maintenance-container {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #f0f4f8; /* Light, clean background */
  padding: 16px;
  box-sizing: border-box;
}

.content-wrapper {
  max-width: 600px;
  width: 100%;
  background: #ffffff;
  padding: 3rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  text-align: center;
  animation: fadeInScale 0.8s ease-out;
}

.logo {
  max-width: 150px;
  margin-bottom: 2rem;
  animation: slideInTop 0.6s ease-out;
}

.title {
  font-size: 24px;
  color: #2c3e50; /* Darker text for contrast */
  margin-bottom: 1.5rem;
  font-weight: 600;
  animation: slideInBottom 0.7s ease-out 0.2s both;
}

.message p {
  font-size: 16px;
  color: #34495e;
  line-height: 1.6;
  margin-bottom: 1rem;
  animation: fadeIn 0.8s ease-out 0.4s both;
}

.contact-info {
  margin-top: 2.5rem;
  margin-bottom: 2.5rem;
}

.contact-info h2 {
  font-size: 16px;
  color: #2c3e50;
  margin-bottom: 1.2rem;
  font-weight: 400;
  animation: fadeIn 0.8s ease-out 0.6s both;
}

.contact-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 16px;
  color: #259C99; /* A subtle blue for links */
  text-decoration: none;
  margin-bottom: 0.8rem;
  transition: color 0.3s ease;
  animation: fadeIn 0.8s ease-out 0.7s both;
}

.contact-item:hover {
  color: #107774;
}

.clover-logo-div{
  height: 80px;
  width: 80px;
  margin: auto;
}

.clover-logo-div img{
  height: 100%;
  width: 100%;
  object-fit: contain;
}

.social-links {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 1.5rem;
}

.social-buttons {
  display: flex;
  gap: 15px;
  /* flex-wrap: wrap; */
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-top: 1rem;
  animation: fadeIn 0.8s ease-out 0.8s both;
}

.social-button {
  padding: 8px 18px;
  background-color: #259C99; /* Blue for social buttons */
  color: white;
  text-decoration: none;
  border-radius: 25px;
  transition: background-color 0.3s ease, transform 0.2s ease;
  font-size: 16px;
  font-weight: 400;
}

.social-button:hover {
  background-color: #13837f;
  transform: translateY(-2px);
}

.signature {
  font-size: 16px;
  color: #7f8c8d;
  margin-top: 2.5rem;
  font-style: italic;
  animation: fadeIn 0.8s ease-out 0.9s both;
}

/* Animations */
@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

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

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

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .content-wrapper {
    padding: 2rem;
  }

  .title {
    font-size: 1.8rem;
  }

  .message p,
  .contact-info h2,
  .contact-item,
  .social-button,
  .signature {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .content-wrapper {
    padding: 1.5rem;
  }

  .title {
    font-size: 1.5rem;
  }

  .logo {
    max-width: 120px;
  }

  .social-buttons {
    /* flex-direction: column; */
    gap: 10px;
  }

  .social-button {
    width: 80%;
    margin: 0 auto;
  }
}