* {
	padding: 0;
	margin: 0;

	scroll-behavior: smooth;

	font-family: 'Roboto', sans-serif;

	transition: all 0.2s;
}

/* ----- BASICS --------------------------------------- */
/* Animation fade + slide vers le bas */
@keyframes fadeDown {
  0% {
	opacity: 0;
	transform: translateY(-20px); /* commence au-dessus */
  }
  100% {
	opacity: 1;
	transform: translateY(0);
  }
}

/* Animation fade + slide vers le haut */
@keyframes fadeUp {
  0% {
	opacity: 0;
	transform: translateY(20px); /* commence en dessous */
  }
  100% {
	opacity: 1;
	transform: translateY(0);
  }
}

@keyframes fadeUpLate {
  0% {
	opacity: 0;
	transform: translateY(20px); /* commence en dessous */
  }
  15% {
	opacity: 0;
	transform: translateY(20px); /* commence en dessous */
  }
  100% {
	opacity: 1;
	transform: translateY(0);
  }
}

@keyframes fadeUpLater {
  0% {
	opacity: 0;
	transform: translateY(20px); /* commence en dessous */
  }
  30% {
	opacity: 0;
	transform: translateY(20px); /* commence en dessous */
  }
  100% {
	opacity: 1;
	transform: translateY(0);
  }
}

@keyframes bounce {
	0% {
		transform: translate(-50%, 0);
	}
	50% {
		transform: translate(-50%, 0.5rem); /* descend un peu */
	}
	100% {
		transform: translate(-50%, 0); /* remonte */
	}
}

@keyframes scroll {
	0% { transform: translateX(0); }
	100% { transform: translateX(-50%); }
}

/* Classes utilitaires */
.fade-down {
  animation: fadeDown 2s ease-out forwards;
}

.fade-up-fast {
  animation: fadeUp 1s ease-out forwards;
}

.fade-up {
  animation: fadeUp 2s ease-out forwards;
}

.fade-up-late {
  animation: fadeUpLate 2s ease-out forwards;
}

.fade-up-later {
  animation: fadeUpLater 2s ease-out forwards;
}


/* Animation fluide */
@keyframes scroll-left {
  0% {
	transform: translateX(0);
  }
  100% {
	transform: translateX(-50%);
  }
}


/* ----- BASICS --------------------------------------- */

body {
	overflow-x: hidden;
}

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

h1 {
	font-weight: bold;
	font-size: 3.5rem;
	font-family: 'PlayfairDisplay';
}

h2 {
	font-weight: 400;
	font-size: 1.6rem;
	font-family: 'Roboto';
	color: white;
}

section {
	text-align: center;
	min-height: 100px;
	padding: 3rem;
}

section h1 {
	font-size: 2.5rem;
}

section h2 {
	color: var(--darkGray);
}

section.gray {
	background-color: var(--darkGray);
	color: white;
}

section.white {
	background-color: white;
	color: var(--darkGray);
}

section.lightGray {
	background-color: #f7f6f2;
	color:var(--darkGray);
}

button {
  border: none;
  font-family: 'Roboto';
  font-weight: 400;
  font-size: 1.2rem;

  color: white;
  cursor: pointer;
  border-radius: 25px;
  padding: 0.9em 1.4em;
  position: relative;
  z-index: 1;
  background: linear-gradient(225deg, transparent 0%, transparent 100%);
  transition: background 0.2s ease;
}

/* Bordure dégradée avec ::before */
button::before {
  content: '';
  position: absolute;
  inset: 0;
  padding: 3px;
  border-radius: inherit;
  z-index: -1;

  background: var(--border-gradient);
  
  -webkit-mask: 
	linear-gradient(#fff 0 0) content-box, 
	linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

/* Bouton vert */
button.green {
  --border-gradient: linear-gradient(225deg, var(--tone2) 0%, var(--tone2dark) 100%);
}

button.green:hover {
  background: linear-gradient(225deg, var(--tone2) 0%, var(--tone2dark) 100%);
}

/* Bouton bleu */
button.blue {
  --border-gradient: linear-gradient(225deg, var(--tone3) 0%, var(--tone3dark) 100%);
}

button.blue:hover {
  background: linear-gradient(225deg, var(--tone3) 0%, var(--tone3dark) 100%);
}

blockquote {
	font-style: italic;
} blockquote:before {
	content: '"';
	margin-right: 5px;
} blockquote:after {
	content: '"';
	margin-left: 5px;
}

.separator {
	margin: 40px 0;
}

.small-separator {
	margin: 20px 0;
}

.big-separator {
	margin: 60px 0;
}

.tone1 {
	color: var(--tone1);
}

.white {
	color: white;
}

.white {
	color: white;
}

.imageContent {
	flex: 1 1 40%;
	display: flex;
	justify-content: center;
	align-items: center;
}

.imageContent img {
	border-radius: 5px;
	width: 100%;
	margin-left: 15px;
	max-height: 450px;
	height: 100%;
	object-fit: cover;
	box-shadow: var(--shadow);
}

.clickable {
	cursor: pointer;
}


/* ----- MENU --------------------------------------- */

#menu {
	position: absolute;

	background-color: rgba(255, 255, 255, 0.0);

	height: 100px;
	width: 100vw;
	padding: 40px 20px;
	
	box-sizing: border-box;

	display: flex;
	align-items: center;
	justify-content: space-around;

	z-index: 999;
}

#menu a {
	position: relative;

	font-weight: 300;
	font-size: 1.1rem;
	font-family: Roboto;

	padding: 5px 10px;

	color: white;
} #menu a:hover {
	color: var(--tone1);
	   font-weight: 500;
} #menu a::after {
	content: "•";
	position: absolute;
	left: 50%;
	transform: translateX(-50%) translateY(-10px);
	bottom: -20px;
	opacity: 0;
	transition: 
		opacity 0.3s ease,
		transform 0.3s ease;
} #menu a:hover::after {
	opacity: 1;
	transform: translateX(-50%) translateY(0); 
}

