@charset "UTF-8";

/* ************************************************************************************************
		POLICES & ANIMATIONS
************************************************************************************************ */
@font-face { font-family: 'Tektur'; src: url('font/Tektur.woff2') format('woff2'); font-weight: normal; font-style: normal; font-display: swap; }

@keyframes scrolltext { 0% { transform: translate3d(0, 0, 0); } 100% { transform: translate3d(-100%, 0, 0); } }
@keyframes Blink { 0% { opacity: 1; } 25% { opacity: 0; } 50% { opacity: 1; } 100% { opacity: 1; } }
@keyframes anim-flipX { 0% { opacity: 0; transform: rotateX(90deg); } 50% { opacity: 1; transform: rotateX(720deg); } 100% { opacity: 1; transform: rotateX(720deg); } }
@keyframes anim-lineUp { 0% { opacity: 0; transform: translateY(80%); } 20% { opacity: 0; } 50% { opacity: 1; transform: translateY(0%); } 100% { opacity: 1; transform: translateY(0%); } }
@keyframes left-to-right { 0% { transform: translateX(0); } 50% { transform: translateX(-10px); } 100% { transform: translateX(0); } }
@keyframes fa-bounce {
	0% { transform: scale(1, 1) translateY(0); }
	10% { transform: scale(1.1, 0.9) translateY(0); }
	30% { transform: scale(0.9, 1.1) translateY(-0.5em); }
	50% { transform: scale(1.05, 0.95) translateY(0); }
	57% { transform: scale(1, 1) translateY(-0.125em); }
	64% { transform: scale(1, 1) translateY(0); }
	100% { transform: scale(1, 1) translateY(0); }
}

.flipX { animation: 1s anim-flipX ease infinite; }
.lineUp { animation: 2s anim-lineUp ease-out infinite; }
.fa-bounce { animation: 1s fa-bounce infinite; }
.blink { animation: Blink 2s infinite; }

.reset-font {font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;}

.bleu { color: var(--bleu); font-weight: bold; }
.vert { color: var(--vert); font-weight: bold; }
.gris { color: var(--gris); font-weight: bold; }

.anim-logo-img { animation: 2s anim-lineUp ease-out none; }

#home { position: absolute; top: 5%; left: 5%; z-index: 1000; }
#home a { gap: 10px; color: var(--vert); display: flex; align-items: center; }
#home i { color: var(--vert); display: inline-block; animation: left-to-right 1.5s ease-in-out infinite alternate; }
#home span { font-size: 1rem; }

/* ************************************************************************************************
		SCROLLBAR
************************************************************************************************ */
body::-webkit-scrollbar { width: 6px; }
body::-webkit-scrollbar-track { border-left: 2px solid var(--bleu); }
body::-webkit-scrollbar-thumb { background-color: var(--bleu); }

/* ************************************************************************************************
		VARIABLES & CONFIG GLOBALE
************************************************************************************************ */
:root {
	--bleu: #63C7F0;
	--vert: #86BC24;
	--gris: #24262B;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html, body {
	width: 100%; min-height: 100vh;
	font-family: 'Tektur', sans-serif; font-size: 1em; color: #000;
	background-color: #FFF;
	display: flex;
	flex-direction: column;
}

