/* Style cadre affiche rétro */
.affiche-cinema {
  background: radial-gradient(circle, #fdf6e3 0%, #f5e1b9 100%);
  color: #2c2c2c;
  padding: 2.5rem;
  border: 12px double #b22222;
  border-radius: 20px;
  max-width: 900px;
  margin: 3rem auto;
  text-align: center;
  font-family: 'Cinzel Decorative', serif;
  position: relative;
  box-shadow: 0 0 40px rgba(0,0,0,0.6);
}

/* Titre style affiche */
.affiche-cinema h2 {
  font-size: 32px;
  margin-bottom: 1.5rem;
  color: #b22222;
  text-shadow: 1px 1px 0 #fff;
  letter-spacing: 2px;
}

/* Labels */
.contact-form.retro-style label {
  display: block;
  margin: 1.2rem 0 0.5rem;
  font-weight: bold;
  font-size: 18px;
  color: #2c2c2c;
}

/* Champs */
.contact-form.retro-style input,
.contact-form.retro-style textarea {
  width: 90%;
  padding: 0.8rem;
  border: 2px solid #b22222;
  border-radius: 10px;
  background: #fffbe8;
  color: #2c2c2c;
  font-size: 16px;
  margin-bottom: 1rem;
  font-family: inherit;
}

.contact-form.retro-style textarea {
  min-height: 140px;
}

/* Bouton rétro */
.contact-form.retro-style button {
  background: #b22222;
  color: #fff;
  border: 3px solid #7a1a1a;
  padding: 0.8rem 1.8rem;
  font-size: 18px;
  font-weight: bold;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.2s, background 0.3s;
}

.contact-form.retro-style button:hover {
  background: #d43c3c;
  transform: scale(1.05);
}

/* Message retour */
#form-status {
  margin-top: 1rem;
  font-size: 16px;
  font-weight: bold;
}
#form-status.success { color: #228B22; }
#form-status.error { color: #d2691e; }

/* Logo centré */
.contact-logo {
  text-align: center;
  margin-bottom: 1.5rem;
}
.contact-logo .site-logo {
  max-width: 300px;
  height: auto;
  display: inline-block;
}