body {
    background: url("fond-contact.png") repeat;
    background-size: 600px 600px; /* ajuste si besoin */
  }
  
  /* --- Conteneur principal --- */
  .contact {
    display: flex;
    flex-direction: column;
    justify-content: center; 
    align-items: center;     
    min-height: 100vh;       
    text-align: center;
    padding: 20px;
  }
  
  /* --- Titre --- */
  .contact h1 {
    font-family: 'Domine', serif;
    font-size: 2rem;
    font-weight: 700;
    color: #4c2f21; 
    margin-bottom: 10px;
  }
 
  /* --- Texte descriptif --- */
  .contact p {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    margin-bottom: 40px;
    max-width: 600px;
    color: #333;
  }
  
  /* --- Formulaire --- */
  .contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    max-width: 500px;
  }
  
  .contact-form label {
    text-align: left;
    font-weight: 500;
    font-family: 'Montserrat', sans-serif;
  }
  
  /* --- Champs texte --- */
  .contact-form input,
  .contact-form textarea {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    padding: 12px 15px;
    border-radius: 8px;
    border: none;
    background:  #ECEEDF;
    box-shadow: 3px 3px 8px rgba(0,0,0,0.2); /* ✅ ombre */
    transition: box-shadow 0.3s ease;
  }
  
  /* Effet focus */
  .contact-form input:focus,
  .contact-form textarea:focus {
    outline: none;
    box-shadow: 4px 4px 12px rgba(0,0,0,0.25);
  }
  
  /* --- Bouton --- */
  .contact-form button {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    background-color:  #ffffff;
    color: #0d1a2d;
    padding: 14px;
    border-radius: 8px;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
    box-shadow: 3px 3px 8px rgba(0,0,0,0.2); /* ✅ même ombre */
  }
  
  /* Effet hover bouton */
  .contact-form button:hover {
    background-color: #8B5E3C; /* Marron foncé */
    color:  #ECEEDF;
    transform: scale(1.03); /* léger zoom */
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15); /* ombre plus profonde */
  transition: transform 0.3s ease, box-shadow 0.3s ease; /* animation douce */
  }


  /*fade-in de la page*/
  .fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
  }
  
  .fade-in.visible {
    opacity: 1;
    transform: translateY(0);
  }

  /* 🌟 Effet focus glow sur les champs de formulaire */
input:focus,
textarea:focus {
  outline: none; /* enlève le contour par défaut du navigateur */
  box-shadow: 0 0 10px rgba(187, 220, 229, 0.5); /* halo lumineux bleuté */
  transition: box-shadow 0.3s ease; /* transition fluide */
}

.popup-message {
  font-family: 'Montserrat', sans-serif;
  color: #2A2A2A;
  /* autres styles comme couleur, taille, etc. */
}








  /*-COULEUR FOOTER-*/

.site-footer {
  background: url("../Contact/fond-contact.png") repeat;
  background-size: 600px 600px;
}