/* ---------- RESET ---------- */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
  }
  
  body {
	font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
	color: #333;
	background-color: #f9fafb;
	line-height: 1.7;
  }
  table {
  border-collapse: separate; /* important ! sinon ça ne marche pas */
  border-spacing: 10px 5px;  /* 10px entre colonnes, 5px entre lignes */
}
  /* ---------- CONTAINERS ---------- */
  .container {
	max-width: 1100px;
	margin: 0 auto;
	padding: 1.5rem;
  }
  
  /* ---------- HEADER ---------- */
  .site-header {
	background-color: #ffffff;
	border-bottom: 1px solid #e0e0e0;
	box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  }
  
  .header-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
  }
  
  .site-header h1 {
	font-size: 2.5rem;
	color: #6d071a;
	font-weight: 600;
	text-transform: uppercase;
  }
  
  .site-header h2 {
	font-size: 1.1rem;
	color: #6d071a;
	font-weight: 400;
  }
  
  .site-header .logo {
	width: 80px;
	height: auto;
	border-radius: 8px;
  }
  
  /* ---------- NAVBAR ---------- */
  .navbar {
	background-color: #f00020;
  }
  .navbar-bis {
	background-color: #6d071a; /* sous-menu */
  }

  .navbar ul {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	list-style: none;
  }
  
  .navbar li a {
	display: block;
	padding: 0.9rem 1.2rem;
	color: #fff;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	transition: background-color 0.2s ease, color 0.2s ease;
  }

  .navbar li a:hover,
  .navbar li a.active {
	background-color: #6d071a;
  }

  .navbar-bis li a:hover,
  .navbar-bis li a.active {
	background-color: #41040f;
  }
  

  
/* Titre à gauche dans la navbar */
.brand-title {
	display: block;
	padding: 0.9rem 1.2rem;
	color: #fff;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	cursor: default;       /* pour montrer que ce n'est PAS un lien */
  }
  
  /* Empêche tout effet hover */
  .brand-title:hover {
	background-color: inherit !important;
	color: #fff !important;
  }

  /* ---------- MAIN ---------- */
  main {
	background-color: #fff;
	border-radius: 12px;
	box-shadow: 0 2px 10px rgba(0,0,0,0.05);
	margin-top: 2rem;
  }
  
  section {
	padding: 2rem;
	border-bottom: 1px solid #eee;
  }
  
  section:last-of-type {
	border-bottom: none;
  }
  
  h3 {
	font-size: 1.2rem;
	color: #000000;     /*  #f00020 */
	margin-bottom: 1rem;
	border-left: 4px solid #f00020;
	padding-left: 0.75rem;
  }

  h4 {
	font-size: 1.1rem;
	margin-top: 1.3em; /* espace avant le titre */
  }
  h5 {
	/* font-size: 1.1rem; */
	color: #FF0091;
	margin-top: 1.1em; /* espace avant le titre */
  }
  p {
	margin-bottom: 1rem;
	color: #444;
  }
  
  .committee-list {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 0.5rem 1rem;
	list-style: none;
  }
  
  .committee-list li {
	padding: 0.4rem 0;
	border-bottom: 1px solid #eee;
  }
  
  /* ---------- FOOTER ---------- */
  .site-footer {
	background-color: #FF00FF;
	text-align: center;
	padding: 1.5rem 0;
	margin-top: 3rem;
	color: #fff;
  }
  
  .site-footer img {
	width: 100px;
	margin: 0 0.5rem;
	vertical-align: middle;
	filter: brightness(0) invert(1);
  }
  
  /* ---------- RESPONSIVE ---------- */
  @media (max-width: 768px) {
	.header-content {
	  flex-direction: column;
	  text-align: center;
	}
  
	.navbar ul {
	  flex-direction: column;
	}
  
	.navbar li a {
	  padding: 0.8rem;
	}
  
	main {
	  margin-top: 1rem;
	}
  
	.site-footer img {
	  width: 80px;
	}
  }
  /*  LISTES */
  ul ul {
	margin-left: 20px; /* ou padding-left, selon l'effet voulu */
  }