
*{
	margin: 0;
	padding: 0;
	list-style: none;
	text-decoration: none;
	font-family: 'MuseoSansRounded', sans-serif;
}
a{
	color: black;
}

h1 {
	font-size: 2em;
	/*color:black;*/
}

h2 {
	font-size: 1.5em;
}

h3 {
	font-size: 1.2em;
}

h4 {
	font-size: 1em;
	font-weight: normal;
}

p{
	margin-left: auto;
    margin-right: auto;
    width: 70%;
	font-size: 1.2em;
}

em{
	font-weight: normal;
}
strong {
	font-weight: normal;	
}

/*@font-face {
  font-family: Gang_of_three;
  src: url(../font/gang_of_three/go3v2.ttf) format("truetype");
       
}*/
@font-face {
  font-family: 'MuseoSansRounded';
  src: url('../font/MuseoSansRounded300.woff2') format('woff2'),
  	   url('../font/MuseoSansRounded300.woff') format('woff'),
       url('../font/MuseoSansRounded300.otf') format('opentype');
  font-weight: 300;
  font-style: normal;
}
       /*{----------HEADER----------*/

header{
	width: 100%;
	height:100px;
	background-color: rgba(26, 29, 33, 0.7);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px); /* For Safari */
	display: flex;
	align-items: center;
	position:fixed;
	top:0px;
	flex-direction: row;
	justify-content: flex-end;
	z-index: 1;

	 box-shadow:none;
	
}

header > .logo_AE{
	display: flex;
	position: absolute;
	left: 10px;
	
	
}

header .logo_AE a {
	color: white;
	font-size: 2.2em;
	margin-top: 30px;
}


header .logo_AE a em {
	font-size: 2em;
	padding-right: 20px;
	
}
header .logo_AE img {
	height: 100px;
	margin-right: 20px;
	margin-top: 0px;
	
}
header .nav-links {
	display: flex;
}

header .nav-links a {
	color: white;
	margin: 0 15px;
	font-size: 1.3em;
	padding: 10px 0;
	text-decoration: none;
	position: relative;
	padding-bottom: 8px;
}

header .nav-links a::after {
	content: '';
	position: absolute;
	width: 100%;
	transform: scaleX(0);
	height: 2px;
	bottom: 0;
	left: 0;
	background-color: white;
	transform-origin: bottom right;
	transition: transform 0.25s ease-out;
}

header .nav-links a:hover::after {
	transform: scaleX(1);
	transform-origin: bottom left;
}

header .nav-links a:hover,
.content > a:hover
{
	color: white; /* Keep color consistent on hover */
}


header .dropdown-1 {
	position: relative;
	height:100%;
	display: flex;
}

header .dropdown-1 .content{
	display: none;

}

header .dropdown-1:hover .content{
	display: block;
	display: flex;
	flex-direction: column;
	position: absolute;
	background-color: rgb(245, 245, 245);
	top:70px;
	width: 130%;
	padding: 8px 15px;
	box-sizing: border-box;


}

header .content a {

	color: black;
	padding-top: 10px;

}

header .icon{
	display: none;
}

@media (max-width: 820px){

	header .logo_AE{
		display: flex;
	}
	header.responsive .logo_AE{
		display: none;
	}

	header .nav-links {
		display: none;
		width: 100%;
	}

	header .icon{
		display: block;
		position: absolute;
		right:0;
		text-align: center;
		width:5% !important;
		top:20px;
	}

	header.responsive .nav-links {
		display: flex;
		flex-direction: column;
		align-items: flex-start;
	}

	header.responsive .nav-links a {
		text-align: left;
		width: 100%;
	}

	header{
		flex-direction: column;
		min-height: 100px;
		height: auto;
		align-items: flex-start;
		border-bottom-style:solid;
		border-width: 1px;
			}
	header.responsive {
		height: 100%;
	}

	header .dropdown-1:hover .content{
		position: relative;
		width: 100%;
		top:0;

	}



}

          /*----------Slider-1----------*/

.hero {
	margin-top: 100px;
	min-height: 80vh;
	background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../images/etagere_d_angle.jpg);
	background-size: cover;
	background-position: center;
	
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	color: white;
	padding: 0 20px;
}


.hero-content h1 {
	font-size: 3em;
	text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
}

.cta-button {
	display: inline-block;
	margin-top: 20px;
	padding: 15px 30px;
	background-color: #333;
	color: white;
	border: 2px solid white;
	border-radius: 5px;
	text-decoration: none;
	font-size: 1.2em;
	transition: background-color 0.3s, color 0.3s;
}

.cta-button:hover {
	background-color: white;
	color: #333;
}

@media (max-width: 820px){
	.hero {
		min-height: 60vh;
	}
	.hero-content h1 {
		font-size: 2em;
	}
}
	



          /*----------Main----------*/

