.background-image {
    position: relative;
    display: flex;
    justify-content: start;
    align-items: center;    
    width: 100vw;
    height: 28vh;
	background-color: white;
	background-image: url("/wp-content/uploads/2026/02/background-accueil.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center; 
    overflow: hidden; 
	filter:none;
	-webkit-filter: none;
	opacity:1;
}

.overlay {
	position: absolute;
	top: 0; left: 0;
	width: 100%; height: 100%;
	background-image:none;
	background-color: transparent;
	opacity:0;
	z-index: 1;
}

.nav-bar {
    display: flex;
    position: fixed;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    background-color: transparent;
    border-radius: 35px;
    width: 90%;
    top: 2rem;
    left: 5%;
    z-index: 999;
    transition: background-color 0.5s ease;
}

.nav-bar.scrolled {
  background-color: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-logo {
    height: 100%;
    width: clamp(5rem, 5vw + 0.5rem, 7rem);
    margin: 1rem;
}

.nav-links {
    display: flex;
    flex-direction: row;
    list-style: none;
    padding: 0;
}

.nav-li {
    position: relative;
    padding: 0 0.5em 0 0.5em;
    text-decoration: none;
    font-size: clamp(1rem, 0.5vw + 0.75rem , 1.5rem);
    font-weight: bold;
    color: white;
    margin: 0.5vw;
    transition: all 0.3s ease-in-out;
}

.nav-bar.scrolled .nav-li {
    color: black;
}

.nav-li:hover {
    font-size: clamp(1.2rem, 0.7vw + 0.75rem , 1.7rem);
    font-weight: bolder;
}

.nav-bar.scrolled .nav-li:hover {
    color: #3494BA;
}

.nav-contact {
    text-decoration: none;
    font-weight: bold;
    font-size: clamp(1.5rem, 2vw + 0.5rem, 2rem);
    padding: 1vw;
    color: white;
    background-color: transparent;
    border: solid;
    border-width: 2px;
    border-radius: 20px;
    border-color: white;
    transition:all 0.3s ease-in-out;
}

.nav-bar.scrolled .nav-contact {
    background-color: #3494BA;
    border-color: #3494BA;
}

.nav-contact:hover {
    font-size: clamp(1.7rem, 2vw + 0.5rem, 2.2rem);
    background-color: white;
    color: black;
}

.nav-bar.scrolled .nav-contact:hover {
    color: white;
}

.hamburger {
    top: 0;
    bottom: 0;
    right: 2rem;
    display: none;
    position: absolute;
    width: clamp(5rem, 5vw + 0.5rem, 8rem);
    margin: 1rem;
}

.text-intro {
    position: relative;
    z-index: 2;
    font-size: clamp(1.8rem, 2vw + 0.5rem, 3.5rem);
    font-weight: bold;
    color: white;
    text-align: start;
    white-space: normal;
    margin: 0 0 0 10%;
    width: 50%;
}