/* PAGE CONTACT */
html, body
{
    height: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
}

body
{
    font-family: Arial, Helvetica, sans-serif;
    margin: 0;
    padding: 2rem 1rem;
    background-color: #f9f9f9;
    color: #333;
}

nav
{
    background: #fff;
    padding: 1rem;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

nav a
{
    margin: 0 1rem;
    color: #002244;
    text-decoration: none;
    font-weight: 600;
}

main
{
    flex: 1;
}

.contact-container h2,p
{
    text-align: center;
}
header
{
    background: #002244;
    color: white;
    padding: 2rem 1rem;
    display: flex;
    justify-content: center;
}

form
{
    max-width: 600px;
    margin: 2rem auto;
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0 1);
}

label
{
    display: block;
    margin-top: 1rem;
    font-weight: bold;
}

.label-vol
{
    font-weight: 600;
    font-size: 1.05rem;
    color: #34495e;
    display: block;
    margin-bottom: 8px;
}

.select-vol
{
    width: 100%;
    padding: 12px 16px;
    border-radius: 8px;
    border: 1px solid #ccc;
    background-color: #fff;
    font-size: 1rem;
    appearance: none; /* Supprime le style naif */
    cursor: pointer;
    transition: border 0.3s ease;
}

input, textarea
{
    width: 100%;
    padding: 0.75rem;
    margin-top: 0.5rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1rem;
}

.button
{
    background-color: #003366;
    color: white;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 4px;
    margin-top: 1.5rem;
    cursor: pointer;
    font-size: 1rem;
}

button:hover
{
    background-color: #005599;
}

.back-home-container
{
    text-align: center;
    margin-top: 30px;
}

.back-home
{
    display: inline-block;
    margin-top: 20px;
    text-decoration: none;
    color: #002244;
    font-weight: bold;
}

.back-home:hover
{
    text-decoration: underline;
}

.header-container
{
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-content: center;
    text-align: left;
    /*justify-content: space-between;
    position: relative;*/
}

.logo
{
    height: 60px;
    width: auto;
}

.site-title
{
    font-size: 2rem;
    font-weight: bold;
    margin: 0;
}

.tagline
{
    font-size: 1rem;
    margin: 0;
    opacity: 0.85;
}

footer
{
    background: #002244;
    color: white;
    padding: 2rem 1rem;
    display: flex;
    justify-content: center;
}

.required
{
    color: red;
    font-weight: bold;
}

label[for="offrir-bon-cadeau"]
{
    display: inline-flex;
    align-items: center;
    font-size: 1rem;
    cursor: pointer;
}

Input[type="checkbox"]
{
    margin-right: 12px;
    width: 20px;
    height: 20px;
    cursor: pointer;
    align-self: center; /* Pour centrer verticalement*/
}