@charset "utf-8";
	
	.menu1 ul {
		list-style: none;
		padding: 0;
		margin: 0;
		display: flex;
		gap: 10px;
	}

	.menu1 ul li {
		/* Couleurs alternées : via classes ajoutées dynamiquement ou manuellement */
	}

	.menu1 ul li:nth-child(odd) a {
		background-color: #FF4500; /* orange vif */
		color: #2e2e2e; /* texte anthracite */
	}

	.menu1 ul li:nth-child(even) a {
		background-color: #2e2e2e; /* fond anthracite */
		color: #FFFFFF; /* texte blanc */
	}

	.menu1 ul li a {
		display: block;
		padding: 8px 16px;
		text-decoration: none;
		font-weight: bold;
		border-radius: 4px;
		transition: background-color 0.3s ease, color 0.3s ease;
	}

	.menu1 ul li a:hover {
		background-color: red;
		/* color: white; !important  pour s'assurer que le texte reste lisible */
		color:#FFFF00;
	}
	
	@media (max-width: 600px) {
		.menu1 ul {
			flex-direction: column;
			align-items: center;
		}
	}