/* ===================================
   MINIMAL CSS RESET
   =================================== */
*,
*::before,
*::after {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: sans-serif;
	line-height: 1.5;
	background-color: #fff;
	color: #000;
}

img {
	max-width: 100%;
	display: block;
}

a {
	text-decoration: none;
	color: inherit;
}

button {
	border: none;
	background: none;
	cursor: pointer;
}

/* ===================================
   GLOBAL SLIDER CONTAINER
   =================================== */
.hero-slider {
	position: relative;
	width: 100%;
	height: 720px;
	overflow: hidden;
	box-sizing: border-box;
	overflow-x: hidden;
	z-index: 1;
}

/* ===================================
   SLIDE ITEM LAYOUT
   =================================== */
.slide {
	width: 100%;
	height: 728px;
	background-size: cover;
	background-position: center;
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;
	transition: opacity 1s ease-in-out;
}

.slide.active {
	opacity: 1;
	z-index: 1;
}

/* ===================================
   SLIDE OVERLAY CONTENT
   =================================== */
.slide-overlay {
	position: absolute;
	left: 40%;
	top: 54%;
	transform: translateY(-50%);
	padding: 30px 40px;
	max-height: 300px;
	width: 500px;
	border-radius: 12px;
	text-align: left;
	margin: auto;
}

.slide-overlay p {
	font-size: var(--font-size-product-description);
	font-family: var(--font-futura-ndalt-book);
	color: var(--color-black);
	margin-bottom: 20px;
	line-height: 1.5;
	max-width: 250px;
}

/* ===================================
   NAVIGATION ARROWS
   =================================== */
.arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	font-size: 2.5rem;
	background: none;
	border: none;
	color: #333;
	cursor: pointer;
	z-index: 2;
}

.arrow.prev {
	left: 30px;
}

.arrow.next {
	right: 30px;
}

/* ===================================
   PAGINATION DOTS
   =================================== */
.dots {
	position: absolute;
	bottom: 30px;
	left: 49.7%;
	transform: translateX(-50%);
	display: flex;
	justify-content: center;
	gap: 12px;
	z-index: 2;
}

.dot {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background-color: none;
	border: 1px solid black;
	cursor: pointer;
	transition: background-color 0.3s;
}

.dot.active {
	background-color: var(--color-black);
}

/* ===================================
   SLIDE IMAGES
   =================================== */
/* Style commun */
.slide-img {
	display: none;
	width: 100%;
	max-height: 300px;
	margin: 0 auto;
	visibility: visible;
	opacity: 1;
	position: relative;
	z-index: 0;
	height: auto;
	object-fit: contain;
}

/* ===================================
   CTA
   =================================== */

.btn-cta {
	font-size: var(--font-size-CTA);
	font-family: var(--arial-bold);
	padding: 11px 29px;
	background-color: var(--color-vitamine);
	color: var(--color-white);
	border: none;
	padding: 12px 30px;
	border-radius: 100px;
	cursor: pointer;
	box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
	text-decoration: none;
}

.btn-cta:hover {
	background-color: var(--color-vitamine-hover);
}

/* ===================================
   SERVICES SECTION
   =================================== */
.bva-services-bar {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	padding: 60px 5%;
	background-color: #f5f3ef;
	text-align: center;
	gap: 0;
}

.bva-service-item {
	height: 120px;
	flex: 1 1 200px;
	max-width: 250px;
	min-width: 150px;
	margin: 0 50px;
	padding: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	border: none !important;
}

p.bva-pictogram-text {
	text-transform: uppercase;
	font-size: var(--font-size-menu);
	color: var(--color-black);
	font-family: var(--font-arial);
	letter-spacing: var(--letter-spacing-main);
}

/* ===================================
   MOBILE RESPONSIVENESS
   =================================== */
@media (max-width: 768px) {
	section.hero-slider {
		height: inherit;
		margin-top: 70px;
	}

	.slide-overlay {
		width: 90%;
		text-align: center;
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		position: static;
		transform: none;
		margin-top: 26px;
		padding: 0;
		margin-left: auto;
	}

	.dots {
		position: absolute;
		bottom: 200px;
		margin-top: 16px;
		margin-bottom: 16px;
		justify-content: center;
		width: 100%;
		display: flex;
		gap: 12px;
	}

	.slide-overlay p {
		order: 2;
		font-size: var(--font-size-20);
		margin-top: 26px;
		line-height: 1.5;
		color: #000;
		padding: 0;
		width: 100%;
		text-align: center;
	}

	.arrow {
		font-size: 2rem;
		top: 20%;
		color: var(--color-black);
	}

	.arrow.prev {
		left: 10px;
	}

	.arrow.next {
		right: 10px;
	}

	.slide {
		width: 100%;
		height: 500px;
		opacity: 0;
		transition: opacity 1s ease-in-out;
		position: absolute;
		top: 0;
		left: 0;
		background-image: none !important;
	}

	.slide.active {
		opacity: 1;
		position: relative;
		z-index: 1;
	}

	.slide-img {
		display: block;
		width: 290px;
		height: 290px;
		object-fit: contain;
		margin-bottom: 20px;
	}

	/* ===================================
   SERVICES MOBILE
   =================================== */

	.bva-services-bar {
		display: flex;
		justify-content: center;
		align-items: center;
		flex-wrap: wrap;
		padding: 100px 5%;
		background-color: #f5f3ef;
		text-align: center;
		gap: 0;
	}

	.bva-services-bar {
		gap: 20px;
	}

	.bva-service-item:last-child img {
		width: 40px;
	}

	.bva-service-item img {
		width: 50px;
		margin-bottom: 10px;
	}

	.bva-service-item p span {
		color: var(--color-black);
		display: block;
		font-family: var(--font-arial);
		letter-spacing: var(--letter-spacing-main);
		font-size: 14px;
		text-transform: lowercase;
		margin-top: 5px;
	}

	.bva-service-item {
		padding-bottom: 20px;
	}

	p.bva-pictogram-text {
		font-size: var(--font-size-16);
	}
}
