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

@font-face {
	font-family: "MADE Canvas Light";
	src: url("../fonts/madecanvaslight.otf");
}

@font-face {
	font-family: 'Acumin Variable Concept Bold';
	src: url("../fonts/acuminariableconcept.otf");
}


	
body{
	font-family: "MADE Canvas Light";
	margin: 0px; 
	padding: 0px;
	max-width: 100%;
    max-height: 100%;
	background-color: black;
}

/*CC SECTION*/
.image-gauche {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100px; /* Ajustez la taille selon vos besoins */
  height: auto; /* Permet de maintenir le ratio d'aspect de l'image */
}

@media (max-width: 600px) {
  .image-gauche {
    width: 50px; /* Plus petite taille pour les petits écrans */
  }
}
/*fin CC SECTION*/

/*NAVIGATION SECTION*/
nav{
	background-color: transparent;
	position: sticky;
	top: 0;
	font-family: "MADE Canvas Light";
	display: flex;
	justify-content: space-between;
	padding: 10px;
	z-index: 1;
}

nav h1{
	display: flex;
	margin-left: 19px;
	cursor: pointer;
	top: 0;
}
	nav ul{
	display: flex;
	list-style: none;
	margin-right: 10px;
	color: white;
}

nav ul li{
	margin-right: 33px;
	margin-top: 8px;
	display: flex;
	cursor: pointer;
	position: sticky;
}

nav ul li:hover{
	color: darkred;
}

nav a:link{
	color: white;
	text-decoration: none;
}

nav a:visited{
	color: white;
}

.burger{
	display:none;
	color: white;
	width: 24px;
	height: 17px;
	position: absolute;
	top: 30px;
	right: 30px;
	cursor: pointer;
	}

.burgerclose{
	display: none;
	color:white;
	width: 24px;
	height: 17px;
	position: absolute;
	top: 30px;
	right: 30px;
	cursor: pointer;
	
}
/* Par défaut : Sous-menus normaux (affichage à droite ou en dessous) */
.dropdown-content {
    position: absolute;
    background-color: darkgrey;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
    left: 0; /* Sous-menus affichés normalement */
    margin-left: 0;
}

/* Sous-sous-menus (imbriqués) */
.dropdown-content .dropdown .dropdown-content {
    left: 100%; /* Sous-sous-menus s'affichent normalement à droite */
    top: 0;
    margin-left: 0;
}

/* POUR LES PETITS ÉCRANS (Menu burger activé) */
@media all and (max-width: 680px) {
    /* Sous-menus principaux */
    .dropdown-contents {
        left: -100%; /* Déplace les sous-menus à gauche du menu principal */
        right: auto;
        margin-left: 0;
    }

    /* Sous-sous-menus (imbriqués) sur petits écrans */
    .dropdown-content .dropdown .dropdown-content {
        left: -100%; /* Déplace les sous-sous-menus à gauche des sous-menus */
        top: 0;
    }
}


@media all and (max-width: 680px){
	
	.element{
		display: none;
	}

	.sections{
		position: fixed;
		top:0;
		right: 0;
		width: 100vh;
		height: 100vh;
		background-color: black;
		justify-content:right;
		z-index: 1;
		display:none;
	}
	
	.sections.open{
		transform: initial;
		display: flex;
		animation: transformMenu 300ms ease-in-out forwards;
	}
	
	.burger{
		display:block;
		cursor: pointer;
	}
	.burger:hover{
		color:darkred;
	}
	.section.open{
		transform: initial;
	}
	
	.sectionsmenu{
		flex-direction: column;
		margin-top: 4em;
		margin-right: 3em;
		align-items: flex-start;
	}
	
	.sectionsmenu li{
		margin-bottom: 20px;
		
	}
	
	.burgerclose{
		display: block;
		cursor:pointer;
		
	}
	
}
	
@keyframes transformMenu{
	0%{
		transform: translateX(100%);
	}
		
	100%{
		transform: initial;
	}
}
/*FIN NAVIGATION SECTION*/

/*HEADER SECTION */
header{
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	margin-top: 30px;
	color: white;
}

hr{
	width: 25%;	
}
/*FIN HEADER SECTION */

/*INDEX SECTION */
#indexbody{
	background: url("../images/fond (4).jpg");
	background-size: cover;
}

/*FIN INDEX SECTION */

/*store SECTION */

#storebody{
	background: url("../images/fond (4).jpg");
	background-size: cover;
}

.world{
	display: flex;
	justify-content: center;
	margin-top: 50px;
}

