header {
    background-color: rgba(0, 0, 0, 0.3);
    color: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100px;
    position: fixed;
    padding-right: 20px;
    padding-left: 20px;
    width: 100%;
    z-index: 1000;
    font-family: "Titan One", sans-serif;
    font-weight: 400;
    font-style: normal;
}
.header-left {
    display: flex;
    align-items: center;
    margin-left: 0px;
}
.navbar a::after, .menu ul li a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0%;
    height: 2px;
    background-color: #ffffff;
    transition: width 0.3s ease;
}
.navbar a:hover::after, .navbar .active::after {
    width: 100%;
}
.menu ul li .active{
    color: #007bff;
}
.logo {
    height: auto;
    width: 130px;
    margin-right: 20px;
}
nav {
    display: flex;
    justify-content: space-between;
}
nav ul {
    list-style: none;
    padding: 0;
    display: flex;
    gap: 100px;
}
nav ul li {
    display: inline;
}
nav ul li a {
    position: relative;
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
}
.header-right {
    display: flex;
    align-items: center;
}
footer {
    background-color: rgb(239, 236, 236);
   /* Rouge avec 50% d'opacité */
    color: rgb(5, 16, 63);
    border-top: rgb(5, 16, 63) 2px solid;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: auto;
    padding: 20px;
    width: auto;
}
.siteplan {
    margin-left: 20px;
    color: rgb(5, 16, 63);
}
.footer-content {
    display: flex;
    gap: 20px;
    color: rgb(5, 16, 63);
}
.footer-logo img {
    height: auto;
    width: 200px;
    margin-right: 20px;
}
footer ul {
    list-style: none;
    padding: 0;
    color: rgb(5, 16, 63);
}
footer li {
    margin: 5px 0;
    color: rgb(5, 16, 63);
}
footer a {
    color: rgb(5, 16, 63);
    text-decoration: underline;
}
footer a:hover {
    color: #007bff;
    text-decoration:double underline;
}
footer a:visited {
    color: purple;
}

footer a:visited:hover {
    color: #007bff;
    text-decoration:double underline;
}
.social-media a {
    font-size: 1.5rem;
    padding-left: 20px;
    padding-right: 20px;
}
.menu-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.bar {
    width: 30px;
    height: 4px;
    background-color: #fbfbfb;
    border: black 1px solid;
}
.menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100px;
    right: 0;
    background-color: rgba(0, 0, 0, 0.2);
    width: 220px;
    justify-content: center;
    align-items: center;
    padding-right: 0px;
    border-left: #fff 1px solid;
    border-bottom: #fff 1px solid;
}
.menu ul {
    list-style: none;
    flex-direction: column;
    margin: 0;
    gap: 0px;
    width: 100%;
}
.menu ul li {
    background-color: rgba(0, 0, 0, 0.2);
    margin: 0px;
    width: 100%;
    padding-top: 15px;
    padding-bottom: 15px;
    display: flex;
}
.menu .phone {
    display: none;
}
.menu ul li:hover {
    background-color: rgba(243, 242, 242, 0.3);
    transition: background-color 0.3s ease;
    cursor: pointer;
}
.menu ul li a {
    text-decoration: none;
    padding-right: 20px;
    padding-left: 20px;
    margin: auto;
}
@media screen and (max-width: 768px) {
    .menu .phone {
        display: flex;
   }
    .navbar {
        display: none;
   }
    .header-left {
        margin-top: 0px;
   }
    .menu{
        background-color: rgba(0, 0, 0, 0.8);
   }

       .footer-logo {
        display: none;
   }
   footer{
        
        flex-direction: column;
        align-items: center;
        justify-content: center;
   }

   .social-media{
    display: flex;
    
   }

   .allrechercher {
        flex-direction: column;
        align-items: center;
       
   }
}


