/* Réinitialisation */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

body {
    display: flex;
    height: 100vh;
    font-family: Arial, Helvetica, sans-serif;
    margin-top: 80px;
    background-color: #f8f9fa;
    color: #333;
    line-height: 1.6;
}   

.en_tete {
    position: fixed;
    display: flex;
    align-items: center;
    top: 0;
    left: 0;
    width: 100%;
    align-items: center;
    background-color: #222;
    padding: 10px;
    box-sizing: border-box;
    z-index: 2000;
}

.logo {
    height: 60px;
}

.menu {
    display: flex;
    align-items: center;
    list-style: none;
    margin: auto;
    padding: 0;
    gap: 15px;
}

.menu li {
    position: relative;
}

.menu a {
    text-decoration: none;
    background-color: #444;
    color: white;
    padding: 10px 15px;
    border-radius: 5px;
    display: inline-block;
    transition: background-color 0.3s;
}

.menu a:hover {
    background-color: #666;
}

.submenu {
    display: none;
    position: absolute;
    top: 40px;
    left: 0;
    background-color: #555;
    list-style: none;
    padding: 5px 0;
    margin: 0;
    border-radius: 5px;
    min-width: 160px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    z-index: 1000;
}

.submenu li a {
    padding: 8px 12px;
    display: block;
    color: white;
}

.submenu li a:hover {
    background-color: #777;
}

.dropdown:hover .submenu {
    display: block;
}

.bouton_contact a {
    background-color: #d9534f;
    color: white;
    padding: 10px 15px;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.bouton_contact a:hover {
    background-color: #c9302c;
}

.texte {
    width: 50%;
    padding: 70px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background-color: #fff;
}

.texte h4 {
    font-size: 14px;
    font-weight: normal;
    letter-spacing: 2px;
    color: #555;
    margin-bottom: 15px;
}

.texte h1 {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 5px;
}

.texte p {
    font-size: 16px;
    color: #333;
    margin: 10px 0;
    line-height: 1.5;
}

.contact {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.contact p {
    margin-top: 200px;
    margin-bottom: 20px;
    font-weight: bold;
    font-size: 16px;
}

.socials {
    list-style: none;
    margin-top: auto; 
    display: flex;
    justify-content: flex-start;
    gap: 30px;
}

.socials li {
    display: flex;
    align-items: center;
}

.socials a {
    text-decoration: none;
    color: #000;
    font-weight: 500;
    display: flex;
    align-items: center;
    transition: color 0.3s ease;
}

.socials a:hover {
    color: #0077ff;
}

.socials img {
    width: 20px;
    height: 20px;
    margin-right: 8px;
}

.image-section {
    width: 50%;
    height: 100%;
    overflow: hidden;
}

.image-section img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}