#leftMenu h1, #leftMenu h1 a {
	font-weight: bold;
	font-size: 2rem;
	font-family: 'Libertinage';
	font-weight: 200;
	color: white;
}

#leftMenu h1 a:hover {
	color: var(--tone1);
} #menu h1 a::after {
	content: "";
	position: absolute;
	left: 50%;
	transform: translateX(-50%) translateY(-10px);
	bottom: -20px;
	opacity: 0;
	transition: 
		opacity 0.3s ease,
		transform 0.3s ease;
} #menu h1 a:hover::after {
	opacity: 1;
	transform: translateX(-50%) translateY(0); 
}

#menu.sticky {
	position: fixed !important;
	top: 0;
	left: 0;
	right: 0;

	box-shadow: var(--shadow);
	background-color: rgba(255, 255, 255, 1.0);

	padding: 20px 20px;
}

#menu.sticky a, #menu.sticky h1 {
	color: var(--gray);
} #menu.sticky a:hover, #menu.sticky h1:hover {
	color: var(--darkGray);
}

/* ----- FOOTER --------------------------------------- */

footer {
	display: flex;
	justify-content: space-around;
	min-height: 200px;
	padding: 3rem;
	background-color: var(--darkGray);
	gap: 2rem; 

	width: 100vw;
	box-sizing: border-box;
}

footer > div {
	flex: 1; 
}

/* Largeurs spécifiques */
footer > div:nth-child(1) { flex: 3; } 

footer > div:nth-child(2),
footer > div:nth-child(3),
footer > div:nth-child(4) { flex: 1; } 

footer h1 {
	font-size: 1.5rem;
	margin: 15px 0;
	color: white;
}

footer .logo-font {
	font-size: 2.5rem;
	font-weight: 200;
}

footer h2 {
	font-size: 1rem;
	padding: 0.2rem 0;
}

footer a {
	cursor: pointer;
	color: white;
} footer a:hover {
	color: var(--tone1);
	transform: translateX(10px);
}

#socialMedia {
	padding: 0.5rem 0;
}

#socialMedia svg {
	margin: 0 0.5rem;
	cursor: pointer;
	fill: white; 
}

#socialMedia svg:hover {
  fill: var(--tone1);
}

#footerNav h2 {
	cursor: pointer;
} #footerNav h2:nth-child(0):hover {
	color: var(--tone1);
}

#picturePreviewDiv {
	display: flex;
	flex-wrap: wrap;
	justify-content: left;
	gap: 0.5rem;
}

#picturePreviewDiv img {
	width: 40%;
	max-width: 75px;
	border-radius: 5px;
	cursor: pointer;
} #picturePreviewDiv img:hover {
	transform: scale(0.9);
}

/* ----- COMMON PAGES --------------------------------------- */

#page {
	display: block;
	box-sizing: border-box;
	width: 100vw;
}

.secondaryHeader {
	position: relative;

	height: 30vh;
	min-height: 300px;
	width: 100vw;

	background-image: url('../assets/background3.jpg');
	background-size: cover;
	background-position: center;
	overflow: hidden;
}

.secondaryHeaderDarkOverlay {
	background-color: rgba(0, 0, 0, 0.6);
	
	height: 100%;
	width: 100%;

	display: flex;
	align-items: center;
	justify-content: center;

	text-align: center;
}

/* ----- LANDING PAGE --------------------------------------- */

#heroSection {
	position: relative;

	height: 100vh;
	width: 100vw;

	background-image: url('../assets/background3.jpg');
	background-size: cover;
	background-position: center;
	overflow: hidden;
}

