[data-composant="PresentationProjet"]
{
	&{
		width: var(--maxWidth);
		margin: auto;
		border-radius: var(--borderRadius);
		padding: var(--padding);
	}
	
	article
	{
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: 1em;
	}
	
	.img {
		width: 100%;
		height: 300px;
		border-radius: var(--borderRadius);
	}
	
	img {
		width: 100%;
		height: 100%;
		object-fit: cover;
		border-radius: var(--borderRadius);
	}
	
}


[data-composant="PresentationProjet"][data-theme="image-height-100"]
{
	&{
	}
	
	article
	{
		min-height: calc(100dvh - var(--headerHeight) - var(--headerHeight));
		align-items: center;
	}	
	
	.img{
		height: 100%;
	}
	img{
		height: 100%;	
	}
}

[data-composant="PresentationProjet"][data-theme="image-height-50"]
{
	&{
	}
	
	article
	{
		min-height: calc(50dvh - var(--headerHeight) - var(--headerHeight));
		align-items: center;
	}	
	
	.img{
		height: 100%;
	}
	img{
		height: 100%;	
	}
}
[data-composant="footer"]
{
	&{
		background: var(--couleurDegrader1);
		color: white;
		padding: 20px;
		padding-top:40px;
		position: sticky;
		bottom: 0;
		margin-top: -20px;
		
	}
	
	@media (max-width: 820px)
	{
		h2, h3{
			font-size: 1.5em!important;
		}
	}
	
	& > div {
		display: flex;
		justify-content: space-between;
		gap: 1em;
	}
	
	@media (max-width: 720px)
	{
		& > div {
			display: block;
		}
	}
	
	
	@media (max-width: 820px)
	{
		& > div > div{
			max-width: 350px;
		}
	}
	
	.txt{
		max-width: 500px;
	}
	#menus{
		display: flex;
		gap: 1em;
	}
	
	@media (max-width: 720px)
	{
		nav {
			font-size: .8em;
		}
	}
	
	
	ul{
		padding-left: 0;
	}
	li{
		list-style: none;
		padding-left: 0;
	}
	
	h2, h3, h4{
		color: white !important;
	}
	
	
	a{
		color: white;
	}
	
	li a{
		text-decoration: none;
	}
	
	[data-composant="bouton"]
	{
		color: var(--couleurBTNTexte);
	}
	
	
	#copyright
	{
		&{
			font-size: .8em;
			
		}
		
		p{
		}
	}
	
	
}

.balise
{
	&{
		background: white;
		padding: 5px 30px;
		border-radius: var(--borderRadiusS);
		width: fit-content;
		font-size: .8em;
		position: relative;
		padding-right: 20px;
		margin-bottom: 20px
	}
	
	&:before
	{
		content: " ";
		aspect-ratio: 1/1;
		width: 10px;
		background: var(--couleurTexte);
		border-radius: 50%;
		position: absolute;
		left: 10px;
		top: 50%;
		transform: translateY(-50%);
	}
}


main{
	padding-bottom: 20px;
}


#_accueil main > section:not(#banniere)
, #_realisations-enfant main > section:not([data-composant="avant-apres"])
{
	margin: 100px auto;
}

#contact > div{
	background: var(--couleurBTN2);
}

@keyframes masquerTxtsBanniere {
	to{opacity: 0}
}
#_accueil
{
	&{
		view-timeline-name: --transition-accueil;
		  
		animation: masquerTxtsBanniere linear forwards;
		animation-timeline: --transition-accueil;
		animation-range: entry 0% exit 100%;
	}
	#banniere{
		position: sticky;
		top: 0;
	}
	
	#agence
	{
		&{
			background: #f7f7f7;
			border-radius: var(--borderRadius);
			margin-top: -20px;
			z-index: 2;
			position: relative;
			width: 100%;
			height: 100dvh;
			display: grid;
			place-content: center;
		}
		.txts{ 
			order: 2;
			background: rgba(255, 255, 255, 1);
			border-radius: var(--borderRadius);
			padding: 10px 20px;
			color: black;
			transform: translate(-10%,-20%);
			box-shadow: var(--boxShadow);
			z-index: 1
			
		}
		
		.media{
			translate: 10%;
		}
		
		& > div
		{
			align-items: end;
			width: var(--maxWidth);
			margin: 0px auto;
		}
	}
}
