/* RESET */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
  
}

/* CONTENEUR */
.container {
  max-width: 1100px;
  margin: auto;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.9);
}

h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: #666666;
  margin-bottom: 1.5rem;
  text-align: justify;
}

h2 {
  color: #cc0000;
  margin: 2rem 0 1rem;
  text-align: center;
}

p {
  margin-bottom: 1rem;
  text-align: justify;
}

.highlight {
  font-weight: bold;
  font-style: italic;
  color: #0000cc;
}

/* IMAGE AFFILIATION */
.hero-img {
  width: 300px;
  max-width: 100%;
  height: 50%;
  display: block;
  margin: 1.5rem auto;
}

/* SECTION STATUTS */

 .statuts img {
  max-width: 120px;
  margin: auto;
  display: block;
}

.statuts a {
  display: block;
  margin-bottom: 0.75rem;
  text-decoration: none;
  font-size: 1.1rem;
  color: #003366;
}

.statuts a:hover {
  text-decoration: underline;
}

/* TABLETTE */
@media (max-width: 768px) {
  .hero-img { width: 260px; }
}

/* MOBILE */
@media (max-width: 480px) {
  body { font-size: 15px; }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.3rem; }
  .hero-img { width: 220px; }
}