#heroSection {
	position: relative;

	height: 100vh;
	width: 100vw;

	background-image: url('../assets/background3.jpg');
	background-size: cover;
	background-position: center;
	overflow: hidden;
}

#heroDarkOverlay, #preFooterDarkOverlay {
	background-color: rgba(0, 0, 0, 0.6);
	
	height: 100%;
	width: 100%;

	display: flex;
	align-items: center;
	justify-content: center;
}

#heroItemContent, #preFooterItemContent {
	text-align: center;
	width: 60vw;
}

#heroItemContent *, #preFooterItemContent * {
	filter: var(--dropShadow);
}

#heroBtnDiv button, #preFooterBtnDiv button {
	margin: 5px 15px;
	height: 45px;
	padding: 10px 35px;
	text-align: center;
	border-radius: 10px;
}

.logo-font {
	font-family: 'Libertinage';
}

.logo-font span {
	font-style: italic;
	margin-left: 0.5rem;
	margin-right: -0.75rem;
	font-family: 'PlayfairDisplay';
}

.heroLogo {
	font-size: 7.5rem;
	font-weight: 200;
	color: white;
	margin-bottom: -2rem;
}

.hero-logo-svg {
	width: 100%;
	height: 6.2rem;
	display: block;
	max-width: 500px;
	margin: 0 auto;
}

.heroLogo text {
	font-size: 2.3rem;
}

.hero-arrow a {
	position: absolute;
	text-align: center;

	bottom: 25px;
	left: 50%;

	font-size: 3rem;

	color: white;

	display: inline-block;
	animation: bounce 1.2s ease-in-out infinite;

	cursor: pointer;
}

#preFooterSection {
	padding: 0;
	min-height: 500px;
	position: relative;
	background-image: url('../assets/background3.jpg');
	background-size: cover;
	background-position: center;
	overflow: hidden;
}

#preFooterItemContent {
	padding: 3rem;	
}

#preFooterDarkOverlay {
	position: absolute;
}

#preFooterDarkOverlay h2 {
	color: white;
}

.logo-slider {
  overflow: hidden;
  position: relative;
}

.logo-track {
  display: flex;
  align-items: center;
  gap: 3rem;
  will-change: transform;
}

/* Taille commune pour IMG & SVG */
.logo-track img,
.logo-track svg {
  height: 60px;
  width: auto;
  object-fit: contain;
}

/* Couleur par défaut des SVG inlinés */
.logo-track svg {
	color: #fff;         /* currentColor = blanc */
	display: block;
}

/* Sécurise la recoloration : tout ce qui a un fill/stroke (sauf none) suit currentColor */
.logo-track svg [fill]:not([fill="none"])   { fill: currentColor !important; }
.logo-track svg [stroke]:not([stroke="none"]) { stroke: currentColor !important; }

/* Les PNG gardent l'effet, les SVG sont déjà monochromes blancs */
.logo-track img {
  filter: grayscale(100%) brightness(1000%);
}

.logo-track img.noBrightness {
	filter: grayscale(100%) brightness(100%);
}

#feedbacksCardsDiv {
	display: flex;
	justify-content: center;
	gap: 3rem;
	margin: 2rem 0;
}

.feedbackCard {
	text-align: justify;

	width: 33%;
	min-width: 150px;
	max-width: 350px;

	padding: 2rem;

	filter: var(--dropLighterShadow);

	background-color: var(--lightGray);

	border-radius: 5px;
	border: 1px solid rgba(0, 0, 0, 0.05);

	cursor: pointer;
} .feedbackCard:hover {
	filter: var(--dropLightShadow);
} #productFeedbacksSection .feedbackCard:hover {
	filter: var(--dropLighterShadow);
	cursor: default;
}

#serviceCardsDiv {
	display: flex;
	justify-content: center;
	gap: 3rem;
	margin: 2rem 0;
}

.serviceCard {
	text-align: center;

	width: 33%;
	min-width: 150px;
	max-width: 350px;

	padding: 2rem;

	filter: var(--dropLighterShadow);

	background-color: white;

	border-radius: 5px;
	border: 1px solid rgba(0, 0, 0, 0.05);

	cursor: pointer;
} .serviceCard:hover {
	filter: var(--dropLightShadow);
}

.serviceCard img {
	border-radius: 50px;
	aspect-ratio: 1/1;
	background-color: var(--lightGray);
	border: 1px solid solid rgba(0, 0, 0, 0.05);
} 

.serviceCard h3 {
	font-weight: bold;
	font-size: 1.5rem;
	font-family: 'PlayfairDisplay';
	margin: 1.5rem 0;
} 

.icon-circle {
	margin: auto;
	width: 64px;
	height: 64px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1rem;
}

.icon-circle svg {
	width: 32px;
	height: 32px;
}

/* Section Présentation */
#presentationSection {
	background-color: white;
	padding: 4rem 2rem;
}

