
body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #f9fdfc;
  color: #333;
}

header, footer {
  background-color: #00695c;
  color: white;
  padding: 1em;
  text-align: center;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1em;
}

.nav-links a {
  color: white;
  text-decoration: none;
}

.hero {
  background: #e0f2f1;
  text-align: center;
  padding: 3em 1em;
}

.hero h1 {
  font-size: 2.5em;
  color: #004d40;
}

.btn {
  background-color: #00796b;
  color: white;
  padding: 0.7em 1.2em;
  text-decoration: none;
  margin: 0.5em;
  border-radius: 5px;
}

.btn.secondary {
  background-color:  #00796b;
}

.missions, .formations, .temoignages, .actus {
  padding: 2em 1em;
  text-align: center;
}

.card {
  background: white;
  padding: 1em;
  margin: 1em;
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

footer {
  margin-top: 2em;
}

/* Style de base pour le logo */
.logo {
  font-weight: bold;
  font-size: 1.8em; /* légèrement plus gros */
}

/* Menu de navigation */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1em;
  flex-wrap: wrap;
}

.nav-links {
  display: flex;
  gap: 1em;
  list-style: none;
}

.burger {
  display: none;
  font-size: 2em;
  cursor: pointer;
}

/* Responsive pour les petits écrans */
@media (max-width: 768px) {
  .nav-links {
    flex-direction: column;
    width: 100%;
    display: none;
  }

  .nav-links.active {
    display: flex;
  }

  .burger {
    display: block;
  }
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1em;
  justify-content: center;
  margin-top: 1em;
}

.btn {
  padding: 0.8em 1.2em;
  font-size: 1em;
  text-align: center;
  white-space: nowrap; /* Empêche le texte de passer à la ligne */
  flex: 1 1 auto;
  max-width: 250px;
}

.btn.secondary {
  background-color:  #00796b;
  color: white;

}

@media (max-width: 480px) {
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    max-width: 90%;
  }
}
