/* Style spécifique à la page de contact */

body {
    font-family: 'Roboto Condensed', sans-serif;
    background-color: #fefae0;
    margin: 0;
    padding: 0;
}

header {
    background-color: #606c38;
    color: #fefae0;
    padding: 20px 0;
    display: flex;
    justify-content: center; /* Center both the logo and nav */
    align-items: center;
    flex-direction: column; /* Stack logo and nav vertically */
}

.logo {
    text-align: center;
    margin-bottom: 10px; /* Add spacing between logo and nav */
}

.logo a {
    text-decoration: none; /* Supprime le soulignement */
    color: inherit; /* Utilise la couleur du parent (héritée) */
}

.logo a:hover {
    text-decoration: none; /* Pas de soulignement au survol */
    color: inherit; /* Pas de changement de couleur au survol */
}

header h1 {
    font-family: 'Bebas Neue', cursive;
    font-size: 72px;
    margin: 0;
}

nav {
    width: 100%;
    text-align: center; /* Center the nav links */
}

nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
    justify-content: center; /* Center the nav links horizontally */
    padding: 0;
    margin: 0;
}

nav ul li a {
    color: #fefae0;
    text-decoration: none;
    font-weight: bold;
}

/* Contact section */
.contact {
    padding: 50px 0;
    background-color: #fefae0;
    color: #2b2b2b;
}

.contact h2 {
    text-align: center;
    margin-bottom: 30px;
}

.contact p {
    text-align: center;
    font-size: 18px;
    color: #2b2b2b;
    margin-bottom: 10px;
}

/* Formulaire centré et réduit en largeur */
form {
    width: 100%; /* Responsive width */
    max-width: 600px; /* Limit the maximum width */
    margin: 0 auto; /* Center the form */
    display: flex;
    flex-direction: column;
    gap: 10px;
}

form input, form textarea {
    padding: 10px;
    font-size: 16px;
    width: 100%; /* Ensure inputs take full width */
    box-sizing: border-box; /* Prevent overflow issues with padding */
}

form button {
    background-color: #dda15e;
    border: none;
    padding: 10px;
    font-size: 16px;
    cursor: pointer;
    color: white;
    width: 100%; /* Ensure button matches input width */
    box-sizing: border-box;
}

form button:hover {
    background-color: #bc6c25;
}

/* Footer */
footer {
    background-color: #0e0e0e;
    color: #fefae0;
    text-align: center;
    padding: 20px;
}