/* ===== PAGE CONTACT ===== */

.contact-container {
  max-width: 600px;
  margin: 50px auto;
  background: white;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.Contact-btn {
  background: #e0b78f;
  color: #1e2a57;
  font-family: "lovelo Black";
  text-align: center;
  font-size: 18px;
  font-weight: bold;
  padding: 10px 20px;
  border-radius: 20px;
  width: fit-content;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 10px;
  margin-left: auto;
  margin-right: 10px;
}
.Contact-btn-submit {
  background: #1e2a57;
  color: white;
  font-family: "lovelo Black";
  text-align: center;
  font-size: 16px;
  font-weight: bold;
  padding: 10px 20px;
  border-radius: 20px;
  width: fit-content;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 15px;
  margin-left: auto;
  margin-right: 5px;
}
/* ===== HEADER RESPONSIVE ===== */
.fiche-header {
  position: relative;
  height: 60px;
  display: flex;
  align-items: center;
  background-color: #f1efec;
  padding: 0 15px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.back-arrow {
  cursor: pointer;
  position: absolute;
  left: 15px;
  font-size: 18px;
  color: #1e2a57;
  font-weight: bold;
  font-family: "Futura";
  transition: color 0.3s ease;
  z-index: 10;
}

.back-arrow:hover {
  color: #e0b78f;
}

.logo-container {
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.logo-responsive {
  height: 55px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  transition: all 0.3s ease;
}

/* ===== RESPONSIVE LOGO ===== */
@media (max-width: 992px) {
  .fiche-header {
    height: 55px;
    padding: 0 12px;
  }

  .back-arrow {
    left: 12px;
    font-size: 16px;
  }

  .logo-responsive {
    height: 55px;
    max-width: 180px;
  }
}

@media (max-width: 768px) {
  .fiche-header {
    height: 50px;
    padding: 0 10px;
  }

  .back-arrow {
    left: 10px;
    font-size: 14px;
  }

  .logo-responsive {
    height: 50px;
    max-width: 150px;
  }
}

@media (max-width: 480px) {
  .fiche-header {
    height: 45px;
    padding: 0 8px;
  }

  .back-arrow {
    left: 8px;
    font-size: 12px;
  }

  .logo-responsive {
    height: 40px;
    max-width: 120px;
  }
}

@media (max-width: 350px) {
  .fiche-header {
    height: 40px;
    padding: 0 5px;
  }

  .back-arrow {
    left: 5px;
    font-size: 11px;
  }

  .logo-responsive {
    height: 35px;
    max-width: 100px;
  }
}

.contact-title {
  text-align: center;
  margin-bottom: 20px;
  font-family: "Lovelo Black";
}

.contactForm input {
  display: block;
  width: 100%;
  padding: 10px;
  margin-bottom: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 16px;
  font-family: "Futura";
}

h1,
h2 {
  text-align: center;
  color: #333;
}

form label {
  display: block;
  margin-top: 15px;
  font-weight: bold;
}

form input[type="text"],
form input[type="email"],
form textarea {
  width: 100%;
  padding: 10px;
  margin-top: 5px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.popup {
  display: none;
  position: fixed;
  z-index: 999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
}

.popup-content {
  background-color: #fff;
  margin: 15% auto;
  padding: 30px;
  border-radius: 8px;
  width: 80%;
  max-width: 400px;
  text-align: center;
  box-shadow: 0 0 15px rgba(0,0,0,0.2);
}

.close-popup {
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 24px;
  font-weight: bold;
  color: #333;
  cursor: pointer;
}
