body {
	/* background-image: url('../img/wooden-bg.jpg');
	background-repeat: no-repeat;
	background-size: cover;
	background-attachment: fixed;    
	background-position: center; */
	font-family: 'Montserrat', sans-serif;
	line-height: 1.8;
    font-size: 1rem;
	font-weight: 400;
	margin: 0;
	/* position: fixed; */
	width: 100%;
	height: 100vh;
	color: #555;
	letter-spacing: -0.5px;
}

p {
	line-height: 1.8;
}

input,
textarea {
	font-family: 'Montserrat', sans-serif;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	transition: all .2s ease-in-out;
}

.btn {
	background-color: #EE300C;
	border: 1px solid #EE300C;
	color: #fff;
	padding: 10px 20px;
    font-size: 1rem;
    font-weight: 600;	
	cursor: pointer;
}

.btn:hover {
	background-color: transparent;
	color: #EE300C;
	border-color: #EE300C;
}

.px-25 {
	padding: 0 25px;
}

h1, h2, h3, h4, h5, h6 {
	color: #504037;
	line-height: 1.5;
	letter-spacing: -0.5px;
}

h1, h2 {
	font-size: 1.75rem;
    margin: 0 0 20px;
	font-weight: 700;
}

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

.d-flex {
	display: flex;
}

.justify-between {
	justify-content: space-between;
}

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

.alert {
    position: relative;
    padding: 0.75rem 1.25rem;
    margin-bottom: 1rem;
    border: 1px solid transparent;
    border-radius: 0.25rem;
}

.alert-success {
    color: #155724;
    background-color: #d4edda;
    border-color: #c3e6cb;
}

.alert-danger {
    color: #721c24;
    background-color: #f8d7da;
    border-color: #f5c6cb;
}

.container {
	max-width: 1200px;
	margin: 0 auto;
}

ul li {
	line-height: 2.3;
}

header {
	position: relative;
	background-image: url('../img/header-lao.png');
	background-size: cover;
    background-position: center;
	width: 100%;
	height: 100%;
	max-height: 400px;
	z-index: 1;
}

.dark-gradient {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 0;
	background: rgb(0,0,0);
	background: -moz-linear-gradient(180deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0) 30%);
	background: -webkit-linear-gradient(180deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0) 30%);
	background: linear-gradient(180deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0) 30%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000000",endColorstr="#000000",GradientType=1);
}

.menu-flex {
	display: flex;
	justify-content: space-between;
	padding: 0 25px;
}

header .logo {
	z-index: 2;
}

header .logo a {
	display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1;
	text-decoration: none;
	color: #000;
	text-transform: uppercase;
	font-size: 1.3rem;	
}

header .logo a img {
	box-shadow: 5px 10px 15px 0px rgba(0,0,0,0.2);
    border-radius: 100%;
}

header .logo a span.small {
	font-size: 60%;
}

header .logo a span.big {
	font-size: 120%;
}

header ul {
	list-style: none;
	display: flex;
	gap: 2.5rem;
	padding: 15px 0 0;
	margin: 0;
}

header ul li a {
	position: relative;
	color: #fff;
	text-decoration: none;
	font-weight: 600;
	font-size: 0.9rem;
}

header ul li a:hover {
	color: #fff;
}

header ul li a:after {
	content: '';
	position: absolute;
	bottom: -7px;
	left: 0;
	width: 100%;
	height: 2px;
	background-color: transparent;
}

header ul li a.active:after {
	background-color: #EE300C;
}

header ul li a:hover:after {
	content: '';
	position: absolute;
	bottom: -7px;
	left: 0;
	width: 100%;
	height: 2px;
	background-color: rgba(255,255,255,0.5);
	transition: background-color .25s ease-in-out;
}

header button.mobile-menu,
header button.close-mobile-menu {
	display: none;
	background: none;
	border: none;	
	position: absolute;
	top: 10px;
	right: 25px;
	cursor: pointer;
}

main {
	min-height: 90vh;
}

.dark-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,0.5);
	z-index: 0;
}

#hero {
	position: relative;
	padding-top: 40px;
    min-height: 500px;
}

.content .container,
#hero .container {
	max-width: 890px;
}

.content .container.container-md {
	max-width: 1000px;
}

.content .container.container-lg {
	max-width: 1100px;
}

.accueil-p {
	display: flex;
	align-items: center;
    gap: 80px;
}

.accueil-p img {
	/* padding: 10px; */
    border: 2px solid #504037;
	flex: 1;
	max-width: 300px;
	height: 100%;
	/* box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6); */
	box-shadow: 5px 7px 15px 5px rgba(0, 0, 0, 0.1);
	/* border-style: solid;
    border-width: 15px;
    border-top-color: #333333;
    border-right-color: black;
    border-bottom-color: #333333;
    border-left-color: black;
    box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6); */
}

.accueil-p p {
	text-align: justify;
	margin: 0;
	max-width: 500px;
}

.accueil-p p:first-of-type {
	margin: 0 0 20px;
}

.accueil-1 {
	position: relative;
}

/* .accueil-1::after {
	content: "";
    position: absolute;
    width: 320px;
    height: 100%;
    background-image: url('../img/leaves-2.png');
    background-repeat: no-repeat;
    right: 0;
    top: 0;
    z-index: 1;
    background-size: 320px;
    opacity: 0.05;
} */

.accueil-2 {	
	margin-top: 70px;
	justify-content: end;
	position: relative;
}