#main{
	display:block;
	text-align: center;
	justify-content: center;
	width: 100%;
	/*border: 3px red solid;*/
	margin: 100px 0 0 0;
}

#main h1{
	padding:70px 0;

}

#main h3{
	padding:20px 0;
}
	
#main a img{
	width: 70%;
	border:1px solid #CCF;
  box-shadow:0 4px 8px 4px #CCC;
}
#main a:hover img{
	width: 70%;
	border:1px solid #ffffff;
  	box-shadow:0 4px 8px 4px #ffffff; 
}



.grid-1{
	display: flex;
	width: 80%;
	/*border: 3px blue solid;*/
	margin: 0 auto;
	justify-content: center;
}

.grid-1-item{
	padding: 20px 0;
}



@media (max-width: 480px){
.grid-1{
	display: block;
	width: 80%;
}
}
	

          /*----------Footer----------*/
footer{
	text-align: center;
	margin: 100px 0;
	
}

#bd-1-container{
	display: block;
	background-color: #1A1D21;
	box-shadow: -20px 10px 20px 10px #CCC; 
	
}

#bd-1-container h3{
	padding-top: 50px;
	color: white;
}

footer h2{
	padding-top: 50px;
}

#bd-1{
	padding: 50px 10px;
	display:flex;
	justify-content: center;
	flex-wrap: wrap;
}

#bd-1 img{
	width: 70%;
	Margin: 50px;
}





          /*----------Gallerie_Produit----------*/


#block_galerie_produit{
	margin:50px 0 50px 0;
}

#block_galerie_produit h1{
	text-align: center;
}

#galerie_produit{
	display: flex;
	flex-direction: row-reverse;
	justify-content: center;
	margin: 50px 0 50px 0;
}

#galerie_produit_mini {
	display: grid;
	grid-template-columns: 50% 50%;
	grid-column-gap: 20px;
	grid-row-gap: 0px;
	border:1px solid #CCF;
	box-shadow:0px 4px 8px 4px #CCC; 
	padding: 50px;
	margin: 50px;
	margin-right: 70px;
}

#photo{
	border:1px solid #CCF;
	box-shadow:0px 4px 8px 4px #CCC; 
	margin-left: 50px;	
	height: 540px;
}

#descriptif_produit{
	display: block;
	text-align: center;
}

#descriptif_produit h2,
#descriptif_produit h3{
padding:30px 0;
}


          /*----------Galerie----------*/

.galerie {
  padding: 20px;
  column-count: 3;
  column-gap: 20px;
}

.galerie a {
	display: inline-block; /* Changed from block */
	width: 100%;
	margin-bottom: 20px;
	break-inside: avoid; /* Prevents images from breaking across columns */
	border-radius: 10px;
	overflow: hidden;
	box-shadow:0 4px 8px 4px #CCC;
	transition: transform 0.3s, box-shadow 0.3s;
}

.galerie a:hover {
	transform: translateY(-5px); /* A different hover effect */
	box-shadow:0 8px 16px 8px #BBB;
}

.galerie img{
  width: 100%; /* Let height be auto */
  display: block; /* Removes bottom space under image */
}

/* Responsive columns for Masonry */
@media (max-width: 1000px) {
  .galerie {
    column-count: 2;
  }
}

@media (max-width: 600px) {
  .galerie {
    column-count: 1;
  }
}


#galerie_mini a:hover img{
  	border:1px solid #CCF;
  	box-shadow:0 4px 8px 4px #CCC; 
}

.container {
	max-width: 600px;
	margin: 0 auto;
	padding: 30px;
	border-radius: 10px;
	box-shadow: 5px 5px 15px rgba(0,0,0,0.3);
  }
  
  .container::after {
	content: "";
	display: block;
	clear: both;
  }
  .container h2 {
	margin-bottom: 10px;
  }
  .container p {
	line-height: 1.4;
  }

  .container img {
	width: 200px;
	object-fit: cover;
	border-radius: 10px;
	float: left;
	shape-outside: margin-box;
	margin: 0 20px 5px 0;
  }
/*---------- Instagram Promo Section ----------*/

#instagram-promo {
	padding: 80px 20px;
	background-color: #f7f7f7;
	text-align: center;
}

#instagram-promo h2 {
	font-size: 2.8em;
	margin-bottom: 20px;
}

#instagram-promo p {
	max-width: 600px; /* Constrain the paragraph width */
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 40px;
	font-size: 1.1em;
	line-height: 1.6;
}

#instagram-promo img {
	width: 80px;
	height: 80px;
	margin-bottom: 30px;
}

#instagram-promo .cta-button {
	background-color: #3f729b; /* Instagram-like color */
	border-color: #3f729b;
}

#instagram-promo .cta-button:hover {
	background-color: #335d80;
	border-color: #335d80;
	color: white;
}
/*---------- Contact Page ----------*/

.contact-page {
	padding: 60px 0;
}

.contact-page h1 {
	text-align: center;
	font-size: 3em;
}

