/*!
Theme Name: Lola_Brassaud
Theme URI: http://underscores.me/
Author: Underscores.me
Author URI: http://underscores.me/
Description: Description
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: lola_brassaud
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.

Lola_Brassaud is based on Underscores https://underscores.me/, (C) 2012-2020 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/

/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Generic
	- Normalize
	- Box sizing
# Base
	- Typography
	- Elements
	- Links
	- Forms
## Layouts
# Components
	- Navigation
	- Posts and pages
	- Comments
	- Widgets
	- Media
	- Captions
	- Galleries
# plugins
	- Jetpack infinite scroll
# Utilities
	- Accessibility
	- Alignments

--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Generic
--------------------------------------------------------------*/

/* Normalize
--------------------------------------------- */

/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */

/* Document
	 ========================================================================== */

/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
 @font-face { font-family: Inter; 
			  src: url('fonts/Inter.ttf'); 
			  font-weight: lighter; }

@font-face {
	font-family: 'Druk Wide Bold Bold';
    font-style: normal;
    font-weight: normal;
	src: url('fonts/DrukWideBold.ttf');
}
.no-results {
	display: none;
}
html {
	line-height: 1.15;
	-webkit-text-size-adjust: 100%;
	font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
	font-family: Inter;
	scroll-behavior: smooth;
	box-sizing: border-box !important;
	
}


*, *::before, *::after {
    box-sizing: inherit;
}

/* Sections
	 ========================================================================== */

/**
 * Remove the margin in all browsers.
 */
body {
	margin: 0;
	padding: 0;
	font-size: 1.25rem;
	/*line-height: .8571428571vw;*/
	text-rendering: optimizeLegibility;
	width: 100%;
	background-color: #0B0B0B;
	color: white;
	overflow-x: hidden;
}

ul{
	padding: 0;
}

/**
 * Render the `main` element consistently in IE.
 */
main {
	display: block;
}

.site-main{
	max-width: 100vw;
	overflow-x: hidden;
}

.home .entry-title {
    display: none;
}
/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */

h2{
	letter-spacing: -0.05em;
	margin: 0;
}

blockquote{
	font-size: 1.25rem;
	line-height: 1.5;
}
	
a {
    text-decoration: none;
	color: inherit;
}

ul {
	list-style-type: none;
  }


 /**
  * HEADER
  */

 header{
	position: fixed;
	box-sizing: border-box;
    top: 0;
    left: 0;
    width: 100vw; /* Adapte la largeur à celle de l'écran */
    z-index: 1000; /* S'assurer qu'il est au-dessus des autres éléments */
	padding: 3.286vw 2.2857142857vw 2.2857142857vw 2.2857142857vw;
	max-height: 2.0714285714vw;
 } 
  
 header ul{
	display: flex;
	gap: 1.7857142857vw;
	text-transform: uppercase;
	font-weight: 600;
 }

 .menu-overlay{
	mix-blend-mode:initial;
	background-color: #fff;
	z-index: 50;
 }


 

 .custom-logo{
	height: 2.0714285714vw;
	width: 2.0714285714vw;
 }

.bar{
	margin-right: 2%;
}

.bv{
	top:38%;
}


.contact-title{
	letter-spacing: -0.05em;
	font-weight: 900;
	line-height: 0.734em;
}

.hero-title{
	font-family: 'Druk Wide Bold Bold';
	bottom: -8px;
	left: 4.25rem;
	font-size: 10rem;
	line-height: 1.1;
}

.title{
	font-size: 11.8rem;
	line-height: 0.816em;
	
}
.formulaire button{
	border: none;
}

.contenaire{
  background: #fff;
  height: 100vh;
  width: 50%;
  /*left: 40%;
  //*max-height: calc(100vh - 30px);
  /**position: absolute;
  top: 0;
  width: 37.5714285714vw;
  z-index: 10000;*/
}

.svg-link {
    position: relative;
    display: inline-block;
}

.svg-default {
    position: absolute;
    top: -18px;
    left: -3px;
    transition: opacity 0.6s ease-in-out;
    opacity: 1;
    visibility: visible;
}

.svg-hover {
    position: absolute;
    top: -18px;
    left: -3px;
    transition: opacity 0.6s ease-in-out;
    opacity: 0;
    visibility: hidden;
}

.svg-link:hover .svg-default {
    opacity: 0;
    visibility: hidden;
}

.svg-link:hover .svg-hover {
    opacity: 1;
    visibility: visible;
}

.videos{
	margin-left: 50%;
}


/* Style du cercle autour du curseur */
.cursor-circle {
    position: fixed;
    width: 50px;
    height: 50px;
    border: 2px solid white;
    border-radius: 50%;
    pointer-events: none; /* Le cercle ne doit pas interagir avec les clics */
    transform: translate(-50%, -50%) scale(0);
    opacity: 0;
    transition: transform 0.2s ease, opacity 0.2s ease;
    z-index: 1000;
}

/* Cacher le curseur par défaut */
#primary-menu .menu-item:hover a {
    opacity: .5;
	
	/* Cache le curseur standard */
}

#primary-menu .menu-item a {
    transition: all 0.6s ease;
	
	/* Cache le curseur standard */
}


