/* Styles pour la page contact.html */

/* Styles généraux */
.intro-text {
  margin-bottom: 20px; 
  text-align: center;
}
.contact-container {
  max-width: 800px;
  margin: 6rem auto;
  padding: 30px;
  background: white;
  border-radius: 8px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.contact-container h1 {
  font-size: 32px;
  color: #333;
  margin-bottom: 30px;
  text-align: center;
  border-bottom: 2px solid #f0f0f0;
  padding-bottom: 15px;
}

.form-section {
  margin-bottom: 30px;
  background: #f9f9f9;
  padding: 20px;
  border-radius: 6px;
}

.form-section h2 {
  font-size: 22px;
  color: #444;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
}

.form-section h2 i {
  margin-right: 10px;
  color: #bb0b0b;
}

.contact-infos {
  background: #f9f9f9;
  padding: 20px;
  border-radius: 6px;
  margin-bottom: 30px;
}

.contact-infos h2 {
  font-size: 22px;
  color: #444;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
}

.contact-infos h2 i {
  margin-right: 10px;
  color: #bb0b0b;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: #555;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 16px;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #0066ff;
  box-shadow: 0 0 0 3px rgba(0, 102, 255, 0.1);
  outline: none;
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.btn-submit {
  background: #bb0b0b;
  color: white;
  border: none;
  padding: 14px 30px;
  font-size: 18px;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s;
  display: block;
  margin: 30px auto 0;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.btn-submit:hover {
  background: #a80b0b;
}

#feedback {
  margin-top: 20px;
  padding: 10px;
  border-radius: 4px;
}

#feedback.success {
  color: #388e3c;
  background: #e8f5e9;
}

#feedback.error {
  color: #d32f2f;
  background: #ffebee;
}