.contact-page {
  padding: 4rem 1rem;
  max-width: 1000px;
  margin: 0 auto;
}

.contact-page h1 {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 0.5rem;
}

.slogan {
  text-align: center;
  font-style: italic;
  margin-bottom: 2rem;
  color: #777;
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  justify-content: center;
}

form {
  flex: 1;
  min-width: 280px;
  max-width: 500px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

form input, form textarea {
  padding: 0.8rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
}

form button {
  padding: 0.8rem;
  background-color: #d4a373;
  color: white;
  border: none;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s;
}

form button:hover {
  background-color: #bb875a;
}

.contact-infos {
  flex: 1;
  min-width: 250px;
  max-width: 400px;
  font-size: 1rem;
  line-height: 1.6;
}

.contact-infos a {
  color: #a36b3f;
  text-decoration: none;
}

.contact-infos ul {
  margin-top: 1rem;
  padding-left: 1rem;
}

html, body {
  height: 100%;
  min-height: 100%;
  margin: 0;
  padding: 0;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background: linear-gradient(180deg, #FFF7F0 80%, #FBE8E3 100%);
}

main.contact-page {
  flex: 1 0 auto;
}

/* Pour le footer bien en bas, rosé, sans trou */
footer {
  flex-shrink: 0;
  background: linear-gradient(90deg, #FFE3F1 30%, #FFF7F0 100%);
  color: #925f68;
  text-align: center;
  padding: 2rem 1rem 1rem 1rem;
  font-size: 1rem;
  border-top: 2px solid #ecc0d7;
  margin-top: 0;
  box-shadow: 0 -4px 30px 0 #fbe8e380;
  position: relative;
  z-index: 2;
}

.footer-content {
  max-width: 900px;
  margin: 0 auto;
}

.footer-links, .footer-socials {
  margin: 1rem 0 0 0;
}

.footer-links a,
.footer-tel {
  color: #925f68;
  text-decoration: none;
  margin: 0 6px;
  font-weight: 500;
  transition: color 0.2s;
}
.footer-links a:hover,
.footer-tel:hover {
  color: #e7adc5;
  text-decoration: underline;
}
.footer-sep {
  color: #e7adc5;
  padding: 0 7px;
}
.footer-logo span {
  color: #e7adc5;
  font-weight: bold;
  letter-spacing: 1px;
}

.footer-socials {
  margin-top: 0.7rem;
}
.footer-social {
  display: inline-block;
  margin: 0 7px;
  vertical-align: middle;
  transition: transform 0.15s;
}
.footer-social:hover {
  transform: scale(1.14) rotate(-7deg);
  filter: brightness(1.12);
}

/* formulaire envoi mail*/

.flash-messages { margin-bottom: 2rem; text-align:center; }
.flash { background: #e7adc5; color: #fff; border-radius: 8px; padding: 1em 2em; display: inline-block; margin: .7em auto; }
.flash.error { background: #d5737c; }

