  /* Réinitialisation de quelques styles par défaut */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333;
}

/* Barre Fédération (top-bar) */
.federation-bar {
  background-color: #ffffff; /* fond blanc */
  color: #3399cc; /* texte bleu clair */
  font-size: 14px;
  padding: 5px 0;
  border-bottom: 1px solid #ccc;
}

.federation-container {
  display: flex;
  justify-content: flex-start; /* aligne à gauche */
  align-items: center;
}

.federation-bar a {
  color: #3399cc; /* bleu clair */
  text-decoration: none;
  font-weight: bold;
}

.federation-bar a:hover {
  text-decoration: underline;
}

/* Conteneur centralisé */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Header */
header {
  background: #fff;
  border-bottom: 1px solid #ddd;
}
.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
}
.logo img {
  max-height: 100px;
}
nav ul {
  list-style: none;
  display: flex;
}
nav ul li {
  margin-left: 20px;
}
nav ul li a {
  text-decoration: none;
  color: #333;
  font-weight: bold;
}

/* Slider */
.slider {
  width: 100%;
  height: 350px; /* Hauteur fixe raisonnable */
  overflow: hidden;
  position: relative;
}

.slider .slide {
  width: 100%;
  height: 100%;
}

.slider .slide img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Recadre l’image comme sur le site original */
  display: block;
}

@media (max-width: 768px) {
  .slider {
    height: 200px;
  }
}

/* Structure du menu déroulant */
.main-menu .dropdown {
  position: relative;
}

.main-menu .submenu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  border: 1px solid #ccc;
  padding: 0;
  margin: 0;
  list-style: none;
  min-width: 200px;
  z-index: 1000;
}

.main-menu .submenu li {
  border-bottom: 1px solid #eee;
}

.main-menu .submenu li:last-child {
  border-bottom: none;
}

.main-menu .submenu a {
  display: block;
  padding: 10px 15px;
  color: #004a80; /* Bleu clair du thème */
  text-decoration: none;
}

.main-menu .submenu a:hover {
  background: #f0f0f0;
}

/* Affichage au survol */
.main-menu .dropdown:hover .submenu {
  display: block;
}


/* Contenu principal */
.content {
  padding: 40px 0;
}

/* Section Actualités */
.news h2 {
  font-size: 2em;
  margin-bottom: 20px;
  border-bottom: 2px solid #ddd;
  padding-bottom: 10px;
}
.news-item {
  display: flex;
  margin-bottom: 20px;
}
.news-item img {
  width: 200px;
  height: auto;
  margin-right: 20px;
}
.news-item .news-content h3 {
  margin-bottom: 10px;
}
.news-item .news-content p {
  margin-bottom: 10px;
}
.news-item .news-content a {
  color: #0066cc;
  text-decoration: none;
  font-weight: bold;
}

/* Blocs d'information */
.info-blocks {
  display: flex;
  justify-content: space-between;
  margin-top: 40px;
}
.info-blocks .block {
  width: 32%;
  padding: 20px;
  background: #f9f9f9;
  border: 1px solid #ddd;
}
/* Presentation */

.presentation {
  padding: 40px 20px;
  max-width: 800px;
  margin: 0 auto;
}

.presentation h2 {
  font-size: 28px;
  margin-bottom: 20px;
  text-align: center;
}

.presentation p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 15px;
}

/* Footer */
footer {
  background: #333;
  color: #fff;
  padding: 10px 0;
}
.footer-container p {
  text-align: left;
  margin-bottom: 10px;
}
.footer-container nav ul {
  list-style: none;
  display: flex;
  justify-content: left;
}
.footer-container nav ul li {
  margin: 0 10px;
}
.footer-container nav ul li a {
  color: #fff;
  text-decoration: none;
}