#presentationSection .sectionContent {
	display: flex;
	align-items: center;
	gap: 4rem;
	flex-wrap: wrap;
	max-width: 70%;
	margin: auto;
}

/* Texte */
#presentationSection .textContent {
	flex: 1 1 50%;
	text-align: justify;
}

#presentationSection h2 {
	font-size: 2rem;
	font-weight: bold;
	margin-bottom: 1rem;
	margin-bottom: 25px;
	text-align: center;
	margin: auto;
}

#presentationSection h2 .highlight {
	color: var(--tone1);
}

#presentationSection p {
	font-size: 1rem;
	line-height: 1.6;
	color: var(--gray);
	margin-bottom: 1rem;
}

/* Bouton */
#presentationSection .cta-button {
	align-self: flex-start;
	background-color: var(--tone1);
	color: #fff;
	font-weight: bold;
	padding: 0.75rem 1.5rem;
	border: none;
	border-radius: 5px;
	cursor: pointer;
} #presentationSection .cta-button:hover {
	background: var(--tone2dark);
	  transform: translateY(-2px);
}

/* ----- STORE PAGE --------------------------------------- */

.warningTextSection {
	text-align: center;
	flex-wrap: wrap;
	max-width: 40%;
	margin: auto;
}

.warningTextSection h2 {
	font-size: 2rem;
	font-weight: bold;
	margin-bottom: 25px;
}

@media screen and (max-width: 1800px) {
	.warningTextSection {
		text-align: center;
		flex-wrap: wrap;
		max-width: 60%;
		margin: auto;
	}
}

.warningTextSection p {
	font-size: 1rem;
	line-height: 1.6;
	color: var(--gray);
	margin: 1rem 0;
}

/* Conteneur qui aligne les cartes */
.store-grid {
	width: 60%;              /* occupe 60% de la largeur de la page */
	margin: 0 auto;          /* centre horizontalement */
	display: flex;
	flex-wrap: wrap;         /* permet le retour à la ligne */
	gap: 20px;               /* espace entre les cartes */
	justify-content: center; /* centre les cartes dans la grille */
}

@media screen and (max-width: 1700px) {
	.store-grid {
		width: 90%;
	}
}

/* Carte */
.card {
	flex: 1 1 300px;   /* largeur flexible mais min 300px */
	max-width: 320px;  /* limite max */
	border: 1px solid #e0e0e0;
	border-radius: 12px;
	overflow: hidden;
	background: #fff;
	box-shadow: 0 2px 6px rgba(0,0,0,0.1);
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

/* Conteneur image pour gérer le zoom */
.card-img-container {
	width: 100%;
	height: 260px;
	overflow: hidden;
	position: relative;
}

.card-img {
	cursor: pointer;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transform: scale(1.1); /* zoom léger par défaut */
	transition: transform 0.4s ease;
}

.card-img-container:hover .card-img {
	transform: scale(1); /* dézoom au survol */
}

/* Contenu de la carte */
.card-body {
	flex: 1;
	padding: 16px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	text-align: left;
}

.card-title {
	font-size: 1.2rem;
	font-weight: bold;
	margin-bottom: 4px;
}

.card-price {
	font-size: 1rem;
	margin-bottom: 20px;
}

.card-price .price {
	color: var(--tone1);
	font-weight: bold;
	font-size: 1.3rem;
}

.card-text {
	font-size: 0.9rem;
	color: #555;
	margin-bottom: 16px;
	flex-grow: 1;
	font-family: 'Roboto';
	line-height: 1.4;
	font-weight: 400;
}

.card-text br {
	display: block;
	margin-bottom: 10px;
}

.card-button {
	display: block;
	width: 100%;
	padding: 12px;
	background-color: #000;
	color: #fff;
	font-size: 1rem;
	font-weight: bold;
	border: none;
	border-radius: 6px;
	cursor: pointer;
	margin-top: auto;
}

.card-button:hover {
	background-color: var(--tone2);	
}

/* ----- PRODUCT --------------------------------------- */

#productSection .sectionContent {
	display: flex;
	gap: 4rem;
	flex-wrap: wrap;
	max-width: 80%;
	margin: auto;
	align-items: flex-start;
	justify-content: center;
	padding: 4rem 2rem;
}

#productContactSection .sectionContent {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 4rem;
	flex-wrap: wrap;
	max-width: 80vw;
	margin: auto;
}

#productInfoDiv {
	flex: 0 0 30%;
	text-align: justify;
}

.product-title {
	font-size: 1.5rem;
	font-weight: bold;
	margin-bottom: 4px;
}

.product-price {
	font-size: 1.2rem;
	margin-bottom: 20px;
}

.product-price .price {
	color: var(--tone1);
	font-weight: bold;
	font-size: 1.4rem;
}

