@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');

* {
    font-family: "Poppins", sans-serif;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: #dbe5f1;
    height: 76px;
}

.column {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav {
    gap: 0;
}

.nav-btn {
    background-color: #dbe5f1;
    color: black;
    font-family: 'Poppins', sans-serif;
    border: none;
    height: 96px;
    cursor: pointer;
    font-size: 1em;
    transition: background-color 0.3s ease-in-out, font-size 0.3s, color 0.3s;
}

.nav-btn:hover {
    background-color: #0056b3;
    color: white;
    font-size: 1.2em;
}

/* Section globale du formulaire */
.contact-form-section {
    padding: 50px 0;
    background-color: #f8f8f8;
    font-family: 'Poppins', sans-serif;
}

/* Titre du formulaire */
.contact-form-section h1 {
    text-align: center;
    font-size: 2.5em;
    color: #333;
    margin-bottom: 40px;
}

/* Conteneur principal du formulaire */
.contact-form-container {
    width: 80%;
    max-width: 700px;
    margin: 0 auto;
    background-color: white;
    padding: 30px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

/* Champs du formulaire */
.contact-form-container label {
    display: block;
    margin-bottom: 8px;
    color: #333;
    font-weight: bold;
}

.contact-form-container select,
.contact-form-container textarea,
.contact-form-container input[type="text"] {
    width: 90%;
    padding: 10px 15px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 1em;
    transition: border-color 0.3s;
}

.contact-form-container select:focus,
.contact-form-container textarea:focus,
.contact-form-container input[type="text"]:focus {
    border-color: #2f5ec4;
    outline: none;
}

/* Bouton envoyer */
.contact-form-container button {
    background-color: #2f5ec4;
    color: white;
    padding: 12px 25px;
    border: none;
    border-radius: 8px;
    font-size: 1em;
    cursor: pointer;
    transition: background-color 0.3s ease-in-out;
}

.contact-form-container button:hover {
    background-color: #1e3fa3;
}

/* Masquer le champ bateau dynamiquement */
.hidden {
    display: none;
}

.site-footer {
    background-color: #f0f0f0;
    color: #333;
    padding: 30px 20px;
    font-size: 0.95em;
    border-top: 1px solid #ccc;
    font-family: 'Poppins', sans-serif;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-item {
    flex: 1 1 200px;
}

.footer-item a {
    color: #0056b3;
    text-decoration: none;
}

.footer-item a:hover {
    text-decoration: underline;
}

.radio-group {
    margin-top: 20px;
    margin-bottom: 20px;
    font-family: 'Poppins', sans-serif;
    display: none;
}

.radio-group .form-label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
}

.radio-option {
    display: block;
    margin-bottom: 10px;
    font-size: 14px;
    color: #333;
    cursor: pointer;
}

.radio-option input[type="radio"] {
    margin-right: 8px;
    transform: scale(1.2);
}

.messages {
    padding: 10px;
    border: 1px solid #b4e0b4;
    background-color: #e6ffea;
    color: #2d5933;
    margin-bottom: 20px;
    border-radius: 5px;
    text-align: center;
}

.success {
    font-weight: bold;
}

/* 📱 Ajustements mobile */
@media (max-width: 768px) {
    .header {
        flex-direction: column;
        height: auto;
        padding: 10px;
        gap: 10px;
    }

    .header img {
        width: 60px;
        /* Ajuste selon besoin */
        height: auto;
    }

    .nav-btn {
        height: auto;
        font-size: 0.9em;
    }

    .contact-form-section h1 {
        font-size: 1.8em;
    }

    .contact-form-container {
        width: 90%;
        padding: 20px;
    }

    .contact-form-container select,
    .contact-form-container textarea,
    .contact-form-container input[type="text"] {
        width: 90%;
        font-size: 0.95em;
    }

    .contact-form-container button {
        width: 90%;
        padding: 10px;
        font-size: 0.95em;
    }
}