@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..500;1,400..500&display=swap");

:root {
	--color-primary: #b79a51;
	--color-secondary: #8b1118;
	--color-light: #f8f2e7;

	--color--text: #000;

	--font-primary: "Gotham", sans-serif;
	--font-secondary: "Playfair Display", sans-serif;
}

@font-face {
	font-family: "Gotham";
	src: url("./fonts/Gotham-Book.eot");
	src: url("./fonts/Gotham-Book.eot?#iefix") format("embedded-opentype"), url("./fonts/Gotham-Book.svg#Gotham-Book") format("svg"), url("./fonts/Gotham-Book.ttf") format("truetype"), url("./fonts/Gotham-Book.woff") format("woff"), url("./fonts/Gotham-Book.woff2") format("woff2");
	font-weight: 300;
	font-style: normal;
}
@font-face {
	font-family: "Gotham";
	src: url("./fonts/Gotham-Medium.eot");
	src: url("./fonts/Gotham-Medium.eot?#iefix") format("embedded-opentype"), url("./fonts/Gotham-Medium.svg#Gotham-Medium") format("svg"), url("./fonts/Gotham-Medium.ttf") format("truetype"), url("./fonts/Gotham-Medium.woff") format("woff"), url("./fonts/Gotham-Medium.woff2") format("woff2");
	font-weight: 500;
	font-style: normal;
}
@font-face {
	font-family: "Gotham";
	src: url("./fonts/Gotham-Bold.eot");
	src: url("./fonts/Gotham-Bold.eot?#iefix") format("embedded-opentype"), url("./fonts/Gotham-Bold.svg#Gotham-Bold") format("svg"), url("./fonts/Gotham-Bold.ttf") format("truetype"), url("./fonts/Gotham-Bold.woff") format("woff"), url("./fonts/Gotham-Bold.woff2") format("woff2");
	font-weight: 700;
	font-style: normal;
}

/* Utilities */

.color--primary {
	color: var(--color-primary) !important;
}

.color--secondary {
	color: var(--color-secondary) !important;
}

.color--light {
	color: var(--color-light) !important;
}

.color--white {
	color: #fff !important;
}

.color--text {
	color: var(--color--text) !important;
}

.bg--primary {
	background-color: var(--color-primary) !important;
}

.bg--secondary {
	background-color: var(--color-secondary) !important;
}

.bg--light {
	background-color: var(--color-light) !important;
}

.bg--white {
	background-color: #fff !important;
}

.font--primary {
	font-family: var(--font-primary) !important;
}

.font--secondary {
	font-family: var(--font-secondary) !important;
}

.bg--half-left-secondary {
	background: linear-gradient(to right, var(--color-secondary) 50%, #fff 50%);
}

/* General */

html {
	font-size: 15px;
}

body {
	font-family: var(--font-primary);
	font-weight: 300;
	color: var(--color--text);
	letter-spacing: 0.8px;
}

.container {
	max-width: 1000px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-weight: 400;
	font-family: var(--font-secondary);
	color: var(--color-primary);
}

.section {
	padding: 2.9rem;
}

h2 {
	margin-bottom: 2.1rem;
	font-size: 2.2rem;
}

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

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

a[href^="mailto"] {
	text-decoration: none;
	color: var(--color-primary);
}

a[href^="mailto"]:hover {
	text-decoration: none;
	color: var(--color-secondary);
}

.cover-container {
	padding: 0;
}

.cover-container img {
	object-fit: cover;
	object-position: center;
	width: 100%;
	height: 100%;
}

/* Bootstrap button's */

.btn,
#mc_signup_submit {
	border-radius: 0;
	padding: 0.3rem 0.9rem;
	text-transform: uppercase;
	letter-spacing: 1.5px;
}

.btn-primary,
#mc_signup_submit {
	background-color: var(--color-primary);
	border-color: var(--color-primary);
	color: #fff;
}

.btn-primary:hover {
	background-color: var(--color-secondary);
	border-color: var(--color-secondary);
	color: #fff;
}

.btn-secondary {
	background-color: var(--color-secondary);
	border-color: var(--color-secondary);
	color: #fff;
}

.btn-secondary:hover {
	background-color: var(--color-primary);
	border-color: var(--color-primary);
	color: #fff;
}