/* Bouton Voir Plus */
.gallery-more .btn-see-more {
	margin: 2rem 50%;
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border: 1px solid white;
    color: white;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.gallery-more .btn-see-more:hover {
    background-color: white;
	color: #0B0B0B;
}

  
/*** formulaire ***/
.formulaire{
	overflow-y: auto;
	position: relative;
	min-width: 100%;
	overscroll-behavior: contain;

}

.formulaire{
	height: 100vh;
}

.wpcf7-form-control-wrap{
	position: relative;
}

input{
	background: none;
  border: none;
    border-bottom-width: medium;
    border-bottom-style: none;
    border-bottom-color: currentcolor;
  border-radius: 0;
  outline: none;
  color: #0B0B0B;
  margin-top: 1rem;
  border-bottom: .0714285714vw solid rgba(0,0,0,.3);
  line-height: 1.5;
  /*padding-bottom: .5714285714vw;*/
}

span input{
	width: 100%;
}

/*label{
	color: #0B0B0B;
	position: absolute;
	top: 10px;
	left: 0;
	cursor: pointer;
	transition-property: transform;
	transition-timing-function: cubic-bezier(.4,0,.2,1);
	transition-duration: .15s;
}*/
.form-wrapper{
	position: relative;
}
textarea{
	border: .0714285714vw solid rgba(0,0,0,.3);
	width: 100%;
	font-size: 1.25rem;
	margin-top: 1rem;
}

button{
	font-size: 1.25rem;
	cursor: pointer;
}


.wpcf7-submit{
	font-size: 1.25rem;
}

.wpcf7-submit {
    margin-top: 1rem; /* Correspond à mt-4 */
    transition: all 0.3s ease-in-out; /* Correspond à duration-300 ease-in-out */
    background-color: #000; /* Correspond à bg-black */
    color: #fff; /* Correspond à text-white */
    padding: 0.5rem 1.5rem; /* Correspond à py-2 px-6 */
    border-radius: 0.25rem; /* Ajoutez un arrondi si nécessaire */
}

.wpcf7-submit:hover {
    background-color: #2d3748; /* Correspond à hover:bg-gray-800 */
}
.wpcf7-response-output{
	background-color:#46b450;
}
.wpcf7 form.invalid .wpcf7-response-output{
	background-color:#ffb900;
}

/*** gestion page contact ***/


.page-id-11 header, .page-id-11 footer{
    display: none;
}

form br{ display: none;}


/*** bar hero ***/

.bar a{
	width: 1.4rem;
}


/*** Menu Responsive ***/

.responsive a{
	font-size: 1.25rem;
	color: #0b0b0bb5;
}

/* Liens du menu */
.responsive .menu-item {
    text-align: center;
    margin-bottom: 1rem;
}

.title-responsive{
	color: #0B0B0B;
}

.responsive .lien{
	font-size: 1rem;
}

.close {
	color: #0b0b0bb5;
}

/********* Footer *************/
.button-contact:hover{
	background-color: white;
	color: #0B0B0B;
}



/*** responsive ***/
@media (max-width: 1399px) {
	.custom-logo {
		height: 29px;
	  	width: 29px;
	  }
  }

@media (max-width: 1535px) {
	.bar-1:nth-child(1) {
		display: none;
	  }

	.hero-title{
		left: 2.5rem;
		font-size: 8rem;
	}
	
  }  

@media (max-width: 1279px) {
	blockquote{
		font-size: 1rem;
	}
	
	.hero-title{
		font-size: 6rem;
	}
	
  } 


  @media (max-width: 1023px) {
	.hero-title{
		left: 2.25rem;
		font-size: 5rem;
		bottom: 0;
	}

	.primary-menu {
		display: none;
	  }
	body{
		max-width: 100vw;
	}
	header{
		max-width: 100vw !important;
		padding: 2rem;
	}
	.image-portrait{
		display: none;
	}
	.title{
		font-size: 9rem;
		line-height: 0.816em;
		
	}

	.portfolio-bar{
		display: none;
	}

	.videos{
		display: none;
	}

	.contenaire{
		width: 100%;
	}

	

  }  

  
  @media (max-width: 767px) {

	.hero-title{
		left: 2.25rem;
		font-size: 4rem;
		bottom: 1rem;
	}

	.primary-menu {
		display: none;
	  }

	footer .separator{
		display: none;
	}
	body{
		max-width: 100vw;
	}
	header{
		max-width: 100vw !important;
		padding: 2rem;
	}
	.image-portrait{
		display: none;
	}
	.title{
		font-size: 4rem;
		line-height: 0.816em;
	}


	input, label, textarea, .wpcf7-submit {
		font-size: 1rem;
	}
  }  

  @media (max-width: 639px) {
	.portrait{
		position: absolute;
		width: 100px;
		top: 90px;
		left: 14px;
	}
	.hero-title{
		left: 2rem;
		bottom: 1rem;
		font-size: 2.2rem;
	}

	.bwg-container-0{
		padding-left: 0 !important;
	}
  }  


  @media (min-width: 2048px) {
	.title-form{
	  	font-size: 8rem; /* 128px */;
	}

	.hero-title{
		font-size: 12.3rem;
	}
  }  


  