:root {
	--color-border-light: rgb(230, 230, 230);
	--color-border-lighter: rgb(240, 240, 240);
	--text-color: rgb(30, 30, 30);
	--text-color-light: rgb(45, 45, 45);
	--sky-500: rgb(14, 165, 233);

	--shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
	--shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
	--shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
	--shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);

	--font-weight-light: 300;
	--font-weight-medium: 400;
	--font-weight-bold: 500;
	--font-weight-bolder: 600;

	/** Distance nécessaire pour ne pas passer en dessous de la barre du haut */
	--nav-bar-height-shift: 110px;

	--font-size-h1: clamp(2rem, 4vw, 2.5rem);
	--font-size-h2: clamp(1.75rem, 3.5vw, 2.125rem);
	--font-size-h3: clamp(1.5rem, 3vw, 1.75rem);
	--font-size-h4: clamp(1.25rem, 2.5vw, 1.375rem);
	--font-size-h5: clamp(1rem, 2vw, 1.125rem);
	--font-size-h6: clamp(0.875rem, 1.75vw, 1rem);

	--moreno-blue: rgb(33, 122, 176);
	--moreno-blue-light: rgb(21, 154, 236);
	--moreno-gray: rgb(85, 85, 87);
}

* {
	font-family: system-ui;
}

.full-container {
	width: 100%;
	height: 100%;
}

html,
body {
	min-height: 100dvh;
}

body {
	display: flex;
	flex-direction: column;
}

h1 {
	color: var(--moreno-blue);
	font-weight: 700;
}

a {
	color: var(--moreno-blue);
	font-weight: var(--font-weight-medium);
}

h1,
.h1 {
	font-size: var(--font-size-h1);
}

h2,
.h2 {
	font-size: var(--font-size-h2);
}

h3,
.h3 {
	font-size: var(--font-size-h3);
}

h4,
.h4 {
	font-size: var(--font-size-h4);
}

h5,
.h5 {
	font-size: var(--font-size-h5);
}

h6,
.h6 {
	font-size: var(--font-size-h6);
}

body {
	font-weight: var(--font-weight-light);
}

header,
nav {
	font-weight: var(--font-weight-medium);
}

strong {
	font-weight: var(--font-weight-medium);
}

form input {
	scroll-margin-top: calc(var(--nav-bar-height-shift) + 32px);
}

.slightly-bold {
	font-weight: var(--font-weight-medium);
}

.main-title {
	font-weight: var(--font-weight-medium);
	max-width: 100%;
	min-width: 0;
	margin: 0 auto;
	padding: 32px 16px 0 16px;
	text-align: center;
	text-wrap: wrap;
	overflow-wrap: break-word;
	overflow: hidden;
	max-width: 900px;
}

.section-title {
	font-weight: var(--font-weight-medium);
	padding-bottom: 8px;
	margin: 28px 0 24px 0;
	border-bottom: solid 1px var(--color-border-light);
	font-size: var(--font-size-h4);
	width: 100%;
}

.sub-title {
	font-weight: var(--font-weight-medium);
	padding-bottom: 6px;
	margin: 24px 0 16px 0;
	border-bottom: solid 1px var(--color-border-light);
	font-size: var(--font-size-h5);
	width: 100%;
}

.flex-column-container {
	display: flex;
	flex-direction: column;
	align-items: center;
	flex-grow: 1;
}

.adaptative-container {
	display: flex;
	flex-direction: column;
	align-items: start;
	gap: 6px;
}

@media (min-width: 576px) {

	.adaptative-container {
		flex-direction: row;
		align-items: center;
	}
}

@media (min-width: 768px) {
	html {
		font-size: 16px;
	}
}

.pricing-header {
	padding-top: 3rem !important;
}

.card-deck .card {
	min-width: 220px;
}

.main-container {
	display: flex;
	flex-direction: column;
	gap: 48px;
	align-items: center;
	color: var(--text-color);
	scroll-snap-type: y mandatory;
}

.header-image-container {
	position: relative;
	width: 100%;
	text-align: center;
	height: clamp(512px, 30vw, 660px);
	scroll-snap-align: start;
	box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
}

.home-background {
	filter: brightness(65%);
	width: 100%;
	height: 100%;
	box-shadow: inset 0 0 150px 45px rgb(0 0 0 / 0.5);
	/* font gris en attendant le chargement de l'image */
	background-color: rgb(150, 150, 150);
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
	min-height: 400px;
}

.header-content-container {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	position: absolute;
	color: white;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	gap: clamp(1rem, 2vw, 6rem);
	padding: 32px;
}

.header-text,
.header-title {
	text-shadow: 0px 0px 45px black;
	color: white;
	font-weight: var(--font-weight-bold);
	font-size: clamp(1.25rem, 3vw, 1.75rem);
	margin: 0;
}

.header-title {
	font-weight: var(--font-weight-bolder);
	font-size: clamp(2rem, 5vw, 2.5rem);
}

.standard-button {
	height: fit-content;
	width: fit-content;
	padding: 6px 12px;
	border-radius: 64px;
	border: none;
	outline: none;
	background-color: var(--moreno-blue);
	color: white;
	font-size: 1.1rem;
	font-weight: 500;
	box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
	scale: 1;
	transition: all 250ms;
}

.standard-button:hover {
	color: white;
	box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
	scale: 0.95;
}

.standard-button:focus {
	scale: 0.95;
	background-image: linear-gradient(rgb(255 255 255/10%) 0 0);
	background-blend-mode: lighten;
}

.standard-button:disabled {
	pointer-events: none;
	filter: grayscale();
}

.feedback {
	background-color: var(--moreno-blue);
	color: white;
	padding: 2px 5px;
	border-radius: 4px;
	border-color: black;
	display: block;
	-moz-transform: translateX(-50%) translateY(-50%) rotate(-90deg);
	-webkit-transform: translateX(-50%) translateY(-50%) rotate(-90deg);
	transform: translateX(-50%) translateY(-50%) rotate(-90deg);

}

.feedback:hover {
	text-decoration: none;
	color: black;
	font-weight: bold;
}

#mybutton {
	position: fixed;
	top: 40%;
	left: 11px;
	z-index: 1000;
}

/* Pagination */

.pagination {
	display: flex;
	align-items: center;
	justify-content: center;
	list-style: none;
	padding: 8px;
	gap: 6px;
	margin-top: 8px;
}

.page-item {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 6px;
	cursor: pointer;
	border: solid 1px var(--color-border-light);
	border-radius: 64px;
	height: 32px;
	width: 32px;
	box-shadow: var(--shadow);
	transition: all 300ms;
}

.page-item a:hover {
	color: initial;
}

.page-item:hover {
	box-shadow: var(--shadow-md);
}

.page-item.disabled {
	border: none;
	box-shadow: none;
	cursor: default;
}