body {
  font-family: "Poppins", sans-serif;
  margin: 0;
  background: #fafafa;
  color: #222;
  line-height: 1.6;
}

nav {
  position: fixed;
  top: 20px;
  left: 20px;
  z-index: 1000;
}

.logo {
  display: inline-block;
  text-decoration: none;
}

.logo img {
  width: 120px;
  height: auto;
  border-radius: 5px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.4s ease;
  opacity: 0;
  transform: translateY(-20px) scale(0.9);
}

/* === Effet au survol === */
.logo img:hover {
  transform: scale(1.1) rotate(3deg);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  filter: brightness(1.1);
}

/* === Apparition fluide au chargement === */
.logo img.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.conf-header {
  text-align: center;
  background: linear-gradient(135deg, #004aad, #007bff);
  color: white;
  padding: 60px 20px;
}

.conf-header h1 {
  margin-bottom: 10px;
  font-size: 2.3rem;
}

.conf-container {
  max-width: 900px;
  margin: 40px auto;
  padding: 0 20px;
}

.conf-section {
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  padding: 25px;
  margin-bottom: 25px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.conf-section h2 {
  color: #004aad;
  margin-top: 0;
}

.conf-section a {
  color: #007bff;
  text-decoration: none;
}

.conf-section a:hover {
  text-decoration: underline;
}

.conf-footer {
  background: #004aad;
  color: white;
  text-align: center;
  padding: 15px 0;
  font-size: 0.9rem;
}

.fade-in {
  opacity: 0;
  transform: translateY(30px);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}/*# sourceMappingURL=confidentiel.css.map */