/* ../styles/base.css
	Last update: 2026-01-09 - Modern Corporate Design */

/* --- STYLES DE BASE POUR LE TEXTE ET LES PRINCIPAUX ÉLÉMENTS --- */

/* Désactivation du mode sombre */
* {
	color-scheme: light !important;
}

@media (prefers-color-scheme: dark) {
	* {
		color-scheme: light !important;
	}
}

/* Page */
html {
	font-size: 100%;
	scroll-behavior: smooth;
	color-scheme: light !important;
}
body {
	margin: 0;
	padding: 0;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Inter", "Roboto", "Helvetica Neue", Arial, sans-serif;
	font-size: 15px;
	line-height: 1.6;
	color: #2c3e50 !important;
	background: #404040 !important;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	text-rendering: optimizeLegibility;
	color-scheme: light !important;
}

/* Titres */
h1, h2, h3, h4, h5, h6 {
	margin: 1em 0 .5em 0;
	font-weight: 600;
	letter-spacing: -0.02em;
}
h1, h2 {
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Inter", sans-serif;
}
h1 {
	font-size: 2.5em;
	font-style: normal;
	font-weight: 700;
}
h2 {
	font-size: 2em;
}
h3 {
	font-size: 1.5em;
	font-weight: 600;
	color: #34495e;
}
h4 {
	font-size: 1.2em;
}

/* Listes */
ul, ol {
	margin: .75em 0 .75em 24px;
	padding: 0;
}
ul {
	list-style: none;
}
li {
	margin: 0;
	padding: 0;
}

/* Paragraphes */
p {
	margin: .75em 0;
}
li p, blockquote p {
	margin: .5em 0;
}

/* Citations */
blockquote, q {
	font-size: 1.1em;
	font-style: italic;
	font-family: Georgia, "Bitstream Vera Serif", Norasi, serif;
}
blockquote {
	margin: .75em 0 .75em 24px;
}
cite {
	font-style: italic;
}

/* Liens */
a {
	color: #ff7e54;
	text-decoration: none;
	transition: all 0.3s ease;
}
a:hover, a:focus {
	color: #ff6533;
	text-decoration: none;
}
a img {
	border: none;
}

/* Divers éléments de type en-ligne */
em {
	font-style: italic;
}
strong {
	font-weight: 600;
	color: #2c3e50;
}


/* --- STYLES POUR CERTAINS CONTENUS DES GABARITS --- */

pre, code {
	font-size: 100%;
	font-family: "SF Mono", "Monaco", "Inconsolata", "Fira Code", "Droid Sans Mono", "Source Code Pro", monospace;
}
pre {
	width: 90%;
	overflow: auto;
	overflow-y: hidden;
	margin: .75em 0;
	padding: 16px;
	background: #f8f9fa;
	color: #495057;
	border-radius: 8px;
	border: 1px solid #e9ecef;
}
pre strong {
	font-weight: 600;
	color: #212529;
}
#copyright {
	margin: 20px 0 5px 0;
	text-align: center;
	font-size: .85em;
	color: rgba(255, 255, 255, 0.7);
	font-weight: 400;
}
#copyright a {
	color: rgba(255, 255, 255, 0.9);
	text-decoration: none;
	transition: color 0.3s ease;
}
#copyright a:hover, #copyright a:focus {
	color: #ffffff;
}
