* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  position: relative;
  font-family: 'Cormorant', serif;
  background: white;
  color: #111;
  padding: 4rem;
  line-height: 1.6;
  font-size: 1.25rem;
  height: 100vh;
}



body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: url('images/Papier-texture-fond.jpg') repeat;
  opacity: 0.20; /* 🔧 ajuste entre 0.03 et 0.1 pour un rendu subtil */
  pointer-events: none;
  z-index: 0;
  height: 100vh;

}


.container {
  width : 100%;
  height: 90vh;
  margin: 0 ;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 2.6rem;
}

.header {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  margin-bottom: 2rem;
  justify-content: space-between;
  width : 100%;
}

.header em{
  color :#d27605;
  font-style: bold;

}

.logo {
  width: 12.5rem;
  height: auto;
}

.title-block h1 {
  font-weight: 600;
  font-size: 4rem;
  height: 4rem;
}

.title-block {
  display: flex;
  flex-direction: column;
  gap : 0.5rem;
  align-items: end;
}

.subtitle {
  font-style: italic;
  font-size: 2rem;
  margin-top: 0.2rem;
}

.content p {
  margin-bottom: 1.5rem;
  font-size: 2rem;

}

.content em {
  font-style: italic bold;
  font-weight: 800;
  color: #d27605 ;
}

.cta-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #333;
  padding-top: 2rem;
  margin-top: 2rem;
  width: 100%;
}

.btn {
  border: 1px solid #111;
  padding: 0.5rem 1rem;
  text-decoration: none;
  color: #111;
  font-size: 1.1rem;
  transition: all 0.2s ease;
}

.btn:hover {
  border: 1px solid #d27605;
  background: #d27605;
  color: #fff;
}

.Retour {
  border: 1px solid #111;
  padding: 0.5rem 1rem;
  text-decoration: none;
  color: #111;
  font-size: 1.1rem;
  transition: all 0.2s ease;
}

.Retour:hover {
  border: 1px solid #d27605;
  background: #d27605;
  color: #fff;
}

.location {
  font-size: 1.5rem;
  color:  #111;
  text-decoration: none;
}

.location:hover {
  color: #d27605;
}

.contact-form {
  width : 100%;

}

.contact-form h2 {
  font-size: 4rem;
  font-weight: 600;
  height: 4rem;
}

form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2rem;
}

.form-left,
.form-right {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-grid input,
.form-grid textarea {
  font-family: 'Cormorant', serif;
  font-size: 1.25rem;
  padding: 0.75rem;
  border: 1px solid #111;
  background-color: #fdfdfb;
  resize: none;
}

textarea {
  flex: 1;
  min-height: 6rem;
}

.form-footer {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #111;
  padding-top: 2rem;
  margin-top: 2rem;
}

form .btn {
  border: 1px solid #111;
  padding: 0.5rem 1.5rem;
  text-decoration: none;
  color: #111;
  font-size: 1.1rem;
  background: transparent;
  font-family: 'Cormorant', serif;
  cursor: pointer;
  transition: all 0.2s ease;
}

form .btn:hover {
  border: 1px solid #d27605;
  background-color: #d27605;
  color: #fff;
}


.form-right {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  height: 100%;
}

.form-right textarea {
  height: 6rem; /* Hauteur des 3 champs + leurs gaps */
}

@media (max-width: 768px) {
  body {
    padding: 1.5rem;
  }


  .header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .cta-line{
    padding-bottom: 2rem;
  }

  .title-block {
    align-items: flex-start;
    text-align: left;
    height: auto;
    gap: 0;
  }

  .title-block h1 {
    font-size: 2.5rem;
    height: auto;
    line-height: 1.2;
  }

  .subtitle {
    font-size: 1.3rem;
  }

  /* 🧩 Contact */
  .contact-form h2 {
    font-size: 2.5rem;
    height: auto;
    line-height: 1.1;
  }

  .form-grid {
    display: flex;
    flex-direction: column;
  }

  .form-footer {
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
  }

  .form-footer .btn {
    width: 100%;
    text-align: center;
  }
}