.product-text {
	font-size: 1.1rem;
	color: #555;
	margin-bottom: 16px;
	flex-grow: 1;
	font-family: 'Roboto';
	line-height: 1.4;
	font-weight: 400;
}

#productImageDiv {
	flex: 0 0 60%;
	max-width: 40vw;
	
	display: flex;
	flex-direction: column;
	justify-content: center;
}

#productBigPictureDiv {
	cursor: pointer;
}

#productBigPictureDiv img {
	border-radius: 0.5rem;
	width: auto;
	max-height: 50vh;
	max-width: 100%;
}

#productBigPictureDiv img:hover {
	transform: scale(95%);
}

#similarProductsDiv {
	margin-top: 1rem;
	text-align: left;
}

#similarProductsContainer {
	position: relative;
	display: flex;
	overflow-x: scroll;
	overflow-y: hidden;

	justify-content: left;
	gap: 1rem;

	margin-top: 1rem;
	max-height: 10rem;

	padding: 0.5rem 0;
}

.similar-item {
	flex: 0 0 80px;
	/* IMPORTANT : 0 0 empêche l'image de s'écraser */
	height: 80px;
	cursor: pointer;
	border-radius: 6px;
	overflow: hidden;
	border: 2px solid var(--tone3);
	transition: all 0.2s ease-in-out;
}

.similar-item:hover {
	border-color: var(--tone1);
	transform: translateY(-0.2rem);
}

.similar-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* --- CUSTOM SCROLLBAR (Chrome/Safari/Edge) --- */
#similarProductsContainer::-webkit-scrollbar {
	height: 6px;
}

.feedbackCard { position: relative; }
.feedback-tags { 
	display: flex; 
	border-radius: 5px; 
	display: flex; 
	gap: 6px; 
	flex-wrap: wrap; 
	z-index: 2; 
}
.feedback-tag { 
	color: white;
	padding: 2px 8px;
	border-radius: 12px;
	font-size: 0.75rem;
	font-weight: 600;
	text-shadow: 0 0px 2px rgba(0, 0, 0, 0.75);
	display: inline-block;
	white-space: nowrap;
	cursor: pointer;
}

.feedback-tag:hover { 
	opacity: 0.9; 
	transform: scale(105%); 
	filter: var(--dropLightShadow); 
}

#similarProductsContainer::-webkit-scrollbar-track {
	border-radius: 10px;
}

#similarProductsContainer::-webkit-scrollbar-thumb {
	background: #ccc;
	border-radius: 10px;
}

#similarProductsContainer::-webkit-scrollbar-thumb:hover {
	background: #999;
}

/* ----- GALERIE --------------------------------------- */

/* Reset margin/padding */
body, html {
	margin: 0;
	padding: 0;
}

/* Galerie type masonry serré */
#imgStock {
	column-count: 4; /* Ajustable selon largeur écran */
	column-gap: 0;
}

@media (max-width: 1200px) {
	#imgStock { column-count: 3; }
}
@media (max-width: 768px) {
	#imgStock { column-count: 2; }
}
@media (max-width: 480px) {
	#imgStock { column-count: 1; }
}

/* Images galerie */
.gallery-item {
	break-inside: avoid;
	margin-bottom: 0; /* pas d'espace vertical */
}

.gallery-item img {
	width: 100%;
	display: block;
	transition: transform 0.3s, box-shadow 0.3s;
	cursor: pointer;
}

.gallery-item img:hover {
	transform: scale(1.05);
	box-shadow: 0 10px 20px rgba(0,0,0,0.3);
	z-index: 999;
}

/* Animation clic */
.gallery-item img.click-animation {
	transform: scale(0.95);
	transition: transform 0.15s;
}

/* ----- GALERIE FILTERS --------------------------------------- */

.galleryFilters {
	width: min(1200px, 92vw);
	margin: 0 auto 2rem auto;
	padding: 1.5rem;
	background: white;
	border-radius: 12px;
	box-sizing: border-box;
	text-align: left;
}

.galleryFilters-row {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	align-items: flex-end;
}

.galleryFilters-group {
	display: flex;
	flex-direction: column;
	flex: 1 1 180px;
	min-width: 180px;
}

.galleryFilters-group--large {
	flex: 1 1 280px;
	min-width: 260px;
}

.galleryFilters label {
	font-weight: 600;
	font-size: 0.95rem;
	color: var(--gray);
	margin-bottom: 0.45rem;
}

.galleryFilters select,
.galleryFilters input[type="date"] {
	border: 1px solid #ddd;
	border-radius: 8px;
	background: var(--lightGray);
	padding: 0.85rem 1rem;
	outline: none;
	font-size: 1rem;
	color: var(--darkGray);
	box-sizing: border-box;
	min-height: 48px;
}

.galleryFilters select:focus,
.galleryFilters input[type="date"]:focus {
	border-color: var(--tone1);
	box-shadow: 0 0 0 3px rgba(127, 186, 0, .2);
}

