/* --- RESET & FOND --- */
body {
    margin: 0;
    min-height: 100vh;
    width: 100vw;
    font-family: 'Patrick Hand', cursive; /* Police par défaut */
    
    /* Ton fond Damier rouge/blanc */
    background-color: #ffffff;
    background-image: conic-gradient(
        #ff0000 90deg, 
        #ffffff 90deg 180deg, 
        #ff0000 180deg 270deg, 
        #ffffff 270deg
    );
    background-size: 100px 100px; /* Taille des gros pixels */
    background-position: center;
    
    /* Pour centrer le formulaire */
    display: flex;
    flex-direction: column;
    align-items: center;
    /* justify-content: center; <-- On enlève ça pour laisser scroller si besoin */
}

/* --- MENU NAVIGATION --- */
.Navtop-Menu {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 50px;
    background-color: rgba(255, 255, 255, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    z-index: 3000;
}

.Navtop-Menu a {
    margin: 0 15px;
    text-decoration: none;
    color: #333;
    font-size: 1.2rem;
}

/* --- CONTENEUR DU FORMULAIRE --- */
.main-container {
    width: 100%;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 60px; /* Espace pour le menu */
    box-sizing: border-box;
}

.contact-form-container {
    background-color: #fff;
    width: 450px; /* Largeur fixe comme une fenêtre de jeu */
    max-width: 90%;
    padding: 30px;
    border-radius: 5px; /* Coins légèrement arrondis, pas ronds */
    box-shadow: 0 10px 25px rgba(0,0,0,0.2); /* Ombre portée */
}

/* --- TYPOGRAPHIE --- */
.form-header {
    border-bottom: 1px solid #eee;
    margin-bottom: 20px;
    padding-bottom: 10px;
}

.contact-form-container h2 {
    font-family: 'VT323', monospace; /* Police Pixel */
    font-size: 2.5rem;
    color: #4a3b3b; /* Marron foncé */
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.subtitle {
    margin: 5px 0 0 0;
    color: #666;
    font-size: 1.1rem;
}

/* --- CHAMPS (INPUTS) --- */
.form-group {
    margin-bottom: 15px;
    text-align: left; /* Important pour aligner les labels */
}

label {
    display: block;
    font-family: 'VT323', monospace;
    font-size: 1.3rem;
    color: #4a3b3b;
    margin-bottom: 5px;
}

input, select, textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #bbb;
    border-radius: 4px;
    font-family: 'VT323', monospace; /* Texte à l'intérieur type machine à écrire */
    font-size: 1.2rem;
    background-color: #fff;
    box-sizing: border-box; /* Empêche le padding de dépasser */
    color: #333;
}

input:focus, textarea:focus, select:focus {
    outline: 2px solid #5d4d7c; /* Focus violet */
    border-color: #5d4d7c;
}

/* --- BOUTON VIOLET --- */
.save-btn {
    width: 100%;
    background-color: #56406e; /* Le violet Omori */
    color: white;
    font-family: 'VT323', monospace;
    font-size: 1.8rem;
    border: none;
    padding: 10px;
    cursor: pointer;
    margin-top: 10px;
    border-radius: 2px;
    transition: background-color 0.2s, transform 0.1s;
    border-bottom: 4px solid #3e2e52; /* Petit effet 3D */
}

.save-btn:hover {
    background-color: #6a5185;
}

.save-btn:active {
    transform: translateY(2px);
    border-bottom: 2px solid #3e2e52;
}