.btn-outline-primary {
	background-color: var(--color-primary);
	border-color: var(--color-primary);
	color: #fff;
}

.btn-outline-primary:hover {
	background-color: var(--color-secondary);
	border-color: var(--color-secondary);
	color: #fff;
}

.btn-outline-secondary {
	background-color: var(--color-secondary);
	border-color: var(--color-secondary);
	color: #fff;
}

.btn-outline-secondary:hover {
	background-color: var(--color-primary);
	border-color: var(--color-primary);
	color: #fff;
}

a[href^="tel"] {
	text-decoration: none;
	color: var(--color--text);
}

a[href^="tel"]:hover {
	text-decoration: none;
	color: var(--color-secondary);
}

/* HEADER */

.navbar {
	padding: 0.7rem 0;
}

.navbar-brand {
	margin: 0 0.7rem 0 0;
}

.navbar-toggler {
	border: none;
}

.navbar-toggler-icon {
	background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='rgba%28183, 154, 81%29' stroke-width='2' stroke-linecap='round' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

.navbar-toggler:focus {
	box-shadow: none;
}

.navbar-nav {
	align-items: center;
}

.navbar-nav li a {
	color: var(--color--text);
	text-transform: uppercase;
	text-decoration: none;
	padding: 0.65rem;
	font-size: 0.8rem;
	display: block;
}

/* .navbar-nav li {
	display: flex;
	justify-content: center;
	align-items: center;
} */

.navbar-nav li.wpml-ls-menu-item a {
	padding: 0.85rem 0.4rem;
}

.navbar-nav li.wpml-ls-menu-item {
	position: relative;
}

.navbar-nav li.wpml-ls-menu-item::after {
	content: "";
	position: absolute;
	top: 50%;
	right: 0;
	width: 1px;
	height: 12px;
	background-color: var(--color--text);
	transform: translateY(-50%);
}

.navbar-nav li.wpml-ls-menu-item:last-child::after {
	display: none;
}

.navbar-nav li a:hover {
	color: var(--color-primary);
}

.navbar-nav li a:focus {
	color: var(--color-primary);
}

.navbar-nav li a:active {
	color: var(--color-primary);
}

.navbar-nav li.current-menu-item > a,
.navbar-nav li.current-menu-ancestor > a,
.single-post .navbar-nav li.current_page_parent > a,
.single-produits .navbar-nav li.menu-item-object-produits > a,
.wpml-ls-current-language a {
	color: var(--color--text);
	font-weight: 700;
}

.sub-menu li.current-menu-item > a {
	color: var(--color-secondary);
}

.sub-menu {
	position: absolute;
	left: 50%;
	width: 100vw;
	background: #fff;
	display: none;
	z-index: 2;
	border-top: 2px solid #eee;
	border-bottom: 2px solid #000;
	list-style: none;
	margin: 0;
	padding: 0.4rem;
	transform: translate(-50%, 0);
}

.sub-menu .sub-menu {
	display: block;
	position: static;
	border: none;
	width: auto;
	transform: none;
}

.sub-menu li {
	max-width: 1000px;
	margin: 0 auto;
	padding: 0 1.2rem;
}

.sub-menu li a:hover {
	color: var(--color-secondary);
}

.sub-menu li a {
	padding: 0.3rem 0.85rem;
}

.navbar-nav li:hover .sub-menu {
	display: block;
}

.social-list__item {
	padding: 0 0.3rem;
	display: flex;
	align-items: center;
}

.social-list__link svg {
	color: var(--color-primary);
	fill: var(--color-primary);
}

.social-list__link:hover,
.social-list__link:hover svg {
	color: var(--color-secondary);
	fill: var(--color-secondary);
}

/* HOMEPAGE */

.home-slider__item {
	position: relative;
	display: flex;
	aspect-ratio: 1000/505;
}

.home-slider__item img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	z-index: 0;
}

.home-slider__content {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	align-items: start;
	padding: 7rem;
	max-width: 650px;
}

.home-slider__title {
	color: #fff;
	font-family: var(--font-secondary);
	font-size: 4rem;
	text-transform: uppercase;
	font-style: italic;
}

.slick-dots {
	position: absolute;
	bottom: 0;
	margin: 0;
	left: 0;
	width: 100%;
	padding: 1rem 0;
	display: flex;
	justify-content: center;
	align-items: center;
}

