/* Styles généraux */
body {
  font-family: Arial, sans-serif;
  margin: 0;
}

/* Barre de navigation */
.navbar {
  background-color: #333;
  color: white;
  padding: 10px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Liens de navigation */
.nav-links {
  display: flex;
  gap: 20px;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-size: 16px;
}

/* Menu burger */
.burger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.burger div {
  width: 25px;
  height: 3px;
  background-color: white;
  margin: 4px 0;
  transition: 0.3s;
}

/* Styles spécifiques pour mobile */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    background-color: #333;
    width: 100%;
    position: absolute;
    top: 60px;
    left: 0;
    padding: 10px 0;
    border-top: 2px solid #fdd835;
  }

  .nav-links a {
    padding: 10px 20px;
    font-size: 18px;
    border-bottom: 1px solid #444;
  }

  .nav-links.active {
    display: flex;
  }

  .burger {
    display: flex;
    flex-direction: column;
    gap: 4px;
  }

  .burger div {
    width: 20px;
    height: 2.5px;
  }
}

/* Logo */
.Logo {
  position: relative;
  width: 80px;
  height: 80px;
  border-top: 15px solid;
}

/* Liens */
a {
  color: #0066cc; /* Bleu standard */
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

a:hover {
  color: #ff6600; /* Couleur orange au survol */
  text-decoration: underline;
}

/* Titres */
h2 {
  text-align: center;
  color: #0ea099;
  margin-top: 30px;
}

/* Section de présentation */
.resume {
  background-color: white;
  margin: 30px auto;
  padding: 20px;
  border-radius: 10px;
  max-width: 900px;
  box-shadow: 0 2px 10px rgb(0, 0, 0);
}

/* Animation */
.fade-in {
  opacity: 0;
  animation: fadeIn 2s ease-in forwards;
}

.slide-up {
  transform: translateY(50px);
  opacity: 0;
  animation: slideUp 1.5s ease-out forwards;
  animation-delay: 0.5s;
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

@keyframes slideUp {
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Pied de page */
footer {
  background-color: #333;
  color: white;
  padding: 15px 0;
  text-align: center;
  font-size: 16px;
  margin-top: 40px;
  border-top: 3px solid #fdd835;
  box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.075);
}