a { color: #000; text-decoration: none; transition: all 0.3s ease; }
a:hover { color: var(--bleu); }

img { max-width: 100%; height: auto; vertical-align: top; border: 0; }

ul { margin: 0; padding: 0; list-style: none; }

var { font-style: normal; }

/* ************************************************************************************************
		SCROLLING TEXT
************************************************************************************************ */
#dashbord {}

.dashboard-icon {
  position: fixed;
  top: 10px;
  right: 10px;
  font-size: 1.5rem; /* Taille de l'icône */
  cursor: pointer;
  z-index: 1000;
}
.fab-dashboard {
  position: fixed;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background-color: #333;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  cursor: pointer;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
  transition: transform 0.2s;
}
.fab-dashboard:hover {
  transform: scale(1.1);
}

/* ************************************************************************************************
		SCROLLING TEXT
************************************************************************************************ */
#scrolling { width: 100%; height: 40px; background-color: var(--gris); overflow: hidden; flex-shrink: 0; }
.scroll-text { padding-left: 100%; color: #FFF; line-height: 40px; white-space: nowrap; display: inline-block; animation: scrolltext 30s linear infinite; }

/* ************************************************************************************************
		HEADER
************************************************************************************************ */
#header {
	width: 60%;
	margin: 1% auto 0.5%;
	padding: 0 0 1% 0;
	height: 110px;
	border-bottom: 2px solid var(--vert);
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-shrink: 0;
	position: relative;
}

#head-1 { height: 100%; gap: 100px; display: flex; align-items: center; }
#head-1 img, .anim-logo-img { height: 90%; width: auto; display: block; }
#head-1 span { font-size: 1.2rem; font-weight: bold; color: var(--gris); text-transform: uppercase; line-height: 1.2; letter-spacing: 0.5px; }

#head-2 { height: 100%; display: flex; align-items: center; }

.facebook {
	width: 200px;
	border-left: 100px solid transparent;
	border-right: 0 solid transparent;
	border-bottom: 109px solid #3A5794;
	position: relative;
	transition: width 0.4s ease, border-color 0.4s ease;
	cursor: pointer;
}

.facebook::after {
	content: 'FaceBook';
	color: #FFF;
	text-shadow: 2px 2px 1px rgba(0, 0, 0, 0.6);
	position: absolute;
	top: 42px;
	left: 0;
	transition: left 0.4s ease, transform 0.4s ease;
	animation: 1.5s anim-flipX ease-out;
}

.facebook:hover { width: 220px; }
.facebook:hover::after { left: 5px; }

/* ************************************************************************************************
		STRUCTURE PRINCIPALE
************************************************************************************************ */
#main {
	flex: 1;
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	margin: 2% 0;
}

#content { width: 100%; min-height: 400px; margin: 0 auto; padding: 0 20px; }

/* ************************************************************************************************
		PAGE D'ACCUEIL (HOME.PHP)
************************************************************************************************ */
.home-section {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	max-width: 1200px;
	margin: 0 auto;
	flex-wrap: wrap;
}

.col-1-home, .col-2-home { min-width: 300px; flex: 1; }

.col-1-home h1 {
	width: 100%;
	margin: 0 0 3%; padding: 10px;
	font-size: 1.5rem; text-align: center; color: #FFF;
	background: var(--gris); border-radius: 20px 0 20px 0; box-shadow: 3px 5px 5px rgba(0, 0, 0, 0.3);
}

