body {
	margin: 0;
	padding: 0;
	background-color: var(--primary-dark);
}
.landing-hero {
	background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../assets/background-city-gps-sun.png');
	background-size: cover;
	background-position: center 40%; /* Ajuste la position pour une meilleure mise en avant */
	background-repeat: no-repeat;
	color: white;
	text-align: center;
	height: 100vh;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
	overflow: hidden;
}

.landing-hero h1 {
	font-size: 3.5em;
	font-weight: 700;
	margin-bottom: 0.3em;
}

.landing-hero p {
	font-size: 1.3em;
	font-weight: bold;
	opacity: 0.9;
	line-height: 1.5;
	margin-bottom: 2em;
}

.landing-hero a {
	background: #fff;
	color: #7b00d4;
	font-weight: 600;
	padding: 0.7em 2em;
	border-radius: 8px;
	text-decoration: none;
	font-size: 1.1rem;
	box-shadow: 0 2px 8px #0002;
}

.landing-hero a:hover {
	background-color: #ca82fe;
	color: white;
	font-weight: bolder;
	transform: scale(1.05);
}

.badge {
	display: inline-block;
	background-color: var(--accent-color);
	color: var(--primary-dark);
	padding: 4px 10px;
	border-radius: 5px;
	font-size: 0.8em;
	font-weight: 600;
	vertical-align: middle;
	margin-left: 10px;
}

.doc-section {
	max-width: 100vw;
	padding: 5%;
	background-color: var(--card-background);
	border-radius: 12px;
	box-shadow: 0 2px 10px var(--shadow-light);
}

.doc-section h2 {
	text-align: center;
	margin-bottom: 1em;
}

.doc-section h3 {
	color: var(--primary-color);
	margin-top: 1.5em;
	margin-bottom: 0.8em;
	border-bottom: 1px solid var(--border-color);
	padding-bottom: 5px;
}

.doc-section pre {
	background-color: #f4f7fa;
	border: 1px solid #e0e6ec;
	border-left: 4px solid var(--primary-color);
	padding: 15px;
	border-radius: 8px;
	overflow-x: auto;
	font-family: 'Fira Code', 'Cascadia Code', monospace;
	font-size: 0.9em;
	line-height: 1.4;
	color: #444;
}

.doc-section code {
	background-color: #f0f0f0;
	padding: 2px 4px;
	border-radius: 4px;
	font-family: 'Fira Code', 'Cascadia Code', monospace;
	color: var(--primary-dark);
}

.doc-section table {
	width: 100%;
	border-collapse: collapse;
	margin-top: 1.5em;
	font-size: 0.95em;
}

.doc-section th,
.doc-section td {
	border: 1px solid var(--border-color);
	padding: 12px;
	text-align: left;
}

.doc-section th {
	background-color: var(--background-color);
	font-weight: 600;
	color: var(--primary-dark);
}

.doc-section tr:nth-child(even) {
	background-color: #f9fbfc;
}

.doc-section ul {
	list-style-type: disc;
	padding-left: 25px;
	margin-top: 1em;
}

.doc-section li {
	margin-bottom: 0.8em;
}

/* Responsive adjustments */
@media (max-width: 768px) {
	.landing-hero h1 {
		font-size: 2.5em;
	}
	.landing-hero p {
		font-size: 1.1em;
	}
	.doc-section {
		margin: 30px 15px;
		padding: 20px;
	}
	.doc-section table {
		display: block;
		overflow-x: auto;
		white-space: nowrap;
	}
}
