@import "/css/animations.css";

/*
* DEFAULT CSS PAGE NOS VINS
*/
.headerHP {	
	width: 100%;
	height: fit-content;
	overflow: hidden;	
	position: relative;
	padding-bottom: 3rem;
}
.headerHP .theBigBlurPictureHP,
.headerHP .theBigPictureHP {
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
	width: 100%;	
	min-height: 100vh;
	height: 100%;
	object-fit: cover;
	overflow: hidden;
}
.headerHP .theBigBlurPictureHP {
	filter: blur(20px);
	transform: scale(1.1);
	z-index: -1;
}

.headerHP :is(h1,h2) {
	font-family: Oranienbaum;
}
.headerHP h1 {
	color: var(--color-identity);
	/* font-family: birch-std, serif; */
	font-size: 3.5rem;
	font-weight: 400;
	margin: 0;
	text-align: center;
	opacity: 0;
	transform: translateY(-30px);
	animation: fadeAppear .5s .3s forwards;
}
.headerHP h2 {
	font-size: 2.2rem;
	color: var(--color-identity);
	font-weight: 500;
	margin-bottom: 0.5rem;

}
.headerHP h2 span{
	display: block;
	text-align: center;
	margin-bottom: .5rem;
}
.headerHP h2 :last-child{
	font-size: 2.1rem;

}

.headerHP .header {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 100%;
}

.headerHP .header .logo {
	position:relative;
	width: 45%;
	margin-top: 11rem;
	margin-bottom: 3rem;

}
.headerHP .header .logo :first-child {
	width: 100%;

}

.headerHP .header .logo :last-child {
	position: absolute;
    width: 60px;
}

.headerHP .header .altitude {
	color:  var(--color-text-light);
	font-weight: 700;
	font-size: 2rem;
	margin-top: 3rem;
	margin-bottom: 3rem;
}

@media all and (max-width: 1050px) {	
	.headContent .site_container {
		flex-direction: column;
	}	
	.headerHP {
		height: auto;
		overflow: unset;
		padding-bottom: 2em;
	}
	.headerHP .header .logo {
		width: 60%;
		
	}
	.headContent .site_container {
		height: auto;
	}
}


@media all and (max-width: 500px) {
	.headerHP .header .logo :last-child {
		
		right: 10%;
		width: 40px;
	
		
	}
	.headerHP .header .logo {
		width: 90%;
		
	}
}

/*
* CUSTOM CSS
*/
.contact {
    min-height: 100vh;
    position: relative;
}
.contact .contentHead .contactContent{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    height: 100%;   
}
.contact .headContent  {
    width: 100%;
    height: 100%;
}

.contact .headContent > div {
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 9rem;
    align-items: center;
    justify-content: center;
}
.contact .headContent > div h1{
   text-align: center;
   font-size: 4rem;
   color: var(--color-text-light);
   white-space: nowrap;
   position: relative;
   font-family: aaux-next, sans-serif;
   font-weight: 800;
}

.contact .headContent > div h1:after{
   content: "";
   background-color: var(--color-identity);
   height: 2px;
   width: 15%;
   position: absolute;
   bottom: -10%;
   left: 50%;
   transform: translateX(-50%);
 }

.contact .headContent .pictoBlock{
    display: flex;
    width: 100%;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
}

.contact .headContent .pictoBlock img {
    width: 150px;
    margin-bottom: 3rem;
}
.contact .headContent .pictoBlock > div {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 33%;
    min-width: 230px;
	
}
.contact .headContent .pictoBlock >div:nth-child(1) {
	opacity: 0;
	transform: translateX(-30px);
	animation: fadeAppear .5s .4s forwards;  
}
.contact .headContent .pictoBlock>div:nth-child(2) {
	opacity: 0;
	transform: translateY(30px);
	animation: fadeAppear .5s .5s forwards;  
}
.contact .headContent .pictoBlock>div:nth-child(3) {
	opacity: 0;
	transform: translateX(30px);
	animation: fadeAppear .5s .6s forwards;  
}
.contact .headContent .pictoBlock > div :nth-child(2){
    color: var(--color-identity);
    font-weight: 600;
    font-size: 1.5rem;
}
.contact .headContent .pictoBlock > div :last-child{
    color: var(--color-text-light);
    font-weight: 700;
    font-size: 1.5rem;

  }

  @media all and (max-width: 500px) {
    .contact .headContent > div h1{
        
        font-size: 2.2rem;
		
        
     }
	 .contact .contentHead .contactContent{
		position: relative;
		height: auto;
	 }
	 .contact :is(.headContent, .headContent >div) {
		height: auto;
	 }
	 .contact .headContent >div{
		gap: 5rem;
		padding-top: 4rem;
	 }
	


.contact .headContent .pictoBlock{
    gap: 3rem;
}
  }