/*
Theme Name: Mon thème
Theme URI: 
Author: 
Author URI: 
Description: 
Requires at least: 6.7
Tested up to: 6.8
Requires PHP: 7.2
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: 
*/

/*
 * Link styles
 * https://github.com/WordPress/gutenberg/issues/42319
 */
a {
	text-decoration-thickness: 1px !important;
	text-underline-offset: .1em;
}

/* Focus styles */
:where(.wp-site-blocks *:focus) {
	outline-width: 1px;
	outline-style: dotted;
}

/*
 * Progressive enhancement to reduce widows and orphans
 * https://github.com/WordPress/gutenberg/issues/55190
 */
h1, h2, h3, h4, h5, h6, blockquote, caption, figcaption, p {
	text-wrap: pretty;
}

[x-cloak] {
  display: none !important;
}

h3 em {
	font-size: 1rem;
}

header {
	height: 0;
}

.site-header-container {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.menu-primary {
	display: none;

	@media (min-width: 1180px) {
  	display: flex;
		list-style-type: none;

		li {
			margin-left: 1rem;
			margin-right: 1rem;
		}
	}
}

label {
	font-size: var(--wp--preset--font-size--medium);
}

form input,
form select,
form textarea {
	width: 100%;
	height: 40px;
	font-size: 1.125rem;
	padding: 0.5rem;
  box-sizing: border-box;
	background-color: white;
	border: 1px solid white;
	border-radius: 1rem;
}
form textarea {
	height: 150px;
}
form input[type=submit]{
	background-color: var(--wp--preset--color--accent-2);
	width: auto;
}