/* CSS spécifique à la page nouscontacter.html */
/* Ne concerne que la section <main> */

main {
    padding: 3rem 1rem;
    font-family: 'Open Sans', sans-serif;
    color: #3b2f2f;
  }
  
  /* Titre principal */
  main h1 {
    text-align: center;
    font-size: 3.5rem;
    font-family: 'Cormorant Infant', serif;
    color: #5c2e2e;
    margin-bottom: 2rem;
  }
  
  /* Formulaire */
  .formulaire {
    max-width: 800px;
    margin: 0 auto;
    background-color: #fff8f3;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  }
  
  .form-group {
    margin-bottom: 1.5rem;
  }
  
  .form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #4a2c2a;
  }
  
  .form-group input,
  .form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ccc;
    border-radius: 8px;
    background-color: #fff;
  }
  
  textarea {
    resize: vertical;
    min-height: 120px;
  }
  
  /* Bouton d’envoi */
  .boutton-formulaire {
    background-color: #c42e2e;
    color: white;
    font-weight: bold;
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  .boutton-formulaire:hover {
    background-color: #a22424;
  }
  
  /* Mention RGPD */
  .finformulaire {
    max-width: 800px;
    margin: 2rem auto;
    font-size: 0.9rem;
    color: #333;
    background-color: #f7f2ed;
    padding: 1.5rem;
    border-left: 5px solid #c42e2e;
  }
  