.contact-intro {
	text-align: center;
	max-width: 600px;
	margin: 10px auto 50px auto;
	color: #666;
	font-size: 1.2em;
}

.contact-container {
	display: flex;
	gap: 40px;
	align-items: flex-start;
}

.contact-info, .contact-map {
	flex: 1;
}

.contact-info h3 {
	font-size: 1.8em;
	margin-top: 20px;
	margin-bottom: 15px;
	border-bottom: 2px solid #eee;
	padding-bottom: 10px;
}
.contact-info h3:first-child {
	margin-top: 0;
}

.contact-info ul {
	list-style-type: none !important; /* Force removal of bullets */
	padding: 0 !important;
	margin: 0;
}

.contact-info li {
	list-style-type: none !important; /* Force removal of bullets */
	margin-bottom: 15px;
	line-height: 1.6;
}

.contact-info a {
	color: #3f729b;
	text-decoration: none;
}
.contact-info a:hover {
	text-decoration: underline;
}

.contact-map iframe {
	border-radius: 10px;
	box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

@media (max-width: 820px) {
	.contact-container {
		flex-direction: column;
	}
}
/*---------- Intro SEO Section ----------*/

#intro-seo {
	padding: 60px 20px;
	text-align: center;
	background-color: #fff;
}

#intro-seo h2 {
	font-size: 2.8em;
	margin-bottom: 20px;
	max-width: 800px;
	margin-left: auto;
	margin-right: auto;
}

#intro-seo p {
	max-width: 800px;
	margin: 0 auto;
	line-height: 1.7;
	color: #555;
	font-size: 1.1em;
}
/* Styles moved from plateau.html */

.container-plateau-page {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding: 20px;
}

.colonne-gauche-explications {
    flex: 1;
    min-width: 300px;
}

.colonne-droite-configurateur {
    flex: 1.5; /* Adjusted flex value */
    min-width: 350px; /* Adjusted min-width slightly */
    border: 1px solid #eee;
    padding: 15px;
    border-radius: 5px;
}

@media (max-width: 768px) {
    .container-plateau-page {
        flex-direction: column;
    }
}
/* Styles from Plateaux.html */
.colonne-droite-configurateur label, .colonne-droite-configurateur select, .colonne-droite-configurateur input, .colonne-droite-configurateur textarea {
    display: block;
    margin: 10px 0;
}
.plateau {
    border: 1px solid #ccc;
    padding: 10px;
    margin-bottom: 15px;
}
#plateauxList {
    margin-top: 20px;
}
#finitions {
    display: flex;
    gap: 20px;
}
#finitions div {
    cursor: pointer;
    text-align: center;
}
#finitions img {
    border: 1px solid #ccc;
    border-radius: 4px;
}
@media print {
  body * {
    visibility: hidden;
  }
  #pdfContent, #pdfContent * {
    visibility: visible;
  }
  #pdfContent {
    position: absolute;
    left: 0;
    top: 0;
  }
}

/* Style for finish selection images */
#finitions.galerie a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100px;
    height: 100px;
    /* box-shadow and border-radius are inherited from .galerie a */
}
#finitions.galerie img {
    max-width: 100%;
    max-height: 100%;
    object-fit: cover; /* Ensures image covers the 100x100px box */
}

/* Styles for text in left column */
.colonne-gauche-explications p,
.colonne-gauche-explications ul {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    text-align: left;
}
.colonne-gauche-explications ul {
    padding-left: 20px; /* Indentation for list items */
    list-style-position: outside;
}
.colonne-gauche-explications h2,
.colonne-gauche-explications h3 {
    text-align: left;
    width: 100%; /* Ensure full width */
    margin-bottom: 0.5em; /* Add some space below headings */
}
.colonne-gauche-explications p {
    margin-bottom: 1em; /* Add some space below paragraphs */
}
/* Styles for the bottom gallery (#galerie-plateaux-realisations) */
/* The parent section.container handles centering of the block and max-width. */
/* The .galerie class provides column-count and gap. */
/* text-align: center on the section should help center inline-block items. */

#galerie-plateaux-realisations.galerie a {
    /* Let this inherit from the general .galerie a styles in css/style.css */
    /* This means width: 100% of the column */
    /* vertical-align: top; might not be needed if width is 100% */
}

#galerie-plateaux-realisations.galerie img {
    /* Inherits width: 100% (of the auto-width 'a' tag) and display: block from .galerie img */
    height: auto; /* Maintain aspect ratio */
    /* max-width: 100%; is good practice but might be redundant if 'a' is auto and img is 100% of 'a' */
}
#finitions a img.selected-visual {
    opacity: 0.6; /* Rend l'image sélectionnée légèrement plus terne/grisée */
    /* Optionnel : vous pouvez ajouter une bordure pour mieux distinguer la sélection */
    /* border: 2px solid #333; */
}

/* End of styles moved from plateau.html */