.galleryFilters select[multiple] {
	min-height: 140px;
	padding: 0.5rem;
}

.galleryFilters-bottom {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 1rem;
	margin-top: 1.25rem;
	flex-wrap: wrap;
}

.galleryFilters-pagination {
	display: flex;
	align-items: center;
	gap: 0.8rem;
	font-weight: 600;
	color: var(--darkGray);
}

.galleryFilters-pagination a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 40px;
	height: 40px;
	padding: 0 0.8rem;
	border-radius: 999px;
	background: var(--lightGray);
	color: var(--darkGray);
	font-weight: bold;
}

.galleryFilters-pagination a:hover {
	background: var(--tone1);
	color: white;
}

.galleryFilters-actions {
	display: flex;
	align-items: center;
	gap: 0.8rem;
	flex-wrap: wrap;
}

.galleryFilters-reset {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 45px;
	padding: 0 1rem;
	border-radius: 999px;
	background: var(--lightGray);
	color: var(--darkGray);
	font-weight: 500;
}

.galleryFilters-reset:hover {
	background: var(--darkGray);
	color: white;
}

@media (max-width: 768px) {
	.galleryFilters {
		padding: 1rem;
	}

	.galleryFilters-group,
	.galleryFilters-group--large {
		flex: 1 1 100%;
		min-width: 100%;
	}

	.galleryFilters-bottom {
		flex-direction: column;
		align-items: stretch;
	}

	.galleryFilters-actions,
	.galleryFilters-pagination {
		justify-content: center;
	}
}

/* Overlay */
#overlay {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.8);
	justify-content: center;
	align-items: center;
	z-index: 1000;
	overflow: hidden;
}
#overlay.active {
	display: flex;
}

.gallery-item { position: relative; }
.photo-tags {
	display: none;
	position: absolute;
	left: 5px;
	top: 5px;
	right: 5px;
	padding: 6px;
	border-radius: 8px;
	/* background: rgba(0, 0, 0, 0.1);
	backdrop-filter: blur(3px); */
	z-index: 2;
	gap: 4px;
	flex-wrap: wrap;
	align-items: center;
	pointer-events: auto;
	cursor: pointer;
}
.gallery-item:hover .photo-tags,
.gallery-item.tags-visible .photo-tags {
	display: flex;
}
.photo-tag {
	color: white;
	padding: 2px 8px;
	border-radius: 12px;
	font-size: 0.75rem;
	font-weight: 600;
	text-shadow: 0 0px 2px rgba(0, 0, 0, 0.75);
	display: inline-block;
	white-space: nowrap;
}
.photo-tag:hover {
	opacity: 0.9;
}

#overlay-img {
	position: absolute;
	border-radius: 10px;
	box-shadow: 0 10px 30px rgba(0,0,0,0.5);
	transition: transform 0.5s ease, top 0.5s ease, left 0.5s ease, width 0.5s ease, height 0.5s ease;
}

#overlay .overlay-tags {
	position: absolute;
	top: 10px;
	left: 10px;
	display: none;
	flex-wrap: wrap;
	gap: 6px;
	z-index: 1001;
	pointer-events: auto;
	max-width: 90%;
}
#overlay .overlay-tags .photo-tag {
	margin: 2px;
	color: white;
	padding: 5px 10px;
	border-radius: 12px;
	font-size: 1rem;
	font-weight: 600;
	text-shadow: 0 0px 2px rgba(0, 0, 0, 0.75);
	display: inline-block;
	white-space: nowrap;
	cursor: pointer;
}

/* ----- COMPANY --------------------------------------- */

.videoSection {
	height: 63vh;

	display: flex;
	align-items: center;
}

.videoSection video { 
	height: auto;
	max-height: 100%;
	width: 100%;
}

/* Styles communs pour toutes les sections événementielles */
/* Styles communs */
.sectionEvenement {
	background-color: white;
	padding: 4rem 2rem;
}

.eventsSection:last-child {
	background-color: white;
	padding: 0rem 2rem 4rem 2rem;
}

.sectionEvenement .sectionContent {
	display: flex;
	gap: 3rem;
	flex-wrap: wrap;
	max-width: 80%;
	margin: auto;
	align-items: flex-start;
}

.sectionEvenement .textContent {
	flex: 1 1 50%;
	text-align: justify;
}

.sectionEvenement h2 {
	font-size: 2rem;
	font-weight: bold;
	margin-bottom: 25px;
}

.sectionEvenement h2 .highlight {
	color: var(--tone1);
}

.sectionEvenement p {
	font-size: 1rem;
	line-height: 1.6;
	color: var(--gray);
	margin-bottom: 1rem;
}

/* Grille d'images */
.sectionEvenement .imageGrid {
	flex: 1 1 40%;
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	grid-auto-rows: clamp(180px, 20vw, 300px);
	gap: 1rem;
}