.sphere{
	width: 600px;
	height: 600px;
	border:1px dashed yellow;
	border-radius: 50%;
	animation: world 40s linear infinite;
	position: relative; 
}

.spheres{
	width: 600px;
	height: 600px;
	border: 1px solid yellow;
	border-radius: 50%;
	animation: world2 40s linear infinite;
	transform-style: preserve-3d;
}

.spheres::before, .spheres::after{
	width: 600px;
	height: 600px;
	border: 1px solid yellow; 
	border-radius: 50%;
	content:"";
	left: 0;
	top: 0;
	position: absolute;
}

.spheres::before{
	transform: rotateX(-66.6deg);
}

.spheres::after{
	transform: rotateX(66.6deg);
}

@keyframes world{
	100%{
		transform: rotate(360deg);
	}
}

@keyframes world2{
	0%{
		transform: rotateX(1deg) rotateY(1deg) rotateZ(1deg);
	}
	0%{
		transform: rotateX(360deg) rotateY(360deg) rotateZ(360deg);
	}
}

.worldtexte{
	color: darkred;
	position: absolute;
	margin-top: 290px;
	font-size: 45px;
	animation: worldtext 10s linear infinite;

}

@keyframes worldtext{
	100%{
		transform: rotateY(360deg);
	}
}

/*FIN ABOUT SECTION */

/*CONTACT SECTION */

#contactbody{
	background: url("../images/fond (4).jpg");
	background-size: cover;
}
.contact .contactcolumn{
	display: flex;
	justify-content: center;
	margin-top:40px;
	font-size: 20px;
}
.contact-section .contact .contactcolumn p{
	border-bottom: 1px solid black;
}

.contact-section .contact .contactcolumn p:hover{
	border-bottom-color: white;
}


.contact-section .contact .contactcolumn a:link{
	color: white;
	text-decoration: none;
}

.contact-section .contact .contactcolumn a:visited{
	color: white;
}
/*FIN CONTACT SECTION */

/*SECTION WORKS*/
.works-section{
	display: flex;
	justify-content: center;
	color: white;
}

.workslignes{
	margin-top: 50px;
}

.work{
	margin-bottom: 10em;
	display: flex;
}

.work1{
	margin-right: 20px;
	margin-left: 20px;
}

.work img{
	display: block;
	width: 475px;
	cursor: pointer;
	background-size: cover;
	max-width: 100%;
    max-height: 100%;
}


.work img:hover{
	transition: 0.5s;
	opacity: 0.5;
}


/*FIN SECTION WORKS*/


/*artichauss*/	
.work-section{
	color: white;
}

.headerimage{
	width:100%;
	height: 100vh;
	background: url("../images/artichauss/AM14.jpg");
	background-size: cover;
	background-position: center; 
}

.title{
	margin-top: 1em;
	text-align: center;
	font-size: 4em;
}

.lowtittle{
	font-family: 'Acumin Variable Concept Bold';
	font-size: 10pt;
}


.description {
	font-family: "MADE Canvas Light";
	font-size: 20pt;
}

.projectdescription{
	margin-bottom: 5em;
	text-align: center;
}

.separation{
	border-top: 1px solid;
	width: 10%;
	margin-right: auto;
	margin-left: auto;
}

.projectinformations{
	display: flex;
	justify-content: center;
	text-align: center;
	margin-top: 5em;
}

.information{
	width: 20%;
}

.imageligne{
	display: flex;
	justify-content: center;
	margin-bottom: 40px;
}

.imageligne2{
	display: flex;
	justify-content: center;
	margin-bottom: 40px;
}

.imageligne2 img{
	display: block;
	width: 305px;
	background-size: cover;
	max-width: 100%;
    max-height: 100%;

}

.imageligne img{
	display: block;
	width: 475px;
	background-size: cover;
	max-width: 100%;
    max-height: 100%;
}

.image{
	margin-right: 20px;
	margin-left: 20px;
	}

@media all and (max-width: 680px){
	
	.work-section{
	}
	
	.title{
		margin-top: 1em;
		font-size: 4em;
		text-align: left;
	}
	.projectdescription{
		display: block;
		text-align: left;
		margin-bottom: 5em;
	}

	.projectinformations{
		display:block;
		text-align: left;
		margin-bottom: 5em;
	}
	.information{
		margin-bottom: 5em;
	}
	.description{
		font-size: 15pt;
	}
	.separation{
		display:none;
	}
	.imageligne{
		display: block;
		justify-content: center;
		margin-bottom: 40px;
	}
	.image{
		margin-bottom: 40px;
	}
	.row{
		margin:2em;
	}
	.projectimage{
		margin:1em;
	}
}

