@charset "UTF-8";
/* CSS Document */

body {
	margin: 0;
	padding: 0;
	height: 100vh;
  	width: 100vw;
	background-color: #2b2b2a;
	font-size: 16px;
	font-family: "Roboto Regular Light";
}
a{
	text-decoration:none;
	
}
a:hover{
	text-decoration: none;
	text-shadow: red;
}
a:visited{
	text-decoration: none;
}

header {
	display: flex;
	position: fixed;
	margin: -20px 0 0;
	padding: 0;
	background-color: #2b2b2a;
	width: 100%;
	height: 1.5rem;
	z-index: 100
}

main {
	display: block;
	padding: 0;
	width: 100%;
	max-width: 1920px;
	justify-content: center;
	align-content: center;
	align-items: center;
	height: 40vh;
	font-family: "Roboto Regular Light";
	font-size: 0.875rem;
	color: #FFFFFF;
	margin: 5vh auto auto;
}

hero {
	display: flex;
	margin: 0;
	padding: 0;
	width: 100%;
	height: 20vh;
	font-family: "Roboto Regular Light";
	font-size: 0.875rem;
	align-content: center;
	z-index: 10;
	
}

footer {
  	background-color: #625F56;
  	color: #ffffff;
  	font-family: 'RobotoL-light';
  	position: fixed;
  	bottom: 0;
  	width: 100%;
	height: 20px;
  	display: block;
	margin-left: auto;
  	justify-content: space-between;
  	align-items: center;
  	font-size: 0.2rem;
	padding: 0.2rem 0 0;
  	z-index: 20;
}


.global-window {

	max-width: 1920px;
	width: auto;
	height: 100vh;
	margin : 0 auto 0 auto;
}

/* définition des polices */


.roboto-light {
  	font-family: "Roboto", sans-serif;
  	font-optical-sizing: auto;
  	font-weight: 100;
  	font-style: normal;
  	font-variation-settings:"wdth" 100;
}

/*switch langue */
.lang-switch {
  position: relative;
  top: 20px;
  left: 20%;
  font-size: 0.9rem;
  color: #ffffff;
  z-index: 100;
}
.lang-switch ul {
  display: flex;
  gap: 0.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
}

.lang-switch li {
  position: relative;
}

.lang-switch li a {
  text-decoration: none;
  color: #ffffff;
  font-family: 'Roboto', sans-serif;
  transition: color 0.3s ease, opacity 0.3s ease;
  opacity: 0.8;
  font-size: 0.7rem;
}

.lang-switch li a:hover,
.lang-switch li a.active {
  color: #cab470;
  opacity: 1;
}


/* main nav définition */

.main-nav {
	display: flex;
	margin: 0.7vh 3vh 0 auto;
}

.main-nav ul {
  	display: flex;
  	gap: 2rem;
  	list-style: none;
  	margin: 0;
  	padding: 0;
  	position: relative;
}
.main-nav li a.active::after {
  	content: "";
  	display: block;
  	background: url('../img/tache_peinture_desktop.png') no-repeat center;
  	background-size: contain;
  	width: 30px;
  	height: 18px;
  	position: absolute;
  	left: 50%;
  	transform: translateX(-50%);
  	bottom: -20px;
}
.main-nav li {
  	position: relative;
}

.main-nav li a {
  	text-decoration: none;
  	color: #ffffff;
  	font-family: 'Roboto-light';
  	transition: color 0.3s ease, opacity 0.3s ease;
  	opacity: 0.8;
  	font-size: 0.7rem;
}

.main-nav li a:hover,
.main-nav li a.active {
  	color: #cab470;
  	opacity: 1;
}

.main-nav li a.active::after {
  	content: "";
  	display: block;
  	background: url('../img/tache_peinture_desktop.png') no-repeat center;
  	background-size: contain;
  	width: 30px;
  	height: 18px;
  	position: absolute;
  	left: 50%;
  	transform: translateX(-50%);
  	bottom: -20px;
}

/* Burger icon hidden on desktop */

.burger-icon {
  	display: flex;
  	flex-direction: column;
  	cursor: pointer;
  	position: fixed;
  	top: 13px;
  	left: 13px;
  	z-index: 1000;
  	padding: 5px;
}
.burger-icon span {
	height: 4px;
	width: 15px;
  	background-color: #cab470;
  	margin: 2px 0;
}

/* Make it appear on mobile
@media screen and (max-width: 1024px) {
  .burger-icon {
    display: flex;
  }
}*/

/* Side navigation menu */

.sidenav {
  	height: 250px;
  	width: 200px;
  	position: fixed;
  	top: 20px;
  	left: -200px;
  	background-color: #705e0c;
  	transition: left 0.3s ease;
  	padding-top: 60px;
  	font-family: 'Roboto-light';
	font-size: 0.7rem;
	z-index: 1001;
}
.sidenav.active {
  	left: 0;
}
.sidenav .close {
  	position: absolute;
  	top: 10px;
  	right: 20px;
  	font-size: 30px;
  	color: white;
  	cursor: pointer;
}
.sidenav ul {
  	list-style: none;
  	padding: 0;
}
.sidenav ul li a {
  	display: block;
  	padding: 10px 20px;
  	color: white;
  	text-decoration: none;
}
.sidenav ul li a:hover {
  	background-color: #cab470;
  	color: #2b2b2a;
}

.footer-content {
	display: flex;
	font-family: "Roboto", sans-serif;
  	font-optical-sizing: auto;
  	font-weight: 300;
  	font-style: normal;
  	font-variation-settings:"wdth" 100;
	font-size: 0.6rem;
  	width: 60%;
  	margin-left: auto;
  	margin-right: auto;
  	justify-content: space-between;
  	align-items: center;
}

.footer-content .social {
  	display: flex;
  	align-items: center;
}

.footer-content .social img {
  	height: 20px;
  	margin-left: 0.5rem;
  	opacity: 1;
  	transition: opacity 0.3s ease;
}

.footer-content .social img:hover {
  	opacity: 0.6;
}

/* section about */
.about {
	display: flex;
	position: relative;
	justify-content: center;
	width: 100%;
	height: auto;
  	margin: auto;
  	padding: 0 1rem;
}
.about-content {
	display: flex;
	max-width: 50%;
	position: relative;
	margin: -40rem auto auto;
}
.about-texte {
	column-count: 3;
	-moz-column-count: 3;
	-webkit-column-count: 3;
	column-gap: 20px;
	-moz-column-gap: 20px;
	-webkit-column-gap: 20px;
	font-family: "Roboto", sans-serif;
  	font-optical-sizing: auto;
  	font-weight: 100;
  	font-style: normal;
  	font-variation-settings: "wdth" 100;
  	color: #ffffff;	
	text-align: justify;
	align-items: center;
	width: 70%;
}
.about-texte-gold {
	color: #cab470;
}
.about-texte img{
  	max-width: 100%;
	height: auto;
  	margin: 1em 0;
  	break-inside: avoid;
  	display: block;
}
@media screen and (min-width:1024px){
	.burger-icon{
		display: none;
	}
	.roboto-light {
  		font-family: "Roboto", sans-serif;
  		font-optical-sizing: auto;
  		font-weight: 100;
  		font-style: normal;
  		font-variation-settings: "wdth" 100;
		font-size: 14px;
}


}

