@charset "UTF-8";
/* CSS Document */

	.video-background {
    position: relative;
    width: 100%;
    height: 100vh; /* Hauteur totale de la fenêtre de visualisation */
    overflow: hidden;
}

.video-background video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    object-fit: cover; /* Garantit que la vidéo couvre tout l'espace */
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
	   display: flex;
    justify-content: start; /* Alignement horizontal à gauche */
    align-items: end; /* Alignement vertical en bas */
    background: rgba(0, 0, 0, 0.3); /* Fond semi-transparent */
}
		h1{font-size: 6rem; display: block; line-height: 5rem; 

font-family: "dolly-new", sans-serif;
font-weight: 400;
font-style: normal;
}
		h2{font-size: 1.8rem;display: block; font-weight: 100; line-height: 1.6rem; 
		}
		
		

.navbar {
	font-family: sans-serif;
	font-weight: 100;
	font-size: 12px;
    padding: 0.5rem 1rem; /* Ajustez l'espacement si nécessaire */  transition: background-color 0.5s ease;
}
		
		.navbar {
    background-color: transparent !important; /* Fond transparent */
    padding: 0.5rem 1rem; /* Ajustez l'espacement si nécessaire */ 
			width: 100%;
    z-index: 10; /* Assurez-vous qu'elle est au-dessus de la vidéo */
}

.navbar-light .navbar-nav .nav-link {
    color: white; /* Texte blanc */
}

.navbar-light .navbar-brand {
    color: white; /* Texte blanc pour la marque */
}

.navbar-toggler {
    border-color: transparent; /* Couleur de la bordure pour le bouton toggler */
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='white' stroke-width='2' strokeLinecap='round' strokeMiterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E"); /* Icone de toggler en blanc */
}
		
	


.navbar-brand img {
    position: absolute;
    top: 10px; /* Ajustez cette valeur pour faire dépasser le logo */
    left: 10px; /* Ajustez cette valeur pour positionner le logo horizontalement */
    z-index: 15; /* Assurez-vous que le logo est au-dessus de la navbar */
}

.menu {
  position: sticky;
  top: 0;

  padding: 10px;
  z-index: 1000;
}

.bg-scroll-change {
  background-color: #007bff !important; /* Choisissez la couleur de votre choix */
  transition: background-color 0.3s; /* Transition douce pour le changement de couleur */
}

/* From https://css.glass */
.glass{
	background: rgba(255, 255, 255, 0.2);
border-radius: 16px;
box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
backdrop-filter: blur(5px);
-webkit-backdrop-filter: blur(5px);
border: 1px solid rgba(255, 255, 255, 0.3);
}


/*recherche*/



.searchbar {
    position: absolute;
    z-index: 100;
    top: 10px;
	right : 200px;

    margin-bottom: auto;
    margin-top: auto;
    height: 50px;
	min-width: 50px;
    background-color: #fff;
    border-radius: 30px;
    padding: 10px 8px 10px 8px;
    display: flex; /* Ajouté pour Flexbox */
    justify-content: flex-end; /* Oriente le contenu à droite */
}

.search_input {
    color: #0f212f;
    border: 0;
    outline: 0;
    background: none;
    width: 300px; /* Largeur fixe */
    max-width: 0; /* Commence caché */
    overflow: hidden; /* Empêche le débordement de contenu */
    caret-color: transparent;
    line-height: 30px;
    transition: max-width 0.4s linear;
}

.searchbar:hover > .search_input {
    max-width: 300px; /* Déploie la largeur sur le survol */
    caret-color: red;
    padding: 0 10px;
}

.search_icon {
    height: 30px;
    width: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    color: #0f212f;
    text-decoration: none;
}

.searchbar:hover > .search_icon {
    background: white;
    color: #e74c3c;
}