.slick-dots li {
	text-align: center;
	list-style: none;
}

.slick-dots li button {
	border-radius: 50%;
	width: 16px;
	height: 16px;
	background: var(--color-primary);
	text-indent: -99999px;
	border: none;
	margin: 0 0.3rem;
}

.slick-dots li.slick-active button {
	background: #fff;
}
.article-product__thumbnail .slick-dots li.slick-active button {
	background: var(--color-light);
}

.breadcrumb {
	padding: 2rem 0;
	margin: 0;
	font-family: var(--font-secondary);
	letter-spacing: 2px;
	text-transform: uppercase;
	font-size: 0.8rem;
	font-weight: 500;
}

.breadcrumb a {
	text-decoration: none;
}

.breadcrumb .current-item {
	color: var(--color-primary);
}

.breadcrumb > span {
	margin: 0 0.3rem;
}

/* ABOUT */

.boulanger-image {
	margin-bottom: 2rem;
}

.boulanger__content {
	text-wrap: pretty;
}

.product-category {
	position: relative;
	display: flex;
	flex-direction: column;
}

.product-dispo {
	font-weight: 400;
	font-size: 0.7rem;
}

.single .product-dispo {
	font-size: 1.2rem;
}

.product-category__image {
	margin-bottom: 0.7rem;
	overflow: hidden;
	padding: 1rem;
	aspect-ratio: 1/1;
}

.product-category__image img {
	aspect-ratio: 1/1;
	border-radius: 50%;
	object-fit: cover;
	object-position: center;
	width: 100%;
	height: auto;
}

.product__sub-section {
	background: var(--color-secondary);
}

.sub-category__title {
	text-transform: uppercase;
	font-size: 2.2rem;
	text-align: center;
	letter-spacing: 3px;
}

.product__sub-section:nth-child(2n) {
	background: var(--color-light);
}

.product-category__title {
	text-transform: uppercase;
	color: var(--color-primary);
	font-family: var(--font-primary);
	font-weight: 700;
	font-size: 0.75rem;
	line-height: 1.6;
}

.product-category__link {
	text-decoration: none;
	color: var(--color-primary);
}

.product-category__link::before {
	content: "";
	position: absolute;
	bottom: -20px;
	left: 50%;
	width: 55%;
	height: 2px;
	background-color: var(--color-secondary);
	opacity: 0;
	transform: translate(-50%, 0);
	transition: all 0.4s ease;
	z-index: 1;
}

.product__sub-section:nth-child(even) .product-category__link::before {
	background: var(--color-secondary);
}

.product__sub-section:nth-child(odd) .product-category__link::before {
	background: var(--color-light);
}

.product-category__link:hover::before {
	opacity: 1;
	transform: translate(-50%, 0);
	bottom: -10px;
}

.product-category__link:hover,
.product__sub-section:nth-child(2n) .product-category__link:hover {
	text-decoration: none;
	color: var(--color-secondary);
}

.product__sub-section .product-category__link:hover {
	color: var(--color-light);
	text-decoration: none;
}

.notice {
	font-size: 0.75rem;
}

/* FOOTER */

.footer-title {
	font-family: var(--font-primary);
	font-weight: 700;
	font-size: 0.8rem;
	text-transform: uppercase;
	margin-bottom: 1.1rem;
}

.footer {
	font-size: 0.9rem;
}

.footer li a {
	text-decoration: none;
}

.footer .wpml-ls-item {
	display: none;
}

.adress-bloc strong {
	font-size: 0.8rem;
}

.adress-bloc a {
	text-decoration: none;
}

.article-product {
	padding: 1.5rem;
}

.article-product__title {
	color: var(--color-secondary);
	position: relative;
	margin-bottom: 2.5rem;
	text-transform: uppercase;
	font-size: 2.1rem;
}

.article-product__title::after {
	content: "";
	position: absolute;
	bottom: -20px;
	left: 0;
	width: 120px;
	height: 2px;
	background-color: var(--color-secondary);
	z-index: 1;
}

.article-product__price-span {
	color: var(--color-primary);
	font-weight: 700;
	min-width: 100px;
}

.allergenes {
	font-size: 0.8rem;
}

.our-news__title {
	color: #fff;
	text-transform: uppercase;
	letter-spacing: 2px;
	font-size: 1.4rem;
}

