/* ===== RESET ===== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: Arial, sans-serif;
  background: #fff8f3;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* ===== NAVBAR ===== */
.navbar-produits {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(to bottom, #c2185b, #f8bbd0);
  padding: 15px 30px;
  color: white;
}

.nav-left img {
  height: 50px;
}

.nav-center {
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  flex-grow: 1;
}

.nav-right a {
  margin-left: 15px;
  color: white;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.nav-right a:hover {
  color: #c2185b;
}

/* ===== FORMULAIRE ===== */
.contact-section {
  max-width: 500px;
  margin: 60px auto;
  padding: 20px;
  text-align: center;
}

.contact-section h2 {
  font-size: 28px;
  color: linear-gradient(to bottom, #c2185b, #f8bbd0);
  margin-bottom: 20px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

input, textarea, button {
  width: 100%;
  padding: 12px;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-size: 16px;
  resize: none;
}

button {
  background: linear-gradient(to bottom, #c2185b, #f8bbd0);
  color: white;
  border: none;
  cursor: pointer;
  transition: background 0.3s ease;
}

button:hover {
  background: linear-gradient(to bottom, #f8bbd0, #c2185b);
}

/* ===== FOOTER ===== */
.footer {
  background: linear-gradient(to bottom, #c2185b, #f8bbd0);
  color: white;
  padding: 15px 30px;
  font-weight: bold;
  margin-top: auto;
  display: flex; /* active Flexbox */
  justify-content: space-between; /* espace entre les éléments */
  align-items: center; /* aligne verticalement */
}

.footer p {
  margin: 0;
  text-align: center;
  flex-grow: 1; /* prend l’espace central */
}

.footer .lien-icone img {
  height: 50px; /* ajuste la taille des logos */
  width: auto;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .nav-right {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .nav-right a {
    margin: 5px 0;
  }
}

#formMessage {
  transition: all 0.3s ease;
  font-size: 1rem;
}

.contact {
  max-width: 600px;
  margin: 40px auto;
  padding: 20px;
  text-align: center;
  background: #fff4f0;
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.contact input,
.contact textarea {
  width: 100%;
  padding: 12px;
  margin: 8px 0;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 16px;
}

.contact button {
  padding: 12px 30px;
  background-color: linear-gradient(to bottom, #c2185b, #f8bbd0);
  color: white;
  border: none;
  border-radius: 30px;
  font-weight: bold;
  cursor: pointer;
  transition: transform 0.3s ease, background 0.3s ease;
}

.contact button:hover {
  background-color: linear-gradient(to bottom, #c2185b, #f8bbd0);
  transform: scale(1.05);
}

#formMessage {
  font-weight: bold;
  margin-top: 10px;
}