/* Amélioration de la lisibilité et de l'ergonomie */
body {
    font-family: 'Segoe UI', sans-serif;
    /* On ajoute l'image de fond */
    background-image: url('fond-reservation.webp'); /* Assurez-vous que le nom correspond */
    background-size: cover;          /* L'image s'adapte à toute la largeur */
    background-position: center;     /* Centrée */
    background-attachment: fixed;    /* L'image reste fixe au scroll */
    background-repeat: no-repeat;
    
    /* Centrage du formulaire */
    display: flex;
    justify-content: center;
    align-items: center;             /* Centre aussi verticalement */
    min-height: 100vh;               /* Prend toute la hauteur de l'écran */
    margin: 0;
}

/* Ajoutez ce bloc pour que le formulaire "ressorte" sur le dessin */
.container {
    background-color: rgba(255, 255, 255, 0.95); /* Blanc très légerement transparent */
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.2);     /* Une ombre pour donner du relief */
    width: 90%;                                 /* Largeur confortable sur mobile */
    max-width: 400px;
}

h3 { text-align: center; color: #333; margin-bottom: 20px; }

.form-group { margin-bottom: 15px; }

label { display: block; margin-bottom: 5px; font-weight: bold; color: #555; }

/* Champs optimisés pour mobile (taille 16px min pour éviter le zoom) */
input, select, textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 16px;
    box-sizing: border-box;
}

button {
    width: 100%;
    padding: 15px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    margin-top: 15px;
}

button:hover { background-color: #0056b3; }

.btn-whatsapp {
    display: inline-block;
    padding: 15px 30px;
    background-color: #25d366; /* Vert WhatsApp */
    color: #ffffff;
    text-decoration: none;
    border-radius: 50px; /* Forme pilule */
    font-weight: 700;
    font-size: 16px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(37, 211, 102, 0.3);
    margin: 20px 0;
    border: none;
}

.btn-whatsapp:hover {
    background-color: #128c7e;
    transform: translateY(-2px); /* Petit effet de survol */
    box-shadow: 0 6px 15px rgba(37, 211, 102, 0.5);
}

/* Style réduit pour le bouton de géolocalisation */
.btn-geo-small {
    padding: 5px 10px;        /* Réduit l'espace interne */
    font-size: 0.8em;         /* Réduit la taille du texte */
    width: auto;              /* Le bouton s'adapte au texte */
    display: inline-block;    /* Permet au bouton de ne pas prendre toute la largeur */
    margin-top: 5px;
    border-radius: 4px;
    cursor: pointer;
}