.our-news__item-title {
	font-size: 0.9rem;
	text-transform: uppercase;
	font-family: var(--font-primary);
}

.our-news__item-title a {
	text-decoration: none;
	color: var(--color-primary);
}

.our-news__item-title a:hover {
	text-decoration: none;
	color: #fff;
}

.card-img-top {
	/* aspect-ratio: 1920/1080;
	object-fit: cover; */
	width: 100%;
	height: auto;
	border-radius: 0;
}

.card-title {
	text-decoration: none;
	color: var(--color-primary);
	transition: all ease 0.4s;
}

.card:hover .card-title {
	text-decoration: none;
	color: var(--color-secondary);
}

.grid-item,
.grid-sizer {
	width: 33.3333333%;
}

.grid-item .card {
	padding: 0 1.3rem;
	border: none;
	margin-bottom: 2rem;
	border-radius: 0;
}

.post-categories {
	color: #000;
	text-transform: uppercase;
	font-weight: 700;
}

.post-categories li {
	margin-right: 0.7rem;
	font-size: 0.7rem;
}

.post-categories li a {
	text-decoration: none;
}

.post-categories li:last-child {
	margin-right: 0;
}

.post-filters ul {
	padding-left: 2.7rem;
}

.post-filters ul li a {
	text-decoration: none;
	color: var(--color-primary);
	padding: 0.8rem 0.5rem;
	font-size: 0.9rem;
	text-transform: uppercase;
	font-weight: 700;
	display: block;
}

.post-filters ul li a:hover,
.post-filters ul li a.active {
	text-decoration: none;
	color: var(--color-secondary);
}

.article-news__thumbnail {
	margin: 2.2rem 0;
}

.article-news__header {
	text-align: center;
}

.article-news__header h1 {
	font-size: 2.5rem;
	color: var(--color-primary);
}

.article-news__header {
	text-align: center;
}

.article-news__date {
	font-style: italic;
	font-size: 1.2rem;
	font-family: var(--font-secondary);
}

.article-news__thumbnail {
	aspect-ratio: 2/1;
}

.article-news__thumbnail img {
	object-fit: cover;
	object-position: center;
	width: 100%;
	height: 100%;
}

.single-bottom-nav {
	font-family: var(--font-secondary);
	text-transform: uppercase;
	margin-top: 3rem;
}

.single-bottom-nav a {
	text-decoration: none;
	letter-spacing: 2px;
}

.single-bottom-nav a[rel="next"] span {
	margin-left: 0.5rem;
}
.single-bottom-nav a[rel="prev"] span {
	margin-right: 0.5rem;
}

.single .post-categories {
	justify-content: center;
}

.address {
	color: #fff;
}

.address a {
	color: #fff;
}

.address a:hover {
	text-decoration: none;
	color: var(--color-primary);
}

.address.bg--light {
	color: var(--color--text);
}

.address.bg--light a {
	color: var(--color--text);
}

.address.bg--light a:hover {
	text-decoration: none;
	color: var(--color-primary);
}

.address__title {
	font-size: 2.2rem;
}

.address__icon-wrapper {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 20px;
	height: 20px;
	background: var(--color-primary);
	border-radius: 50%;
	margin-right: 0.8rem;
}

.address__metas-list {
	margin-bottom: 2rem;
}

.address__metas-list li {
	margin-bottom: 0.8rem;
}

.address__icon-wrapper svg {
	fill: var(--color-secondary);
}

.bg--light .address__icon-wrapper svg {
	fill: #fff;
}

.address-day {
	margin-right: 1rem;
	min-width: 25%;
}

.goverlay {
	background-color: rgba(139, 17, 24, 0.92);
}

.aligncenter {
	display: block;
	margin-left: auto;
	margin-right: auto;
}

.form-control {
	border-radius: 30px;
	border: 1px solid var(--color-primary);
}

/* RESPONSIVE */

/* `xxl` applies to x-large devices (large desktops, less than 1400px)*/
@media (max-width: 1399.98px) {
}
/* `xl` applies to large devices (desktops, less than 1200px)*/
@media (max-width: 1199.98px) {
	.home-slider__content {
		padding: 3rem;
	}

	.home-slider__title {
		font-size: 3rem;
	}
}