.sectionEvenement .imageGrid img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 5px;
	box-shadow: var(--shadow);
	cursor: pointer;
	transition: transform 0.3s ease;
}

.sectionEvenement .imageGrid img:first-child:nth-last-child(3) {
	grid-column: 1 / -1;
}

.sectionEvenement .imageGrid img:hover {
	transform: scale(1.05);
}

#formationSection .imageContent img {
	max-height: 50vh;
	width: auto;
	aspect-ratio: 21/29.7;
}

.textContent strong {
	font-size: 1.2rem;
	font-weight: bold;
	margin-bottom: 4px;
}

.textContent i {
	font-size: 0.8rem;
	font-weight: normal;
	color: var(--gray);
	margin-bottom: 4px;
}

.textContent .price {
	color: var(--tone1);
	font-weight: bold;
	font-size: 1.3rem;
}

/* Responsive */
@media screen and (max-width: 900px) {
	.sectionEvenement .sectionContent {
		flex-direction: column-reverse;
		max-width: 90%;
	}
	.sectionEvenement .imageGrid {
		grid-template-columns: 1fr 1fr;
		grid-template-rows: auto auto;
	}
}

/* ----- CONTACT --------------------------------------- */

#contactSection {
	background-color: white;
	padding: 4rem 2rem;
}

#contactSection .sectionContent {
	display: flex;
	align-items: center;
	gap: 4rem;
	flex-wrap: wrap;
	max-width: 70%;
	margin: auto;
}

/* Texte */
#contactSection .textContent {
	flex: 1 1 50%;
	text-align: justify;
}

#contactSection h2 {
	font-size: 2rem;
	font-weight: bold;
	margin-bottom: 1rem;
	margin-bottom: 25px;
	text-align: center;
	margin: auto;
}

#contactSection h2 .highlight {
	color: var(--tone1);
}

#contactSection p {
	font-size: 1rem;
	line-height: 1.6;
	color: var(--gray);
	margin-bottom: 1rem;
}

/* Bouton */
#contactSection .cta-button {
	align-self: flex-start;
	background-color: var(--tone1);
	color: #fff;
	font-weight: bold;
	padding: 0.75rem 1.5rem;
	border: none;
	border-radius: 5px;
	cursor: pointer;
} #contactSection .cta-button:hover {
	background: var(--tone2dark);
	  transform: translateY(-2px);
}


/* === Grille générale === */
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 1.5rem;
  width: 100%;
  max-width: 90rem;
  margin: 0 auto;
  align-items: start;
}
@media (max-width: 980px) {
  .contact-wrapper { grid-template-columns: 1fr; }
}

/* === Formulaire === */
.contact-form {
  background: #fff;
  padding: 2.2rem;
  border-radius: 14px;
  box-shadow: var(--shadow);
  text-align: left;
  transition: transform .25s ease;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
}

.contact-form:hover {
  transform: translateY(-3px);
}

.contact-form h2 {
  text-align: center;
  margin-bottom: 1.4rem;
  font-size: 1.6rem;
  color: var(--darkGray);
}

.contact-form label {
  display: flex;
  flex-direction: column;
  width: 100%;         /* occupe toute la largeur du parent */
  box-sizing: border-box;
}

.contact-form label span {
  margin-bottom: .4rem;
  font-weight: 600;
  color: var(--gray);
  font-size: 0.95rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;          /* s'assure que l'input respecte la largeur du label */
  box-sizing: border-box; /* inclut padding/border dans la largeur */
  border: 1px solid #ddd;
  border-radius: 8px;
  background: var(--lightGray);
  padding: .9rem 1rem;
  outline: none;
  font-size: 1rem;
  transition: border-color .25s, box-shadow .25s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--tone1);
  box-shadow: 0 0 0 3px rgba(127,186,0,.2);
}

.contact-form textarea {
  resize: vertical;
}


/* === Grille 2 colonnes === */
.grid-2 {
  display: flex;
  gap: 1.2rem; /* espace entre les colonnes */
  flex-wrap: wrap;
}

.grid-2 label {
  flex: 0 0 calc(50% - 0.6rem); /* exactement 50% moins la moitié du gap */
  display: flex;
  flex-direction: column;
  box-sizing: border-box; /* inclut le padding/border dans la largeur */
}
.grid-2 input[type="text"] {
  width: 100%;
  box-sizing: border-box;
}

@media (max-width: 680px) {
  .grid-2 label { flex: 1 1 100%; }
}

.choices-container h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.choices-container h3 span {
  font-weight: 600;
  font-size: 0.95rem;
}

/* === Choix radio 2 par 2 === */
.choices {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.8rem;
}

.choices label {
  display: flex;
  align-items: left;
  gap: 0.8rem;
  cursor: pointer;
  width: 100%; /* s'assure que le label remplit la colonne */
  box-sizing: border-box;
}

