/* Styles responsifs pour contact.html */

/* Tablettes */
@media (max-width: 992px) {
  .contact-container {
    max-width: 90%;
    margin: 4rem auto;
    padding: 25px;
  }
  
  .contact-container h1 {
    font-size: 28px;
  }
  
  .contact-infos h2,
  .form-section h2 {
    font-size: 20px;
  }
  
  .btn-submit {
    padding: 12px 25px;
    font-size: 16px;
  }
}

/* Mobiles larges */
@media (max-width: 768px) {
  /* Ajout du menu hamburger */
  .header-user {
    position: relative;
  }
  
  /* Conteneur principal */
  .contact-container {
    max-width: 100%;
    margin: 2rem auto;
    padding: 20px;
    box-shadow: none;
    border-radius: 0;
  }
  
  .contact-container h1 {
    font-size: 24px;
    padding-bottom: 12px;
    margin-bottom: 20px;
  }
  
  .intro-text {
    font-size: 15px;
    padding: 0 10px;
  }
  
  /* Sections de contact */
  .contact-infos,
  .form-section {
    padding: 15px;
    margin-bottom: 20px;
  }
  
  .contact-infos h2,
  .form-section h2 {
    font-size: 18px;
    margin-bottom: 15px;
  }
  
  .contact-infos p {
    font-size: 14px;
    margin-bottom: 10px;
  }
  
  /* Formulaire */
  .form-group {
    margin-bottom: 15px;
  }
  
  .form-group label {
    font-size: 15px;
    margin-bottom: 5px;
  }
  
  .form-group input,
  .form-group textarea {
    padding: 10px;
    font-size: 15px;
  }
  
  .btn-submit {
    width: 100%;
    padding: 12px 20px;
    font-size: 16px;
    margin-top: 20px;
  }
  
  /* Ajout d'espace pour la barre de recherche */
  .spacer {
    height: 40px;
    display: block;
  }
}

/* Petits écrans mobiles */
@media (max-width: 576px) {
  .contact-container {
    padding: 15px;
    margin: 1.5rem auto;
  }
  
  .contact-container h1 {
    font-size: 22px;
    margin-bottom: 15px;
  }
  
  .intro-text {
    font-size: 14px;
  }
  
  .contact-infos h2,
  .form-section h2 {
    font-size: 16px;
  }
  
  .contact-infos p {
    font-size: 13px;
  }
  
  .form-group label {
    font-size: 14px;
  }
  
  .form-group input,
  .form-group textarea {
    padding: 8px;
    font-size: 14px;
  }
  
  .btn-submit {
    padding: 10px 15px;
    font-size: 15px;
  }
}

/* Très petits écrans */
@media (max-width: 360px) {
  .contact-container {
    padding: 10px;
  }
  
  .contact-container h1 {
    font-size: 20px;
  }
  
  .contact-infos,
  .form-section {
    padding: 12px;
  }
}