/* `lg` applies to medium devices (tablets, less than 992px)*/
@media (max-width: 991.98px) {
	.navbar-nav {
		align-items: start;
	}
	.sub-menu {
		position: relative;
		border: none;
		padding-left: 1.4rem;
		left: 0;
		transform: none;
		width: auto;
	}
	.sub-menu .sub-menu {
		display: none;
	}

	.sub-menu .sub-menu {
		padding-left: 0;
	}

	.sub-menu li a {
		padding: 0.5rem;
	}

	.sub-menu li {
		position: relative;
	}

	.navbar-nav li:hover .sub-menu {
		display: none;
	}

	.sub-menu li::before {
		content: "";
		position: absolute;
		left: 10px;
		top: 15px;
		width: 18px;
		height: 2px;
		display: block;
		background: var(--color-primary);
		transform: translate(-100%, 0);
	}

	.navbar-nav li.wpml-ls-menu-item::after {
		display: none;
	}

	.footer li a {
		padding: 0.4rem 0;
		display: block;
	}

	.offcanvas {
		padding-bottom: 2rem;
		overflow: scroll;
	}

	.navbar-nav {
		flex-direction: row;
		flex-wrap: wrap;
	}

	.navbar-nav .menu-item {
		width: 100%;
	}

	.navbar-nav .menu-item.wpml-ls-item {
		width: auto;
	}

	.navbar-nav .menu-item.wpml-ls-item::after {
		content: "";
		position: absolute;
		width: 2px;
		height: 26px;
		background: var(--color-primary);
		display: block;
		top: 50%;
		right: 0;
		transform: translate(-50%, -50%);
	}

	.navbar-nav .menu-item.wpml-ls-item:last-child::after {
		display: none;
	}
	.m-p0 {
		padding: 0 !important;
	}

	.navbar-nav li.menu-item-has-children > a {
		align-items: center;
		display: flex;
	}

	.navbar-nav li.menu-item-has-children > a::after {
		content: "";
		width: 20px;
		height: 20px;
		background: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23b79a51' d='M7.41 8.59L12 13.17l4.59-4.58L18 10l-6 6-6-6z'/%3E%3C/svg%3E") no-repeat center center;
	}
}

/*`md` applies to small devices (landscape phones, less than 768px)*/
@media (max-width: 767.98px) {
	html {
		font-size: 14px;
	}

	.section {
		padding: 3rem 1rem;
	}

	.social-list {
		margin-top: 2rem;
	}

	.navbar-nav li.wpml-ls-menu-item a {
		padding: 0.85rem;
	}

	.social-list__link {
		margin: 0 0.7rem;
	}

	.home-slider__item {
		aspect-ratio: 3/2;
	}

	.home-slider__content {
		padding: 1rem;
	}

	.home-slider__title {
		font-size: 2.7rem;
	}

	.slick-dots {
		position: relative;
	}

	.slick-dots li.slick-active button {
		background: var(--color--text);
	}

	.grid-item {
		width: 100%;
	}

	.grid-item .card {
		padding: 0;
	}

	.home-slider.bg--light {
		background: #fff !important;
	}

	.single-bottom-nav a {
		font-size: 0.9rem;
	}

	.post-filters ul {
		padding: 0;
	}
}

/* `sm` applies to x-small devices (portrait phones, less than 576px)*/
@media (max-width: 575.98px) {
}

/* PRINT */
@media print {
	* {
		background: transparent !important;
		color: #000 !important;
		box-shadow: none !important;
		text-shadow: none !important;
	}
	a,
	a:visited {
		text-decoration: underline;
	}
	a[href]:after {
		content: " (" attr(href) ")";
	}
	abbr[title]:after {
		content: " (" attr(title) ")";
	}
	.ir a:after,
	a[href^="javascript:"]:after,
	a[href^="#"]:after {
		content: "";
	}
	pre,
	blockquote {
		border: 1px solid #999;
		page-break-inside: avoid;
	}
	thead {
		display: table-header-group;
	}
	tr,
	img {
		page-break-inside: avoid;
	}
	img {
		max-width: 100% !important;
	}
	@page {
		margin: 0.5cm;
	}
	p,
	h2,
	h3 {
		orphans: 3;
		widows: 3;
	}
	h2,
	h3 {
		page-break-after: avoid;
	}
}
