/*
Theme Name: OceanWP Child Theme
Theme URI: https://oceanwp.org/
Description: OceanWP WordPress theme. Sample child theme.
Author: OceanWP
Author URI: https://oceanwp.org/
Template: oceanwp
Version: 1.0
*/

/* Test de déploiement automatique */

/* Parent stylesheet should be loaded from functions.php not using @import */

/* ==================================================
   TYPOGRAPHIE
   ================================================== */

/* Polices
   Import / Font-face
   Font-family global
*/

/* Titres
   h1
   h2
   h3
   h4
   h5
   h6
*/

/* Textes
   Paragraphes
   Textes secondaires
   Small / légendes
*/

/* Liens
   États : normal / hover / active / visited
		/* Menu button disabled – OceanWP */
		.menu-en-construction {
			opacity: 0.4;
			cursor: not-allowed;
			pointer-events: none;
		}

		/* Bonus : enlever effets hover OceanWP */
		.menu-en-construction:hover {
			background: none !important;
			color: inherit !important;
		}
		
		/* Menu item - à venir (OceanWP fix) */
		.menu-en-construction > a {
		  display: inline-flex;
		  align-items: center;
		  gap: 6px;
		}

		.menu-en-construction > a::after {
		  content: "(À Venir)";
		  line-height: 1;
		  padding: 2px 6px;
		  border-radius: 10px;
		  white-space: nowrap;
		}
/* Fin de CSS */ 