/* ========================================
	Spécificités Bar-le-Duc
	======================================== */
:root {
	--primary-color: #1a365d;
	--primary-light: #2c5282;
	--secondary-color: #38b2ac;
	--accent-color: #ed8936;
	--text-color: #2d3748;
	--text-light: #718096;
	--background: #f7fafc;
	--white: #ffffff;
	--gradient-primary: linear-gradient(135deg, #1a365d 0%, #2c5282 100%);
	--gradient-accent: linear-gradient(135deg, #38b2ac 0%, #319795 100%);
	--shadow-sm: 0 1px 3px rgba(0,0,0,0.12);
	--shadow-md: 0 4px 6px rgba(0,0,0,0.1);
	--shadow-lg: 0 10px 25px rgba(0,0,0,0.15);
	--shadow-xl: 0 20px 40px rgba(0,0,0,0.2);
	--border-radius: 12px;
	--border-radius-lg: 20px;
	--transition: all 0.3s ease;
	--accent-10: rgba(237, 137, 54, .1);
	--accent-20: rgba(237, 137, 54, .2);
	--accent-60: rgba(237, 137, 54, .6);
	--accent-80: rgba(237, 137, 54, .8);
	--primary-10: rgba(26, 54, 93, .1);
	--text-muted: rgba(45, 55, 72, .5);
	--border-light: rgba(226, 232, 240, 1);
}

.site-branding {
	flex-direction: row;
	align-items: center;
	gap: 16px;
}

.site-logo {
	display: inline-flex;
	align-items: center;
}

.site-logo img {
	height: 46px;
	width: auto;
}

.site-eyebrow {
	font-size: 0.75rem;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	color: var(--text-light);
	margin-bottom: 4px;
}

.hero-actions {
	display: flex;
	gap: 14px;
	flex-wrap: wrap;
	margin-top: 28px;
}

.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 12px 22px;
	border-radius: 999px;
	font-weight: 600;
	background: var(--accent-color);
	color: var(--white);
	box-shadow: var(--shadow-md);
}

.button:hover {
	background: #dd6b20;
}

.button-secondary {
	background: transparent;
	color: var(--white);
	border: 1px solid rgba(255,255,255,0.45);
	box-shadow: none;
}

.button-secondary:hover {
	background: rgba(255,255,255,0.12);
}

.page-section {
	padding: 60px 0;
}

.further {
	background-color: var(--background);
	border-bottom: 1px solid var(--border-light);
	border-top: 1px solid var(--border-light);
}

.svg-stroke {
	fill: none;
	stroke: var(--primary-color);
	stroke-width: 32px;
}

.further svg {
	width: 32px;
	height: 32px;
	margin-right: 8px;
	margin-bottom: -6px;
	display: inline-block;
}

.footer-environment {
	color: rgba(255,255,255,0.7);
	font-size: 0.85rem;
	margin-top: 8px;
}

@media (max-width: 768px) {
	.hero-actions {
		flex-direction: column;
		align-items: stretch;
	}

	.site-header {
		flex-wrap: wrap;
	}

	.site-branding {
		flex-direction: row;
		align-items: center;
		flex: 1;
		order: 1;
	}

	.site-logo img {
		width: 42px;
		height: 42px;
		object-fit: cover;
	}

	.site-logo {
		width: 44px;
		height: 44px;
		flex: 0 0 44px;
	}

	.site-header .menu-toggle {
		margin-left: auto;
		order: 2;
	}

	.site-header .main-navigation {
		order: 3;
		width: 100%;
	}
}
