html, body {
  height: 100%; /* nécessaire pour centrer sur toute la page */
  margin: 0;
}

body {
    background-image: url('bg03.jpg');
    background-repeat: no-repeat;
    background-position: center;
    
}

.center {
  display: flex;
  flex-direction: column;   /* empile verticalement */
  justify-content: center;  /* centre verticalement */
  align-items: center;      /* centre horizontalement */
  height: 100%;             /* prend toute la hauteur disponible */
  gap: 0px;                /* espace entre les images */
}

.center2026 {
  display: flex;
  flex-direction: column;   /* empile verticalement */
  justify-content: center;  /* centre verticalement */
  align-items: center;      /* centre horizontalement */
  height: 20%;             /* prend toute la hauteur disponible */
  gap: 0px;                /* espace entre les images */
}


.footer {
    position: fixed;      /* toujours visible */
    bottom: 0;            /* collé en bas */
    width: 100%;          /* pleine largeur */

    color: rgb(0, 0, 0);
    display: flex;        /* pour centrer le contenu */
    justify-content: center; /* centrer horizontalement */
    gap: 15px;            /* espace entre les liens */
    padding: 10px 0;
    font-family: 'Roboto', sans-serif;
    font-size:12px;;
}

.footer a {
    color: rgb(0, 0, 0);
    text-decoration: none;
}

.footer a:hover {
     color: #3964f1; 

}


.contact-form {
  max-width: 500px;
  margin: 50px auto;
  padding: 0;                     
  background: transparent;        /* formulaire transparent */
  border: none;                   
  font-family: Arial, sans-serif;
  color: #fff;                    /* texte du titre et labels */
}

.contact-form h2 {
  margin-bottom: 20px;
  color: #020201;                 /* couleur titre */
}

/* Labels */
.contact-form label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
  font-size: 0.9em;
  color: #070707;                    /* blanc pour se détacher du fond sombre */
}

/* Champs de texte */
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 20px;
  background: #fff;               /* fond blanc */
  border: 1px solid #000;        /* bordure noire */
  border-radius: 6px;
  color: #000;                    /* texte noir */
  font-size: 1em;
  outline: none;
  transition: 0.3s;
}

/* Champs au focus */
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #ffcc00;          /* accent couleur au focus */
}

/* Bouton */
.contact-form button {
  padding: 12px 20px;
  background-color: #ffcc00;     
  color: #000;
  font-weight: bold;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.3s;
}

.contact-form button:hover {
  background-color: #e6b800;     
}