/* Reset și fonturi */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', 'Quicksand', 'Nunito', Arial, sans-serif;
  background: linear-gradient(135deg, #f7f3fa 0%, #ffffff 100%);
  color: #333333;
  line-height: 1.7;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Container principal */
.maintenance-container {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

/* Logo */
.logo-section {
  margin-bottom: 3rem;
}

.logo-img {
  width: 200px;
  height: auto;
  margin-bottom: 1rem;
  filter: drop-shadow(0 4px 12px rgba(177,139,208,0.2));
}

/* Conținut principal */
.maintenance-content {
  background: #fff;
  border-radius: 2rem;
  padding: 3rem 2rem;
  box-shadow: 0 8px 32px 0 rgba(177,139,208,0.13);
  margin-bottom: 2rem;
  border: 2px solid rgba(177,139,208,0.1);
}

.maintenance-title {
  font-size: 2.5rem;
  color: #B18BD0;
  margin-bottom: 1rem;
  font-family: 'Quicksand', 'Poppins', sans-serif;
  font-weight: 700;
}

.maintenance-subtitle {
  font-size: 1.4rem;
  color: #6D8AC8;
  margin-bottom: 2rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.maintenance-subtitle-h1 {
  font-size: 1.4rem;
  color: #6D8AC8;
  margin-bottom: 2rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin: 0;
  padding: 0;
  display: block;
}

.maintenance-subtitle-h1 .line-1,
.maintenance-subtitle-h1 .line-2 {
  display: block;
}

.maintenance-subtitle-h1 .line-1 {
  margin-bottom: 0.2rem;
}

.maintenance-text {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 3rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* Icon construcție */
.construction-icon {
  font-size: 4rem;
  margin-bottom: 2rem;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

/* Buton */
.btn {
  display: inline-block;
  padding: 0.9rem 2.2rem;
  font-size: 1.1rem;
  font-weight: 700;
  border: none;
  border-radius: 2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  background: linear-gradient(90deg, #C86DD7 0%, #6D8AC8 100%);
  color: #fff;
  box-shadow: 0 4px 15px rgba(200,109,215,0.3);
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(200,109,215,0.4);
  background: linear-gradient(90deg, #B18BD0 0%, #5A7BC8 100%);
}

/* Secțiunea de contact */
.contact-section {
  background: #f7f3fa;
  border-radius: 2rem;
  padding: 2rem;
  margin-top: 2rem;
  border: 2px solid rgba(177,139,208,0.1);
}

.contact-title {
  font-size: 1.5rem;
  color: #B18BD0;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #666;
  font-size: 1rem;
}

.contact-item svg {
  width: 20px;
  height: 20px;
  color: #B18BD0;
}

.contact-item a {
  color: #6D8AC8;
  text-decoration: none;
  font-weight: 600;
}

.contact-item a:hover {
  color: #B18BD0;
}

/* Social media */
.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
  justify-content: center;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: #fff;
  border-radius: 1rem;
  text-decoration: none;
  color: #666;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  border: 1px solid rgba(177,139,208,0.2);
}

.social-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(177,139,208,0.15);
  color: #B18BD0;
}

.social-link svg {
  width: 18px;
  height: 18px;
}

/* Footer */
.footer {
  margin-top: auto;
  padding: 2rem;
  text-align: center;
  color: #999;
  font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
  .maintenance-container {
    padding: 1rem;
  }
  
  .maintenance-content {
    padding: 2rem 1.5rem;
  }
  
  .maintenance-title {
    font-size: 2rem;
  }
  
  .maintenance-subtitle {
    font-size: 1.2rem;
  }
  
  .logo-img {
    width: 150px;
  }
  
  .construction-icon {
    font-size: 3rem;
  }
  
  .contact-info {
    gap: 0.8rem;
  }
  
  .social-links {
    flex-direction: column;
    align-items: center;
  }
}

/* Animație pentru fundal */
.maintenance-container::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 20% 80%, rgba(177,139,208,0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(109,138,200,0.1) 0%, transparent 50%),
    radial-gradient(circle at 40% 40%, rgba(200,109,215,0.05) 0%, transparent 50%);
  z-index: -1;
  animation: backgroundShift 20s ease-in-out infinite;
}

@keyframes backgroundShift {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(-10px, -10px) scale(1.05);
  }
  66% {
    transform: translate(10px, 10px) scale(0.95);
  }
}
