/* RESET SIMPLE */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  color: #222;
  background: #ffffff;
}

/* CONTAINER GLOBAL */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

/* TITRES */
h1, h2, h3 {
  line-height: 1.3;
  margin-top: 0;
}

h1 {
  font-size: 2rem;
}

h2 {
  font-size: 1.6rem;
  margin-top: 40px;
}

p {
  margin-bottom: 1rem;
}

/* LIENS */
a {
  color: #2e7d32;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* NAVIGATION */
.main-nav {
  border-bottom: 1px solid #eee;
  background: #fff;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 0;
}

.logo-link {
  font-weight: 600;
  font-size: 1.2rem;
}

.nav-menu {
  list-style: none;
  display: flex;
  gap: 25px;
  margin: 0;
  padding: 0;
}

.nav-menu li {
  display: inline-block;
}

.nav-menu a {
  font-weight: 500;
}

/* MENU MOBILE */
.nav-toggle {
  display: none;
  font-size: 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
}

/* RESPONSIVE */
@media (max-width: 768px) {

  .nav-menu {
    display: none;
    flex-direction: column;
    gap: 15px;
    margin-top: 15px;
  }

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

  .nav-toggle {
    display: block;
  }

  .nav-container {
    flex-wrap: wrap;
  }
}
