/* --- Layout global --- */
.contact-wrapper {
  max-width: 1100px;
  margin: 80px auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  gap: 80px;
  align-items: flex-start;
}

/* --- Colonne gauche : contenu texte --- */
.contact-left {
  flex: 1;
  font-family: "Roboto", sans-serif;
}

.contact-left h1 {
  font-size: 56px;
  font-weight: 800;
  margin-bottom: 30px;
  line-height: 1;
  text-transform: lowercase; /* Style moderne */
  color: #000;
}

.contact-left p {
  font-size: 1.05rem;
  color: #555;
  margin-bottom: 25px;
  line-height: 1.6;
  font-style: italic; /* Rappel du style Lil Bird */
}

.contact-info-group {
  margin-bottom: 30px;
}

.contact-left a {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
  text-decoration: none;
  color: #000;
  font-size: 16px;
  font-weight: 500;
  transition: color 0.3s;
}

.contact-left a:hover {
  color: #a6b39d;
}

.social-links {
  margin-top: 40px;
  display: flex;
  gap: 20px;
}

.social-links a {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: bold;
}

/* --- Colonne droite : formulaire --- */
.contact-form-container {
  flex: 1.2;
  background: #fff;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border-radius: 4px;
}

/* Personnalisation des lignes Symfony Form */
.mb-3 label {
  font-weight: bold;
  font-size: 0.85rem;
  text-transform: uppercase;
  margin-bottom: 8px;
  display: block;
  letter-spacing: 0.5px;
}

.contact-form-container input,
.contact-form-container textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #e0e0e0;
  font-size: 15px;
  border-radius: 0; /* Carré pour le look premium */
  outline: none;
  transition: all 0.3s ease;
  background-color: #f9f9f9;
}

.contact-form-container input:focus,
.contact-form-container textarea:focus {
  border-color: #a6b39d;
  background-color: #fff;
  box-shadow: 0 0 0 4px rgba(166, 179, 157, 0.1);
}

/* Bouton conforme au design Shop/Blog */
.btn-submit {
  background: #000;
  color: #fff;
  border: none;
  width: 100%;
  padding: 16px;
  margin-top: 20px;
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 2px;
  cursor: pointer;
  transition: background 0.3s;
  text-transform: uppercase;
}

.btn-submit:hover {
  background: #a6b39d;
}

/* --- Responsive --- */
@media (max-width: 900px) {
  .contact-wrapper {
    flex-direction: column;
    margin: 40px auto;
    gap: 40px;
  }

  .contact-left h1 {
    font-size: 42px;
    text-align: center;
  }

  .contact-left {
    text-align: center;
  }

  .contact-left a {
    justify-content: center;
  }

  .social-links {
    justify-content: center;
  }

  .contact-form-container {
    padding: 25px;
  }
}
