
/*CONTACT FORMULAIRE*/

.etiquette-container {
  position: relative;
  width: 90%;
  max-width: 400px;
  aspect-ratio: 1/1;
  margin: 0 auto;
}

.etiquette-container svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.etiquette-container input,
.etiquette-container div {
  position: absolute;
  left: 10%;
  width: 80%;
  text-align: center;
  background: transparent;
  border: none;
  outline: none;
  /*font-family: Georgia, serif;*/
  z-index: 2;
}

/* Textes statiques */
.text-chateau {
  top: 20%;
  font-size: 32px;
  font-weight: bold;
  letter-spacing: 4px;
  color: #000;
}

.text-cuvee {
  top: 50%;
  font-size: 18px;
  letter-spacing: 2px;
  color: #000;
  text-transform: uppercase;
}

/* Champs éditables */
.input-nom {
  top: 35%;
  font-size: 22px;
  color: #000;
}

.input-mail {
  top: 58%; /* sous CUVÉE */
  font-size: 22px;
  color: #000;
}

.input-objet {
  top: 72%; /* en dessous de l’email */
  font-size: 36px;
  font-weight: bold;
  color: #6a3b1d;
}
.input-objet::placeholder {
  color: #6a3b1d;
  opacity: 1; /* évite que le navigateur l’affiche en gris clair */
}
input:focus::placeholder,
textarea:focus::placeholder {
  color: transparent;
}
/* Champs éditables manuscrits */
.input-nom {
  font-family:'Montserrat',bold;
  font-size: 32px;
  font-weight: bold;
  letter-spacing: 0px;
  color: #000;
  animation: haloNom 5s infinite;
}
.input-mail{
  font-size: 18px;
  letter-spacing: 0px;
  color: #000;
  text-transform: uppercase;
}
.input-objet {
  font-family: 'Great Vibes', cursive; /* Animation permanente */
}

@keyframes haloNom {
  0%   { box-shadow: 0 0 0px #6a3b1d; }
  50%  { box-shadow: 0 0 8px #6a3b1d; }
  100% { box-shadow: 0 0 0px #6a3b1d; }
}


/* Bouton hors étiquette */
.btn-envoyer {
  display: block;
  margin: 20px auto;
  font-size: 1.2em;
  font-family: Georgia, serif;
  background: #b48a3a; /* doré par défaut */
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 10px 20px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.btn-envoyer:hover {
  background: #6a3b1d; /* bordeaux au hover */
  color: #fff;
}

.etiquetteSection{
  padding: 50px;
  background-color: #EBD6AE;
}
