h1,h2,h3,h4,h5,h6 {
	border: 1px lightblue solid !important;
}


:root{
  --font-title: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  --font-body: "Lato", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
}

h1, h2, h3, nav, .btn { font-family: var(--font-title); }
body { font-family: var(--font-body); }


/* Par défaut: site long */
[data-card] {
  margin-block: 4rem;
}

/* Quand JS est actif */
.js [data-card] {
  margin-block: 0;
}

.menu-link:focus-visible,
.submenu-item a:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 3px;
}

body {
	line-height: 1.6;
	color: #333;
	background-color: #f9f9f9;
}

.skip-link {
	position: absolute;
	top: 0;
	left: 0;
	transform: translateY(-120%);
	background: #000;
	color: #fff;
	padding: .5rem .75rem;
	z-index: 100;
	text-decoration: none;
	border-radius: 0 0 6px 6px;
}

.skip-link:focus,
.skip-link:focus-visible {
	transform: translateY(0);
}

.skip-link:focus-visible {
	transform: translateY(0);
	top: .5rem;
}

#shell {
	min-height: 100vh;
	display: grid;
	grid-template-columns: auto 1fr auto;
}

.site-header {
	height: 100vh;
	width: 350px;
	background-color: #110050;
	color: #fff;
	display: flex;
	flex-direction: column;
	/* justify-content: center; */
	/* align-items: center; */
	/* text-align: center; */
	padding: 1rem 1rem 0 1rem;
	box-shadow: 0 2px 6px rgba(0, 15, 56, 0.2);
}

.site-header .brand {
	margin-bottom: 2rem;
}

.brand-name {
	font-size: 1.5rem;
	font-weight: bold;
	margin: 0;
}

nav.site-nav {
	flex-grow: 1;
}

nav.site-nav ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

nav.site-nav ul li {
	margin-bottom: .5rem;
}

nav.site-nav ul li:last-child {
	margin-bottom: 0;
}

.menu-link,
.submenu-link{
	color: rgba(255, 255, 255, 0.8);
	text-decoration: none;
	font-size: 1.1rem;
	font-weight: 700;
	display: block;
	padding: .2rem;
	border-radius: 4px;
}

.submenu-link {
	font-size: 1rem;
	font-weight: 400;
	padding-left: 1.5rem;
}

.menu-link:hover,
.submenu-link:hover {
	background-color: #220080;
}

.menu-link:active							,
.submenu-link:active {
	background-color: #1e1e1e;
}

#content {
	background-color: #fffbf7;
	padding: 2rem;
}

section h1 {
	margin-bottom: 1.5rem;
}

section h2 {
	margin-bottom: .5rem;
}

.cards {
	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
	justify-content: space-between;
}

.card {
	background-color: #fff;
	border: 1px solid #ddd;
	border-radius: 8px;
	padding: 1rem;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
	width: calc(95% / 3);
	min-width: 300px;
}