.choices input[type="radio"] {
  display: none;
}

.choices label span {
  position: relative;
  padding-left: 40px;
  display: block; /* permet au ::before d’être aligné */
}

/* carré avant le texte */
.choices label span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  border: 2px solid #999;
  border-radius: 3px;
  background: #fff;
}

/* état coché */
.choices input[type="radio"]:checked + span::before {
  background: var(--tone2);
}


/* === Bouton === */
.contact-form button {
  align-self: flex-start;
	background-color: var(--tone1);
	color: #fff;
	font-weight: bold;
	padding: 0.75rem 1.5rem;
	border: none;
	border-radius: 5px;
	cursor: pointer;
  cursor: pointer;
  transition: background .25s ease, transform .2s ease;
}
.contact-form button:hover {
  background: var(--tone2dark);
  transform: translateY(-2px);
}

.filledButton {
	align-self: flex-start;
	background-color: var(--tone1);
	color: #fff;
	font-weight: bold;
	padding: 0.75rem 1.5rem;
	border: none;
	border-radius: 5px;
	cursor: pointer;
	cursor: pointer;
	transition: background .25s ease, transform .2s ease;
}

.filledButton:hover {
	background: var(--tone2dark);
	transform: translateY(-2px);
}

/* === Alertes === */
.form-alert { 
  padding: .9rem 1rem; 
  border-radius: 8px; 
  margin-bottom: 1rem; 
  font-size: .95rem;
}
.form-alert--ok { background: var(--tone2); color: #fff; }
.form-alert--error { background: #e68484; color: #fff; }

/* === Aside infos === */
.contact-aside {
  background: linear-gradient(160deg, var(--darkGray) 0%, #222 100%);
  color: #fff;
  border-radius: 14px;
  padding: 2rem 1.6rem;
  box-shadow: var(--shadow);
  transition: transform .25s ease;
}
.contact-aside h3 {
  font-size: 2.5rem; 
  font-weight: 200;
  margin-bottom: .8rem;
}
.contact-aside .slogan {
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 1.4rem;
  color: #ddd;
  font-weight: 600;
}

/* lignes infos */
.info-row {
  display:flex; 
  gap:1rem; 
  align-items:center;
  padding: .8rem 0; 
  border-bottom:1px solid rgba(255,255,255,.1);
}
.info-row:last-child { border-bottom: 0; }
.info-row .icon {
  flex: 0 0 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--tone1);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size: 1.2rem;
  color:#fff;
}
.info-row .label { font-weight:600; font-size:.95rem; }
.info-row .value { font-size:.95rem; color:#f2f2f2; }
.info-row .value a { color: var(--tone2); text-decoration: none; }
.info-row .value a:hover { text-decoration: underline; }

/* Réseaux sociaux */
.social { margin-top: 1.6rem; }
.social #socialMedia {
	display: flex;
	justify-content: center;
}
.social .label { font-weight:600; margin-bottom:.6rem; }
.social-icons { display:flex; gap:.8rem; }
.social-icons a {
  display:inline-flex; 
  align-items:center; 
  justify-content:center;
  width:42px; height:50px;
  border-radius:50%;
  transition: background .3s ease, transform .2s ease;
}
.social-icons a svg { fill: #fff; }
.social-icons a:hover { fill: var(--tone1); transform: translateY(-2px); }

/* ----- COMMENTS --------------------------------------- */

#feedbacksCardsSection { 
	display: flex; 
	flex-wrap: wrap; 
	justify-content: center; 
	gap: 3rem;

}

#makeCommentSection h2 {
	font-size: 2rem;
	font-weight: bold;
	margin-bottom: 1.5rem;
	text-align: center;
}

.commentForm {
	background-color: var(--lightGray);
	padding: 2rem;
	border-radius: 5px;
	border: 1px solid rgba(0, 0, 0, 0.05);
	max-width: 600px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
	box-sizing: border-box;
}

.pseudoNoteWrapper {
	display: flex;
	align-items: center;
	gap: 1rem;
	flex-wrap: wrap;
}

#pseudoInput {
	padding: 0.75rem;
	border-radius: 5px;
	border: 1px solid rgba(0,0,0,0.15);
}

.starsGroup img {
	cursor: pointer;
	width: 24px;
	height: 24px;
}

textarea {
	min-height: 100px;
	padding: 0.75rem;
	border-radius: 5px;
	border: 1px solid rgba(0,0,0,0.15);
	resize: vertical;
}

button#Envoyer {
	background-color: var(--tone1);
	color: #fff;
	font-weight: bold;
	padding: 0.75rem 1.5rem;
	border: none;
	border-radius: 5px;
	cursor: pointer;
	transition: background-color 0.3s;
}

button#Envoyer:hover {
	background-color: var(--tone2dark);
}