/* vendre.css */

/* Style général du titre */
.page-title {
  font-size: 28px;
  font-weight: bold;
  color: #366150;
  text-align: center;

  margin-top: 100px;     /* espace au-dessus du titre */
  margin-bottom: 20px;  /* espace en dessous */
}


/* Texte d’introduction */
.intro-text {
  font-size: 16px;
  color: #444;
  margin-bottom: 25px;
  text-align: center;
}

/* Images de contenu */
img.img-responsive {
  border-radius: 8px;          /* coins arrondis */
  box-shadow: 0 4px 10px rgba(0,0,0,0.15); /* ombre douce */
  transition: transform 0.3s ease;
}

img.img-responsive:hover {
  transform: scale(1.03);      /* petit zoom au survol */
}

/* Formulaire */
#vendreForm {
  background-color: #f9f9f9;
  padding: 20px;
  border: 1px solid #ddd;
  border-radius: 8px;
}

#vendreForm .form-group label {
  font-weight: bold;
  color: #333;
}

#vendreForm .form-control {
  border-radius: 6px;
  box-shadow: none;
  border: 1px solid #ccc;
}

#vendreForm .btn-success {
  background-color: #366150;
  border-color: #366150;
  font-weight: bold;
  padding: 10px 20px;
}

#vendreForm .btn-success:hover {
  background-color: #27463d;
  border-color: #27463d;
}

/* Messages de retour */
#formMessage .alert {
  margin-top: 15px;
}

/* Texte d’introduction plus grand */
.big-text {
  font-size: 18px;       /* taille plus grande */
  font-weight: 500;      /* un peu plus épais */
  color: #333;           /* couleur lisible */
  line-height: 1.6;      /* espacement agréable */
  text-align: center;    /* centré pour l’esthétique */
  margin-bottom: 30px;
}

.navbar-toggle {
  border: none;
  background: transparent;
}
.navbar-toggle .icon-bar {
  background-color: #333; /* couleur des barres */
}


