/* Définitions générales */

/* Variables globales */
:root {
  --orange: #C2703E;
  --orange-fonce: #a55d33;
  --bleu: #2E5A7C;
  --fond: #f5f0eb;
  --text: #333;
  --text-secondary: #rgba(172, 180, 201,0.7);
  --font-main: 'Quicksand', sans-serif;
}

html,
body {
	height: 100%;
	margin: 0;
	padding: 0;
}

body {
	display: flex;
	flex-direction: column;
	min-height: 100vh;
	background-color: rgb(172, 180, 201);
}

/* Textes */
body, p {
	font-family: var(--font-main);
  	color: var(--text);
	font-size: 15px;
	line-height: 20px;
	font-weight: 200;
}

p {
	margin-bottom: 8px;
	margin-top: 8px;
}

a {
  color: var(--orange);
  text-decoration: none;
}

a:hover {
  color: var(--orange-fonce);
}

h1{
	font-size: 25px;
	font-family: var(--font-main);
  	font-weight: 600;
	text-transform: uppercase;

	margin-top: 0px;
	margin-bottom: 2px;
}

#hero{
	/* height: 900px; */
	max-height: 650px;
  	color: #f5f0eb;
  	
  	text-align: center;
  	background-image: url("../images/velo3.jpg");
  	background-size: cover;
  	background-position: bottom;
	padding-top: 400px !important;
}

#hero > p {
		color: var(--fond);
}

legend {
	font-size: smaller;
	font-style: italic;
	margin-bottom: 0;
}

#section_accueil {
	display: flex;
	align-items: center;
	gap: 30px;
	padding: 20px 60px;
}

#tableau_donnees {
	display: flex;
	flex-direction: column;
}

article {
	flex: 1;
}

/* ---- Navbar ---- */
.navbar {
  font-family: var(--font-main);
  padding: 10px 90px;
}

.navbar-brand {
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--orange) !important;
}

.navbar .nav-link {
  font-weight: 500;
  color: var(--text);
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
  color: var(--orange);
}

footer {
	background: #464646;
	color: #fff !important;
	padding: 10px 10px !important;
	font-size: 0.7rem;
}

footer ul{
	padding: 0px 30px;
	margin-bottom: 0px;
}

footer p {
	padding: 0px 60px;
	font-size: 0.7rem;
}

footer a, footer p {
  color: #ece2e2 !important;
  margin: 0px;
}

footer a:hover {
  color: #f09d5a !important;
}


#map_container {
	flex: 1;
	padding: 0px;
}

/* Conteneur carte */
#mapid {
	height: 100%;
	width: 100%;

	margin-left: auto;
	margin-right: auto;

	border-radius: 4px;

	background-color: #AF00FF;
	background-image: linear-gradient(332deg, #009FFF 0%, #AF00FF 100%);

	font-family: Arial, Helvetica, sans-serif;
	color: #000;
}
/* Carte */
.label-departement {
    background: transparent;
    border: none;
    box-shadow: none;
    font-family: var(--font-main);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #7a6540;
    text-shadow: 1px 1px 2px rgba(255,255,255,0.8), -1px -1px 2px rgba(255,255,255,0.8);
    pointer-events: none;
}

.label-departement::before {
    display: none;
}
/* minimap*/
#minimapid {
	height: 200px;
	width: 300px;

	margin-left: auto;
	margin-right: auto;

	border-radius: 4px;

	background-color: #AF00FF;
	background-image: linear-gradient(332deg, #009FFF 0%, #AF00FF 100%);

	font-family: Arial, Helvetica, sans-serif;
	color: #000;
}

/* tableau */
.table-section {
	padding: 40px 0;
}

.table-section h2 {
  margin-bottom: 25px;
  font-size: 1.8rem;
}

/* .table-section .form-select {
  max-width: 350px;
  font-family: var(--font-main);
} */

.table-section table {
  font-family: var(--font-main);
  font-size: 0.95rem;
}

.table-section table thead tr th div {
  background: var(--bleu);
  color: #009FFF;
  font-family: var(--font-main);
}

.table-section .table thead th {
  font-weight: 600;
  border: none;
  padding: 12px 15px;
}

.table-section .table tbody td {
  padding: 10px 15px;
  vertical-align: middle;
}