/** SHOWROOM **/
/* .gallery {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
}

.gallery a {
	cursor: pointer;
} */

.gallery {
	display: grid;
	/* grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); */
	grid-template-columns: repeat(4, 1fr);
	/* grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); */
	grid-gap: 40px;
}
  
.gallery a {
	cursor: pointer;
	overflow: hidden;
	/* background-color: red; */
	box-shadow: 5px 7px 15px 5px rgba(0, 0, 0, 0.1);
  	aspect-ratio: 1; /* square items */
}
  
.gallery img {
	width: 0;
	height: 0;
	min-height: 100%;
	min-width: 100%;
	display: block;
	object-fit: cover; /* avoid distortion*/
	transition: all 0.2s ease-in-out;
}

.gallery a:hover img {
	transform: scale(1.15);
}

#contact .container {
	max-width: 600px;
}

.tab-content {
	padding: 40px 20px;
}

.nav-tabs {
	border: none;
}

.nav-tabs li {
	flex: 1;	
}

.nav-tabs .nav-link {
	background-color: transparent;
	border: none;
	border-bottom: 2px solid #ccc;
	color: #504037;
	width: 100%;
    font-weight: 600;
	opacity: 0.7;
	font-size: 18px;
}

.nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active {
	color: #504037;
	background-color: transparent;
    border-color: #EE300C;     
	opacity: 1;
}

.accordion-button {
	font-weight: 600;
	outline: 0;
	color: #504037;
}

.accordion-button::after {
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23EE300C'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-button:focus {
	box-shadow: none;
}

.accordion-button:not(.collapsed) {
	background-color: #EE300C;
	color: #fff;
	box-shadow: inset 0 -1px 0 rgba(0,0,0,.07);
}

.accordion-button:not(.collapsed)::after {
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23FFFFFF'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

/* .accordion-body {
	font-size: 15px;
} */

.accordion-item img {
	width: 100%;
	height: 100%;
}

#atelier-creation h2 {
	text-align: center;
    margin: 40px auto;
    background: #EE300C;
    font-size: 20px;
    color: #fff;
    padding: 10px 25px;
}

figure {
	background: #f5f5f5;
	padding: 25px 60px;
	margin: 0 0 30px;
}
blockquote {
	position: relative;
	margin: 0 0 20px;
}
blockquote p {
	margin: 0;
	font-style: italic;
}
blockquote:before {
	position: absolute;
	top: 0;
	left: -45px;
	content: url('../img/quote.svg');
	/* content: "\f10d"; */
	/* font-family: 'Fontawesome'; */
	/* font-size: 40px; */
	/* color: #999; */
	width: 30px;
	opacity: 0.2;
}  
figcaption {
	position: relative;
	text-align: right;
}
figcaption:after {
	content: "";
	display: block;
	position: absolute;
	top: 50%;
	left: 0;
	width: 100%;
	height: 1px;
	background: #ccc;
}
figcaption span {
	display: inline-block;
	position: relative;
	margin-right: 40px;
	padding: 0 8px;
	background: #f5f5f5;
	z-index: 1;
}

.contact__form {
	margin-top: 40px;
}

.input-field {
	display: block;
	margin-bottom: 20px;
}

.input-field input,
.input-field textarea {
	width: 100%;
	height: 50px;
	border: 1px solid #ddd;
	max-width: 400px;
	padding: 0 15px;
	font-size: 1rem;
}

.input-field textarea {
	min-height: 150px;
	padding: 15px;
}

.input-field input:focus,
.input-field textarea:focus {
	border-color: #EE300C;
}

footer {
	margin: 100px auto 0;
	padding: 25px 0;
	border-top: 1px solid #e5e5e5;	
}

footer p {
	padding: 0;
	margin: 0;
	opacity: 0.7;
	font-size: 0.9rem;
}

@media (max-width: 1999.98px) {
	header {
		max-height: 300px;
	}
}

/* X-Large devices (large desktops, less than 1400px) */
@media (max-width: 1399.98px) {
	header {
		max-height: 275px;
	}
}

/* Large devices (desktops, less than 1200px) */
@media (max-width: 1199.98px) {
	header {
		max-height: 250px;
	}
}

/* Medium devices (tablets, less than 992px) */
@media (max-width: 991.98px) {
	h1, h2 {
		font-size: 1.5rem;
	}
	header button.mobile-menu {
		display: block;
	}
	header ul {
		display: none;
		width: 100%;
		height: 100vh;
		position: absolute;
		top: 0;
		left: 0;
		padding: 60px 0 0;
		background: #fff;
		/* margin-top: 65px; */
	}
	header ul li a {
		font-size: 1.2rem;
		padding: 0 60px;
		margin: 35px 0;
		display: block;
		color: #504037;
	}
	header ul li a.active {
		color: #EE300C;
	}
	header ul li a:after {
		content: none;
		/* bottom: -5px; */
	}
	.accueil-p {
		gap: 50px;
	}
	.gallery {
		grid-template-columns: repeat(3, 1fr);
	}
}

/* Small devices (landscape phones, less than 768px) */
@media (max-width: 767.98px) {	
	.accueil-p {
		flex-direction: column;
		gap: 20px;
		text-align: center;
	}
	.accueil-p span {
		margin: 20px auto;
		display: block;
		max-width: 500px;
	}
	.accueil-p.accueil-2 {
		flex-direction: column-reverse;
	}
	.gallery {
		grid-template-columns: repeat(2, 1fr);
	}
}

/* X-Small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {

}
