/* FORMULAIRE DE CONTACT – STYLE ÉLÉGANT */
.contact-section {
    background-color: #1A1229; /* même couleur que le header/footer */
    padding: 100px 20px;
    font-family: 'Playfair Display', serif;
    color: #fff;
    text-align: center;
  }
  
  
  
  .contact-section h2 {
    font-family: 'Cinzel', serif;
    font-size: 35px;
    color: #D4AF37;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
    margin-bottom: 40px;
  }
  
  
  .contact-form {
    max-width: 600px;
    margin: 0 auto;
    background-color: #ffffff;
    border: 2px solid #D4AF37;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.3);
    animation: fadeIn 1.2s ease-in-out;
    color: #1A1229;
  
    transition: transform 0.4s ease, box-shadow 0.4s ease;
  }

  
  .contact-form:hover {
    transform: scale(1.03);
    box-shadow:
      0 0 20px rgba(212, 175, 55, 0.5), /* halo doré autour */
      0 25px 45px rgba(0, 0, 0, 0.4);   /* ombre de profondeur */
  }
  
  
  
  
  .contact-form label {
    display: block;
    text-align: left;
    margin-bottom: 6px;
    margin-top: 25px;
    font-size: 16px;
    font-family: 'Cinzel', serif;
    color: #D4AF37;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
  }

  .contact-form label::after {
    content: "";
    display: block;
    width: 40px;
    height: 2px;
    background-color: #D4AF37;
    margin-top: 4px;
  }
  
  
  
  .contact-form input,
  .contact-form textarea {
    background-color: #f9f9f9;
    color: #1A1229;
    width: 100%;
    padding: 15px;
    margin-bottom: 25px;
    font-size: 15px;
    border: 1px solid #ccc;
    border-radius: 10px;
    font-family: 'Playfair Display', serif;
  }
  
  .contact-form textarea {
    resize: vertical;
  }
  
  .contact-form button {
    width: 100%;
    padding: 15px;
    background: #D4AF37;
    color: white;
    font-weight: bold;
    border: none;
    border-radius: 10px;
    font-size: 15px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: background 0.3s ease;
  }
  
  .contact-form button:hover {
    background-color: #b8952d;
  }

  .contact-form button:active {
    animation: boutonPulse 0.5s ease;
  }
  

  .sous-titre-formulaire {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    color: #f0f0f0; /* couleur claire visible sur fond violet foncé */
    margin-top: 10px;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
  }

  a.logo-container {
    text-decoration: none;
    color: inherit;
  }
  
  
  
  
  /* ANIMATION D’APPARITION */
  @keyframes fadeIn {
    0% {
      opacity: 0;
      transform: translateY(50px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }
  

  @keyframes boutonPulse {
    0% {
      transform: scale(1);
      box-shadow: none;
    }
    50% {
      transform: scale(1.05);
      box-shadow: 0 0 20px rgba(212, 175, 55, 0.8);
    }
    100% {
      transform: scale(1);
      box-shadow: none;
    }
  }
  