.pdf-container {
    width: 80%; /* Adjust as needed to fit within your layout */
    max-width: 800px; /* Optional: limit the maximum width */
    margin: 0 auto; /* Centers the container */
    text-align: center; /* Centers the text within the container */
}

.pdf-container embed {
    width: 100%; /* Ensures the PDF takes full width of the container */
    height: 600px; /* Adjust the height as needed */
}
/*FIN artichauss*/

/*video oxyfene portatif*/
.title-container {
    display: flex;
    justify-content: center; /* Centre horizontalement */
    align-items: center; /* Centre verticalement si besoin */
    text-align: center;
    margin: 20px 0; /* Ajuste l’espace entre les images */
}



.video-container {
    position: relative;
    padding-bottom: 56.25%; /* Ratio 16:9 */
    height: 0;
    overflow: hidden;
    max-width: 100%;
    background: #000;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
/*fin video oxyfene portatif*/


/*COLLECTION*/	
.work-section{
	color: white;
}

.headerimage4{
	width:100%;
	height: 100vh;
	background: url("../images/oxy/Fond.jpg");
	background-size: cover;
	background-position: center; 
}

.title{
	margin-top: 1em;
	text-align: center;
	font-size: 4em;
}

.lowtittle{
	font-family: 'Acumin Variable Concept Bold';
	font-size: 10pt;
}

.description2{
	font-family: 'Acumin Variable Concept Bold';
	font-size: 12pt;
}

.description {
	font-family: "MADE Canvas Light";
	font-size: 20pt;
}

.projectdescription{
	margin-bottom: 5em;
	text-align: center;
}

.separation{
	border-top: 1px solid;
	width: 10%;
	margin-right: auto;
	margin-left: auto;
}

.projectinformations{
	display: flex;
	justify-content: center;
	text-align: center;
	margin-top: 5em;
}

.information{
	width: 20%;
}

.imageligne{
	display: flex;
	justify-content: center;
	margin-bottom: 40px;
}

.imageligne2{
	display: flex;
	justify-content: center;
	margin-bottom: 40px;
}

.imageligne2 img{
	display: block;
	width: 305px;
	background-size: cover;
	max-width: 100%;
    max-height: 100%;

}

.imageligne img{
	display: block;
	width: 475px;
	background-size: cover;
	max-width: 100%;
    max-height: 100%;
}

.image{
	margin-right: 20px;
	margin-left: 20px;
	}

@media all and (max-width: 680px){
	
	.work-section{
	}
	
	.title{
		margin-top: 1em;
		font-size: 4em;
		text-align: left;
	}
	.projectdescription{
		display: block;
		text-align: left;
		margin-bottom: 5em;
	}

	.projectinformations{
		display:block;
		text-align: left;
		margin-bottom: 5em;
	}
	.information{
		margin-bottom: 5em;
	}
	.description{
		font-size: 15pt;
	}
	.separation{
		display:none;
	}
	.imageligne{
		display: block;
		justify-content: center;
		margin-bottom: 40px;
	}
	.image{
		margin-bottom: 40px;
	}
	.row{
		margin:2em;
	}
	.projectimage{
		margin:1em;
	}
}

.pdf-container {
    width: 80%; /* Adjust as needed to fit within your layout */
    max-width: 800px; /* Optional: limit the maximum width */
    margin: 0 auto; /* Centers the container */
    text-align: center; /* Centers the text within the container */
}

.pdf-container embed {
    width: 100%; /* Ensures the PDF takes full width of the container */
    height: 600px; /* Adjust the height as needed */
}
/*FIN colletion*/


/*Milanostreet*/	
.work-section{
	color: white;
}

.headerimages{
	width:100%;
	height: 100vh;
	background: url("../images/photo/M64.jpg");
	background-size: cover;
	background-position: center; 
}

.title{
	margin-top: 1em;
	text-align: center;
	font-size: 4em;
}

.lowtittle{
	font-family: 'Acumin Variable Concept Bold';
	font-size: 8pt;
}

.description {
	font-family: "MADE Canvas Light";
	font-size: 20pt;
}

.projectdescription{
	margin-bottom: 5em;
	text-align: center;
}

.separation{
	border-top: 1px solid;
	width: 10%;
	margin-right: auto;
	margin-left: auto;
}

.projectinformations{
	display: flex;
	justify-content: center;
	text-align: center;
	margin-top: 5em;
}

.information{
	width: 20%;
}

.imageligne{
	display: flex;
	justify-content: center;
	margin-bottom: 40px;
}

.imageligne2{
	display: flex;
	justify-content: center;
	margin-bottom: 40px;
}

.imageligne2 img{
	display: block;
	width: 305px;
	background-size: cover;
	max-width: 100%;
    max-height: 100%;

}

.imageligne img{
	display: block;
	width: 475px;
	background-size: cover;
	max-width: 100%;
    max-height: 100%;
}

.image{
	margin-right: 20px;
	margin-left: 20px;
	}

@media all and (max-width: 680px){
	
	.work-section{
	}
	
	.title{
		margin-top: 1em;
		font-size: 4em;
		text-align: left;
	}
	.projectdescription{
		display: block;
		text-align: left;
		margin-bottom: 5em;
	}

	.projectinformations{
		display:block;
		text-align: left;
		margin-bottom: 5em;
	}
	.information{
		margin-bottom: 5em;
	}
	.description{
		font-size: 15pt;
	}
	.separation{
		display:none;
	}
	.imageligne{
		display: block;
		justify-content: center;
		margin-bottom: 40px;
	}
	.image{
		margin-bottom: 40px;
	}
	.row{
		margin:2em;
	}
	.projectimage{
		margin:1em;
	}
}

.pdf-container {
    width: 80%; /* Adjust as needed to fit within your layout */
    max-width: 800px; /* Optional: limit the maximum width */
    margin: 0 auto; /* Centers the container */
    text-align: center; /* Centers the text within the container */
}

.pdf-container embed {
    width: 100%; /* Ensures the PDF takes full width of the container */
    height: 600px; /* Adjust the height as needed */
}
/*mIlanostreet*/


/*Desolation*/	
.work-section{
	color: white;
}

.headerimageF{
	width:100%;
	height: 100vh;
	background: url("../images/fifi/fifi (1).jpg");
	background-size: cover;
	background-position: center; 
}

.title{
	margin-top: 1em;
	text-align: center;
	font-size: 4em;
}

.lowtittle{
	font-family: 'Acumin Variable Concept Bold';
	font-size: 8pt;
}

.description {
	font-family: "MADE Canvas Light";
	font-size: 20pt;
}

.projectdescription{
	margin-bottom: 5em;
	text-align: center;
}

.separation{
	border-top: 1px solid;
	width: 10%;
	margin-right: auto;
	margin-left: auto;
}

.projectinformations{
	display: flex;
	justify-content: center;
	text-align: center;
	margin-top: 5em;
}

.information{
	width: 20%;
}

.imageligne{
	display: flex;
	justify-content: center;
	margin-bottom: 40px;
}

.imageligne2{
	display: flex;
	justify-content: center;
	margin-bottom: 40px;
}

.imageligne2 img{
	display: block;
	width: 305px;
	background-size: cover;
	max-width: 100%;
    max-height: 100%;

}
.imageligne3{
	display: flex;
	justify-content: center;
	margin-bottom: 40px;
}

.imageligne3 img{
	display: block;
	width: 995px;
	background-size: cover;
	max-width: 100%;
    max-height: 100%;

}

.imageligne img{
	display: block;
	width: 475px;
	background-size: cover;
	max-width: 100%;
    max-height: 100%;
}

.image{
	margin-right: 20px;
	margin-left: 20px;
	}

@media all and (max-width: 680px){
	
	.work-section{
	}
	
	.title{
		margin-top: 1em;
		font-size: 4em;
		text-align: left;
	}
	.projectdescription{
		display: block;
		text-align: left;
		margin-bottom: 5em;
	}

	.projectinformations{
		display:block;
		text-align: left;
		margin-bottom: 5em;
	}
	.information{
		margin-bottom: 5em;
	}
	.description{
		font-size: 15pt;
	}
	.separation{
		display:none;
	}
	.imageligne{
		display: block;
		justify-content: center;
		margin-bottom: 40px;
	}
	.image{
		margin-bottom: 40px;
	}
	.row{
		margin:2em;
	}
	.projectimage{
		margin:1em;
	}
}

.pdf-container {
    width: 80%; /* Adjust as needed to fit within your layout */
    max-width: 800px; /* Optional: limit the maximum width */
    margin: 0 auto; /* Centers the container */
    text-align: center; /* Centers the text within the container */
}

.pdf-container embed {
    width: 100%; /* Ensures the PDF takes full width of the container */
    height: 600px; /* Adjust the height as needed */
}
/*desolation*/

/*debut night*/	
.work-section{
	color: white;
}

/* Conteneur pour empiler les images horizontales */
.work-column {
    display: flex;
    flex-direction: column;
    gap: 75.5px; /* Espace entre les images horizontales */
}

.headerimageN{
	width:100%;
	height: 100vh;
	background: url("../images/photo/night (3).png");
	background-size: cover;
	background-position: center; 
}

.imageligne{
	display: flex;
	justify-content: center;
	margin-bottom: 40px;
}

.imageligne2{
	display: flex;
	justify-content: center;
	margin-bottom: 40px;
}

.imageligne2 img{
	display: block;
	width: 305px;
	background-size: cover;
	max-width: 100%;
    max-height: 100%;

}
.imageligne4{
	display: flex;
	justify-content: center;
	margin-bottom: 40px;
}

.imageligne4 img{
	display: block;
	width: 475px;
	background-size: cover;
	max-width: 100%;
    max-height: 100%;

}

.imageligne img{
	display: block;
	width: 475px;
	background-size: cover;
	max-width: 100%;
    max-height: 100%;
}

.image{
	margin-right: 20px;
	margin-left: 20px;
	}

@media all and (max-width: 680px){
	
	.work-section{
	}
	
	.title{
		margin-top: 1em;
		font-size: 4em;
		text-align: left;
	}
	.projectdescription{
		display: block;
		text-align: left;
		margin-bottom: 5em;
	}

	.projectinformations{
		display:block;
		text-align: left;
		margin-bottom: 5em;
	}
	.information{
		margin-bottom: 5em;
	}
	.description{
		font-size: 15pt;
	}
	.separation{
		display:none;
	}
	.imageligne{
		display: block;
		justify-content: center;
		margin-bottom: 40px;
	}
	.image{
		margin-bottom: 40px;
	}
	.row{
		margin:2em;
	}
	.projectimage{
		margin:1em;
	}
}

.pdf-container {
    width: 80%; /* Adjust as needed to fit within your layout */
    max-width: 800px; /* Optional: limit the maximum width */
    margin: 0 auto; /* Centers the container */
    text-align: center; /* Centers the text within the container */
}

.pdf-container embed {
    width: 100%; /* Ensures the PDF takes full width of the container */
    height: 600px; /* Adjust the height as needed */
}
/*fin night*/


/* Styles généraux pour les liens de navigation et les titres */
li a, .dropbtn {
    padding: 10px 16px;
    text-decoration: none;
    color: white;
    display: inline-block;
}

/* Styles pour les éléments de la liste déroulante */
li.dropdown {
    display: inline-block; /* Afficher les titres en ligne */
    position: relative; /* Nécessaire pour le positionnement absolu du contenu déroulant */
}

.dropdown-content {
    display: none; /* Cacher les menus déroulants par défaut */
    position: absolute;
    background-color: darkgrey;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}

.dropdown-content a {
    padding: 12px 16px;
    text-decoration: none;
    color: black;
    text-align: left;
    display: block; /* Assure que chaque élément est affiché sur une nouvelle ligne */
}

.dropdown-content a:hover {
    color: darkred; /* Change la couleur au survol */
}

/* Afficher le menu déroulant uniquement lorsque la souris survole le titre parent */
.dropdown:hover > .dropdown-content {
    display: block;
}

/* Pour les sous-menus imbriqués */
.dropdown-content .dropdown {
    position: relative;
}

.dropdown-content .dropdown .dropdown-content {
    top: 0;
    left: -130%; /* Alignement du sous-menu à droite du parent */
    margin-left: 1px; /* Petite marge entre le parent et le sous-menu */
}

.dropdown-content .dropdown:hover .dropdown-content {
    display: block; /* Afficher le sous-menu lorsque l'utilisateur survole le parent */
}

/* Ajout d'un effet de transition pour les menus déroulants */
.dropdown-content, .dropdown-content .dropdown-content {
    transition: all 0.3s ease-in-out;
}

/*debut noix*/

.header2images{
	width:100%;
	height: 100vh;
	background: url("../images/noix/34.jpg");
	background-size: cover;
	background-position: center; 
}
@media all and (max-width: 680px){
	
	.work-section{
	}
	
	.title{
		margin-top: 1em;
		font-size: 4em;
		text-align: left;
	}
	.projectdescription{
		display: block;
		text-align: left;
		margin-bottom: 5em;
	}

	.projectinformations{
		display:block;
		text-align: left;
		margin-bottom: 5em;
	}
	.information{
		margin-bottom: 5em;
	}
	.description{
		font-size: 15pt;
	}
	.separation{
		display:none;
	}
	.imageligne{
		display: block;
		justify-content: center;
		margin-bottom: 40px;
	}
	.image{
		margin-bottom: 40px;
	}
	.row{
		margin:2em;
	}
	.projectimage{
		margin:1em;
	}
}

/*fin noix*/