/* RESET GLOBAL */

*,
*::before,
*::after {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

/* BASE */

html {
	font-size: 16px;
	scroll-behavior: smooth;
}

body {
	min-height: 100vh;

	display: flex;
	flex-direction: column;

	font-family: Arial, sans-serif;

	background: #ffffff;

	overflow-x: hidden;

	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
}

/* MEDIA */

img,
picture,
video,
canvas,
svg {
	display: block;
	max-width: 100%;
}

/* FORM */

input,
button,
textarea,
select {
	font: inherit;
}

/* MAIN */

main {
	flex: 1 0 auto;
	width: 100%;
}

/* FOOTER */

.pied {
	width: 100%;

	margin-top: auto;

	padding: 18px 16px;

	border-top: 1px solid rgba(229, 231, 235, 0.8);

	background: #ffffff;

	color: var(--texte-secondaire, #6b7280);
}

.pied-contenu {
	width: 100%;
	max-width: 1100px;

	margin: 0 auto;

	padding: 0 16px;

	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;

	text-align: center;
}

.pied-texte {
	font-size: 12px;
	line-height: 1.4;
	word-break: break-word;
}

.pied-liens {
	display: flex;
	flex-wrap: wrap;
	gap: 10px 14px;
	justify-content: center;
	align-items: center;
}

.pied-liens a {
	font-size: 12px;
	color: inherit;
	text-decoration: none;
	border-bottom: 1px solid transparent;
}

.pied-liens a:hover,
.pied-liens a:focus-visible {
	border-bottom-color: currentColor;
}

/* TABLET */

@media screen and (max-width: 768px) {

	.pied {
		padding: 16px 12px;
	}

	.pied-contenu {
		padding: 0 12px;
	}

	.pied-texte {
		font-size: 11px;
		line-height: 1.5;
	}

	.pied-liens a {
		font-size: 11px;
	}
}

/* MOBILE */

@media screen and (max-width: 480px) {

	html {
		font-size: 15px;
	}

	.pied {
		padding: 14px 10px;
	}

	.pied-contenu {
		padding: 0 10px;
		flex-direction: column;
		gap: 8px;
	}

	.pied-texte {
		font-size: 10px;
		line-height: 1.5;
	}

	.pied-liens a {
		font-size: 10px;
	}
}

/* PETITS TELEPHONES */

@media screen and (max-width: 320px) {

	.pied-texte {
		font-size: 9px;
	}
}
