/* Style minimal moderne */
:root {
	--accent: #f2c94c;
	--bg: #ffffff;
	--muted: #666
}

* {
	box-sizing: border-box
}

body {
	font-family: Inter, system-ui, Arial, sans-serif;
	margin: 0;
	color: #222;
	background: var(--bg)
}

.section-divider {
	width: 100%;
}

.divider-img {
	width: 100%;
	height: auto;
	object-fit: cover;
	box-shadow: 0 6px 22px rgba(0, 0, 0, 0.15);
}

.home {
	width: 700px;
	margin: 5em auto;
}

.container {
	max-width: 100%;
	width: 100%;
	margin: 0 auto;
	padding: 1em;
}

.site-header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 999;
	background: rgba(0, 0, 0, 0.6);
}

.hero1 {
	height: 100vh;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
}

.hero1::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.45);
	/* Ajuste l'opacité ici */
	z-index: 0;
}

.hero-content {
	position: relative;
	z-index: 1;
	text-align: center;
}

.hero-content>p {
	font-size: x-large;
}

.services {
	padding: 30px 20px;
	background: #f7f7f7;
}

/* Icônes au-dessus du titre */
.card-icon {
	margin-bottom: 12px;
}

/* Animation fade-in */
.fade-in {
	opacity: 0;
	transform: translateY(30px);
	transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in.visible {
	opacity: 1;
	transform: translateY(0);
}

.section-title {
	text-align: center;
	font-size: 2.4rem;
	margin-bottom: 10px;
	font-weight: 700;
}

.product-title {
	text-align: center;
	margin-bottom: 10px;
	font-weight: 700;
}

.section-subtitle {
	text-align: center;
	font-size: 1.2rem;
	color: #666;
	margin-bottom: 40px;
}

.elegant-card {
	background: #fff;
	padding: 28px;
	border-radius: 18px;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.4);
	backdrop-filter: blur(4px);
	transition: all 0.3s ease;
	text-align: center;
}

.elegant-card h3 {
	font-size: 1.4rem;
	margin-bottom: 12px;
	font-weight: 600;
}

.elegant-card p {
	color: #555;
	line-height: 1.55;
}

.elegant-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 12px 28px rgba(0, 0, 0, 0.13);
}

.hero-img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	/* image couvrira tout le header */
	z-index: -1;
}

.main-nav {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 1rem;
}

.main-nav ul.menu {
	display: flex;
	list-style: none;
	gap: 1.5rem;
	margin: 0;
	padding: 0;
}

.main-nav ul.menu li a {
	color: #fff;
	text-decoration: none;
	font-weight: bold;
}

/* --- Menu sticky --- */
/*
.site-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(0, 0, 0, 0.5);
}
*/
/* --- Hamburger --- */
.hamburger {
	display: none;
	/* caché sur desktop */
	flex-direction: column;
	gap: 5px;
	background: none;
	border: none;
	cursor: pointer;
}

.hamburger span {
	display: block;
	width: 25px;
	height: 3px;
	background: #fff;
	border-radius: 2px;
}

.header-inner {
	position: fixed;
	/* le menu reste visible */
	top: 0;
	left: 0;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 1rem 2rem;
	z-index: 1000;
	/* au-dessus du reste */
	background: rgba(0, 0, 0, 0.5);
}

.logo img {
	height: 56px;
	width: auto;
}

.main-nav a {
	color: #fff;
	margin: 0 10px;
	text-decoration: none
}

.btn {
	background: var(--accent);
	padding: 10px 14px;
	border-radius: 8px;
	text-decoration: none;
	color: #111
}

.hero {
	display: flex;
	gap: 20px;
	padding: 40px 0
}

.hero-media img {
	max-width: 420px;
	border-radius: 12px
}

.grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 16px
}

.grid-3 {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	/* 3 colonnes égales */
	gap: 24px;
	/* espace entre les images */
}

.grid-product {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
	/* 3 colonnes égales */
	gap: 24px;
	/* espace entre les images */
}

.product {
	display: flex;
	flex-direction: column;
}

.grid-3 img {
	width: 100%;
	height: auto;
	border-radius: 18px;
	object-fit: cover;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.09);
	transition: transform .35s ease, box-shadow .35s ease;
}

.grid-3 img:hover {
	transform: scale(1.03);
	box-shadow: 0 14px 36px rgba(0, 0, 0, 0.12);
}

.card {
	background: #fff;
	padding: 18px;
	border-radius: 12px;
	box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06)
}

.card>img {
	width: 100%;
}

.brands-wrapper {
	overflow: hidden;
	width: 100%;
	padding: 20px 0;
}

.brands-track {
	display: flex;
	align-items: center;
	gap: 40px;
	will-change: transform;
}

.brands-track img {
	height: 48px;
	width: auto;
	opacity: .85;
	/*filter: brightness(0) invert(1); /* logos blancs sur fond foncé */
	transition: opacity .3s ease;
}

.brands-track img:hover {
	opacity: 1;
}

.article-card img {
	width: 100%;
	height: 160px;
	object-fit: cover;
	border-radius: 8px
}

.full-article img {
	max-width: 100%;
	border-radius: 8px
}

.elegant-footer {
	background: #f5f5f7;
	padding: 70px 20px 40px;
	color: #333;
	border-top: 1px solid #e2e2e2;
}

.elegant-footer a {
	color: #111;
	text-decoration: none;
	border-bottom: 1px solid transparent;
	transition: border-color .25s, color .25s;
}

.elegant-footer a:hover {
	color: #000;
	border-bottom: 1px solid #111;
}

.footer-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
	gap: 50px;
	margin-bottom: 40px;
}

.footer-column h3 {
	font-size: 1.1rem;
	color: #111;
	font-weight: 600;
	margin-bottom: 15px;
	letter-spacing: 0.3px;
}

.footer-column p,
.footer-column li {
	font-size: 0.95rem;
	color: #555;
	margin-bottom: 8px;
	line-height: 1.5;
}

.footer-column ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.footer-column li {
	margin-bottom: 8px;
}

.copyright {
	text-align: center;
	color: #666;
	font-size: 13px;
	margin-top: 20px;
}

/* Images magasin */
.store-images .grid img {
	width: 100%;
	border-radius: 12px;
	object-fit: cover;
}

/*Catégorie Location*/
.grid-4 {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 32px;
}

.category-card {
	display: flex;
	flex-direction: column;
	text-decoration: none;
	color: inherit;
	transition: 0.3s;
}

.category-card>div {
	height: 100%;
}

.category-card:hover {
	transform: translateY(-4px);
}

.cat-image {
	width: 100%;
	aspect-ratio: 4/3;
	overflow: hidden;
	border-radius: 12px;
	margin-bottom: 12px;
}

.cat-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.btn-small {
	margin: auto;
	background: var(--accent);
	padding: 8px 14px;
	border-radius: 6px;
	color: #fff;
	font-weight: 600;
	display: inline-block;
	width: fit-content;
}


/* --- Responsive --- */
@media (max-width: 768px) {
	.main-nav ul.menu {
		display: none;
		/* cache menu sur mobile */
		flex-direction: column;
		background: rgba(0, 0, 0, 0.9);
		position: absolute;
		top: 100%;
		right: 0;
		width: 200px;
		padding: 1rem;
	}

	.main-nav ul.menu.active {
		display: flex;
	}

	.home {
		width: 90%;
		margin: 0;
		margin-top: 3em;
	}

	.hamburger {
		display: flex;
	}

	.grid-3,
	.grid-product {
		grid-template-columns: 1fr;
	}
}