.col-1-home p { max-width: 65ch; font-size: 1rem; line-height: 1.6; color: #333; text-align: justify; }

.col-2-home img { width: 100%; height: auto; border-radius: 20px; box-shadow: 0 10px 20px rgba(0,0,0,0.15); display: block; }

.home-palettes-grid { width: 100%; margin-top: 20px; gap: 10px; display: grid; grid-template-columns: repeat(5, 1fr); }

.palette-card {
	min-width: 110px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 20px 10px;
	background: #f9f9f9;
	border: 2px solid var(--gris);
	border-radius: 15px 0 15px 0;
	text-decoration: none;
	color: #333;
	transition: all 0.3s ease;
	text-align: center;
}

.palette-card i { margin-bottom: 10px; font-size: 2rem; color: var(--vert); }

.palette-card span { font-size: 1.1rem; font-weight: bold; display: block; }

.palette-card small { margin-top: 5px; font-size: 0.85rem; color: #666; }

.palette-card:hover {
	background: var(--vert);
	border-color: var(--vert);
	color: #FFF;
	transform: translateY(-5px);
	box-shadow: 0 5px 15px rgba(134, 188, 36, 0.4);
}

.palette-card:hover i, .palette-card:hover span, .palette-card:hover small { color: #FFF; }

/* ************************************************************************************************
		SLIDER (HOME.PHP)
************************************************************************************************ */
.slider-container {
	width: 100%;
	position: relative;
	overflow: hidden;
	border-radius: 20px;
	box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.slider-wrapper {
	position: relative;
	width: 100%;
	height: 0;
	padding-bottom: 66.66%;
	background: #f0f0f0;
}

.slide {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0;
	transition: opacity 1s ease-in-out;
	z-index: 1;
}

.slide.active { opacity: 1; z-index: 2; }

.slider-btn {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background-color: rgba(0, 0, 0, 0.4);
	color: white;
	border: none;
	padding: 10px 15px;
	cursor: pointer;
	z-index: 10;
	font-size: 18px;
	border-radius: 50%;
	transition: background 0.3s;
}

.slider-btn:hover { background-color: rgba(0, 0, 0, 0.8); }

.slider-btn.prev { left: 10px; }
.slider-btn.next { right: 10px; }

.slider-dots {
	position: absolute;
	bottom: 15px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	gap: 10px;
	z-index: 10;
}

.dot {
	width: 12px;
	height: 12px;
	background-color: rgba(255, 255, 255, 0.5);
	border-radius: 50%;
	cursor: pointer;
	transition: background 0.3s;
}

.dot.active { background-color: white; transform: scale(1.2); }

/* ************************************************************************************************
		SECTION LIVRAISON (ICÔNES)
************************************************************************************************ */
.col-3 { width: 100%; padding-top: 6px; gap: 15px; background-color: #FFF; display: flex; align-items: flex-start; }

.col-deliv-texte { display: flex; flex: 1; flex-direction: column; justify-content: flex-start; }

h3.title-deliv { margin: 1px 0 0 0; font-size: 1rem; color: #333; }

span.text-deliv { font-size: 0.8rem; color: #000; opacity: 0.6; }

/* ************************************************************************************************
		FOOTER
************************************************************************************************ */
.footer { width: 100%; margin-top: auto; padding: 30px 0 20px 0; background-color: var(--gris); position: relative; flex-shrink: 0; z-index: 2; }

.footer::before {
	width: 100%; height: 10px;
	content: "";
	background: rgba(0, 0, 0, 1);
	filter: blur(15px);
	position: absolute;
	top: -5px;
	left: 0;
	z-index: -1;
}

.container { max-width: 80%; margin: 0 auto 10px; }

.row { gap: 50px; display: flex; flex-wrap: wrap; justify-content: space-between; }

.footer-col { min-width: 350px; padding: 10px 30px; border-radius: 20px; box-shadow: 1px 1px 3px #000; flex: 1; }

.frame-1, .frame-2, .frame-3 { background-color: #FFF; border: 2px solid var(--vert); border-radius: 20px 0 20px 0; }

.frame-1 { flex: 2; }
.frame-2, .frame-3 { flex: 1; }

.footer-col h2 { margin-bottom: 10px; padding-bottom: 10px; color: #333; opacity: 0.8; font-size: 1.1em; position: relative; }

.footer-col h2::before { width: 100%; height: 2px; content: ''; background-color: var(--vert); position: absolute; bottom: 0; left: 0; }

.footer-col ul li { margin-bottom: 10px; list-style: none; }

.footer-col ul li a { color: #555; font-weight: bold; display: flex; align-items: center; transition: all 0.2s ease; }

.footer-col ul li a:hover { color: var(--bleu); transform: translateX(5px); }

.footer-col ul li a i { margin-right: 8px; color: var(--vert); font-size: 0.9em; display: inline-block; transition: all 0.3s ease; }

.footer-col ul li a:hover i { color: var(--bleu); }

.SAS a { color: #000; opacity: 0.7; font-size: 0.9em; font-weight: bold; vertical-align: top; }

.home { padding-left: 26px; color: #333; font-size: 0.9em; font-style: normal; opacity: 0.8; }

/* ************************************************************************************************
		FORMULAIRES DE CONTACT
************************************************************************************************ */
#contact { width: 90%; max-width: 1200px; margin: 40px auto; }

.contact-frame { gap: 40px; display: flex; flex-wrap: wrap; }

form { min-width: 300px; flex: 2; }

.input-group { width: 100%; margin-bottom: 15px; position: relative; }

form input, form select, form textarea {
	width: 100%;
	height: 60px;
	padding: 10px 15px 10px 50px;
	font-size: 18px;
	color: #333;
	background: #f9f9f9;
	border: 2px solid #ddd;
	border-bottom: 3px solid var(--bleu);
	border-radius: 8px;
	outline: none;
	box-sizing: border-box;
	appearance: none;
	cursor: pointer;
}

form select {
	color: #555;
	opacity: 0.9;
	cursor: pointer;
	background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%2363C7F0%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E");
	background-repeat: no-repeat;
	background-position: right 15px top 50%;
	background-size: 12px auto;
}

form textarea { height: 150px; padding-top: 20px; background-image: none; cursor: text; resize: vertical; }

form input:focus, form select:focus, form textarea:focus { background: #FFF; border-bottom: 3px solid var(--vert); box-shadow: 0 4px 8px rgba(0,0,0,0.1); }

form i {
	position: absolute;
	left: 15px;
	top: 20px;
	font-size: 22px;
	color: var(--vert);
	z-index: 10;
	pointer-events: none;
}

form input[type="submit"] {
	width: 100%;
	max-width: 250px;
	height: 60px;
	font-size: 20px;
	font-weight: bold;
	color: #FFF;
	background: var(--vert);
	border: none;
	border-radius: 50px;
	cursor: pointer;
	box-shadow: 0 4px 6px rgba(0,0,0,0.2);
	text-shadow: 1px 2px 2px rgba(0, 0, 0, 0.6);
	transition: all 0.3s;
	text-transform: uppercase;
	text-align: center;
	display: block;
	padding: 0;
	margin: 0 auto;
}

form input[type="submit"]:hover { background-color: var(--bleu); }

.contact-frame-2 {
	flex: 1;
	min-width: 280px;
	background: #f4f4f4;
	padding: 30px;
	border-radius: 15px;
}

.contact-frame-2 h4 {
	font-size: 22px;
	color: var(--bleu);
	margin-bottom: 20px;
	border-bottom: 2px solid var(--vert);
	padding-bottom: 10px;
}

.contact-frame-2 p { margin-bottom: 10px; font-size: 16px; color: #444; }

.contact-frame-2 .days { width: 90px; font-weight: bold; color: var(--bleu); display: inline-block; }

.contact-frame-2 .days.close { color: #d9534f; }

.links-contact {
	display: inline-block;
	width: 100%;
	padding: 15px 20px;
	margin-top: 10px;
	font-size: 16px;
	font-weight: bold;
	letter-spacing: 1px;
	color: #FFF;
	background: #555;
	border: none;
	border-radius: 50px;
	text-decoration: none;
	text-align: center;
	box-sizing: border-box;
	cursor: pointer;
}

.links-contact:hover { outline: 3px solid var(--gris); outline-offset: -3px; }

/* ************************************************************************************************
		COPYRIGHT
************************************************************************************************ */
#copyright {
	width: 100%;
	height: 40px;
	line-height: 40px;
	background-color: var(--vert);
	color: #FFF;
	text-align: center;
	text-shadow: 1px 1px 1px #000;
	font-size: 0.9rem;
}

/* ************************************************************************************************
		BACK2TOP
************************************************************************************************ */
button#back2top {
	position: fixed;
	bottom: 60px;
	right: 20px;
	width: 40px;
	height: 40px;
	background-image: url(../img/up-arrow.png);
	background-size: contain;
	background-repeat: no-repeat;
	border: none;
	border-radius: 50%;
	cursor: pointer;
	visibility: hidden;
	opacity: 0;
	transition: opacity 0.3s;
	z-index: 1000;
}

button#back2top:hover { animation: 1s fa-bounce infinite; }

/* ************************************************************************************************
		DISPLAY CARD PALETTES
************************************************************************************************ */
.product-card {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 3rem;
	align-items: start;
	background: #FFF;
	padding: 2.5rem;
	border-radius: 16px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
	border: 1px solid rgba(0, 0, 0, 0.04);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	max-width: 1200px;
	margin: 0 auto 3%;
}

.product-card:hover { box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12); }

.product-card h2 { margin-bottom: 1.5rem; font-size: 1.8rem; color: #333; position: relative; }

.product-card h2::after {
	content: '';
	display: block;
	width: 100%;
	height: 4px;
	background: var(--vert);
	margin-top: 8px;
	border-radius: 2px;
}

.product-image img { width: 100%; height: auto; margin-top: 10%; border-radius: 12px; box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1); }

.specs-list { gap: 1.2rem; display: flex; flex-direction: column; }

.spec-item {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0.8rem 0;
	border-bottom: 1px solid #f0f0f0;
}

.spec-item:last-child { border-bottom: none; }

.spec-item dt {
	font-weight: 600;
	color: #555;
	font-size: 1rem;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.spec-item dd {
	margin: 0;
	font-weight: 700;
	color: #222;
	font-size: 1.1rem;
	text-align: right;
	color: var(--vert);
}

.product-info { display: flex; flex-direction: column; }

.btn-contact {
	display: inline-block;
	margin-left: auto;
	margin-top: 2rem;
	padding: 14px 32px;
	background-color: var(--vert);
	color: #FFF;
	text-decoration: none;
	font-weight: 600;
	font-size: 1rem;
	border-radius: 50px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
	text-shadow: 1px 2px 2px rgba(0, 0, 0, 0.6);
	transition: all 0.3s ease;
	border: 2px solid transparent;
}

.btn-contact:hover { color: #FFF; background-color: var(--bleu); box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15); }

/* ************************************************************************************************
		RESPONSIVE (MEDIA QUERIES)
************************************************************************************************ */
@media (max-width: 768px) {

	#home { top: 9%; left: 2%; }
	#home i { font-size: 40px; }

	#header { width: 90%; height: auto; padding-bottom: 20px; gap: 20px; flex-direction: column; }

	#head-1 { gap: 5px; text-align: center; flex-direction: column; }

	#head-1 span { font-size: 1rem; }

	.menu { width: 95%; gap: 10px; flex-direction: column; }

	.menu li { width: 100%; border-radius: 30px; }

	.home-palettes-grid { grid-template-columns: repeat(2, 1fr); }

	#delivery { justify-content: center; }

	.col-4 { width: 45%; margin: 1% 2%; }

	.row { gap: 30px; flex-direction: column; }

	.footer-col { width: 100%; margin: 0 0 20px 0; }
}

@media (max-width: 480px) {
	#dashbord { display: none; }

	#home { top: 7%; left: 5%; }
	#home i { font-size: 32px; }
	#home span {display: none;}

	#head-2 {display: none;}

	.menu li.first-nav, .menu li.last-nav { border-radius: 30px; }

	.home-palettes-grid { grid-template-columns: 1fr; }

	.col-4 { width: 90%; flex-direction: column; text-align: center; align-items: center; }

	.col-deliv-image { margin-right: 0; margin-bottom: 15px; }

	.col-1-home h1 { padding: 15px 5px; font-size: 1.4rem; }

	.col-1-home p { font-size: 1rem; text-align: left; }

	#head-1 img { height: 70px; }
}

@media (max-width: 400px) {

	#home { top: 6%; left: 5%; }
	#home i { font-size: 32px; }
	#home span {display: none;}

	#header { width: 100%; margin: 0; border-bottom: 1px solid var(--vert); }

	#head-1 span { font-size: 0.9rem; }

	#head-1 img { height: 60px; }

	.palette-card { padding: 15px 5px; }

	.palette-card i { font-size: 1.5rem; }

	.palette-card span { font-size: 1rem; }

	form input[type="submit"] { width: 100%; }
}