body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: transparent;
}

#top-bar {
    background-color: white;
    color: #fff;
    position: fixed;
    width: 100%;
    padding: 10px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    top: 0;
    left: 0;
    right: 0;
}

#top-bar a {
    color: #ee7d11;
    margin-left: 15px;
    text-decoration: none;
    font-size: 14px;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bold;
    top: 0;
    left: 0;
   right: 0;
}

#top-bar select {
    background-color: transparent;
    color: black;
    border: none;
    font-size: 14px;
    margin-right: 15px;
    margin-left: 20px;
    font-weight: bold; 
    align-items: right;   

}

header {
    
    height: 70vh;
    color: white;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

header h1 {
    font-size: 3em;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}
#top-bar {
background-color: white;
display: flex;
justify-content: space-between; /* Sépare le logo et les liens */
align-items: center;
padding: 2px 0.01px;
position: fixed;
top: 0;
left: 0;
right: 0;
width: 100%;
z-index: 1000; /* Assure que la barre reste au-dessus */

}

.nav {
    display: flex;               /* Active Flexbox */
    justify-content: space-between; /* Sépare les éléments entre les deux côtés */
    align-items: center;         /* Aligne les éléments verticalement au centre */
    padding: 10px 20px;          /* Ajoute un peu d'espace à l'intérieur de la barre */
    top: 0;
    left: 0;
    right: 0;
    width: 100%;

}


.nav-logo img {
max-height: 80px; /* Ajuste la taille du logo */
}

.nav-links {
    flex: 1; /* Donne plus d'espace aux liens */
    display: flex;
    justify-content: flex-end; /* Aligne les liens à droite */
    gap: 20px; /* Espace entre les liens */
}

.nav-links a {
color: #ee7d11;
text-decoration: none;
font-weight: bold;
font-size: 14px;
font-family: Arial, Helvetica, sans-serif;
transition: color 0.3 ease;
}

.nav-links a:hover {
    color: #ff6600; /* Change la couleur au survol (par exemple, un orange plus vif) */
}




section {
    padding: 0.1em;
    background: transparent;
    margin: 1em auto;
    max-width: 1097px;
    
}

section h2 {
    color: #333;
    margin-bottom: 15px;
    font-size: 25px;
}

footer {
    text-align: center;
    background: #333;
    color: white;
    padding: 0.5em;
}

#contact {
    text-align: center;
    padding: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

#contact h2 {
    font-size: 25px;
    margin-bottom: 15px;
    color: #333;
}

#contact p {
    font-size: 16px;
    margin-bottom: 15px;
    color: #555;
}

.contact-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.contact-form label {
    width: 100%;
    max-width: 800px;
    text-align: left;
    font-weight: bold;
    color: #333;
}

.contact-form input, .contact-form textarea {
    width: 100%;
    max-width: 800px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
    outline: none;
    transition: border 0.3s;
}

.contact-form input:focus, .contact-form textarea:focus {
    border: 1px solid #4CAF50;
}

.contact-form button {
    background-color: #ee7d11;
    color: white;
    padding: 10px 20px;
    font-size: 16px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.contact-form button:hover {
    background-color: #45a049;
}
/* Styles pour le bouton hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #ee7d11;
    margin: 3px 0;
}

/* Responsive pour petits écrans */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        align-items: center;
        background-color: white;
        width: 100%;
        position: absolute;
        top: 60px;
        left: 0;
        z-index: 1000;
    }

    .nav-links.active {
        display: flex;
    }

    .hamburger {
        display: flex;
    }
}
