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

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: linear-gradient(135deg, #e6f0fa, #c0d9f1);
  color: #333;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.maintenance-container {
  text-align: center;
  padding: 2rem;
  max-width: 600px;
  margin: auto;
  background: #ffffffc8;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(8px);
  animation: fadeInUp 1s ease forwards;
  opacity: 0;
  transform: translateY(40px);
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.logo {
  width: 120px;
  margin-bottom: 1rem;
  animation: zoomIn 0.8s ease forwards;
  opacity: 0;
}

@keyframes zoomIn {
  to {
    opacity: 1;
    transform: scale(1);
  }
  from {
    transform: scale(0.8);
    opacity: 0;
  }
}

/* Icône de construction animée */
.icon-container {
  font-size: 3rem;
  animation: bounce 2s infinite ease-in-out;
  margin-bottom: 1rem;
}

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

h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #00528e;
  animation: fadeIn 1.2s ease forwards;
  opacity: 0;
}

p {
  font-size: 1rem;
  color: #444;
  margin-bottom: 2rem;
  animation: fadeIn 1.5s ease forwards;
  opacity: 0;
}

.btn {
  display: inline-block;
  padding: 0.6rem 1.4rem;
  font-size: 1rem;
  background-color: #0070c0;
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  transition: background 0.3s ease, transform 0.2s ease;
  animation: fadeIn 2s ease forwards;
  opacity: 0;
}

.btn:hover {
  background-color: #005a9e;
  transform: translateY(-2px);
}

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