@import url('https://fonts.googleapis.com/css2?family=Cinzel+Decorative:wght@700&display=swap');

/* Style commun affiches 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);
}

/* Effet pellicule */
.affiche-cinema::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: repeating-linear-gradient(
    to right,
    rgba(0,0,0,0.06) 0 2px,
    transparent 2px 100px
  );
  border-radius: 20px;
  pointer-events: none;
}

/* Titres principaux */
.affiche-cinema h1 {
  font-size: 2.2rem;
  color: #b22222;
  margin-bottom: 0.5rem;
  text-shadow: 2px 2px #f5e1b9;
}

.affiche-cinema h2 {
  font-size: 1.5rem;
  color: #000;
  margin-bottom: 2rem;
  text-transform: uppercase;
  border-bottom: 3px solid #b22222;
  display: inline-block;
  padding-bottom: 0.3rem;
}

/* Texte */
.affiche-cinema p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 1.2rem;
  text-align: justify;
}

/* Intro spécifique */
.intro-cinoche .participer {
  font-weight: bold;
  color: #b22222;
  text-align: center;
  margin-top: 1.5rem;
}

/* Charte : style règles */
.charte-regles {
  text-align: left;
  margin: 0 auto;
  max-width: 750px;
}

.charte-regles h3 {
  font-size: 1.3rem;
  color: #b22222;
  margin: 1.2rem 0 0.5rem;
  border-left: 5px solid #b22222;
  padding-left: 0.5rem;
}

.charte-regles p {
  font-size: 1rem;
  line-height: 1.6;
  margin-left: 1rem;
}

/* Clap de fin */
.charte-affiche .clap-fin {
  margin-top: 2.5rem;
  font-weight: bold;
  font-size: 1.2rem;
  color: #000;
  background: #ffcc00;
  display: inline-block;
  padding: 0.8rem 1.2rem;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
}

/* Contact section */
.contact-cinoche h2 {
  font-size: 1.6rem;
  color: #b22222;
  margin-bottom: 1rem;
  text-transform: uppercase;
  border-bottom: 3px solid #b22222;
  display: inline-block;
  padding-bottom: 0.3rem;
}

.contact-cinoche p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

.contact-btn {
  display: inline-block;
  background: #b22222;
  color: #fff;
  padding: 0.8rem 1.5rem;
  border-radius: 10px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  box-shadow: 0 4px 10px rgba(0,0,0,0.4);
  transition: transform 0.2s, background 0.3s;
}

.contact-btn:hover {
  background: #ffcc00;
  color: #000;
  transform: scale(1.05);
}

/* Logo centré */
.contact-logo {
  text-align: center;
  margin-bottom: 1.5rem;
}
.contact-logo .site-logo {
  max-width: 300px;
  height: auto;
  display: inline-block;
}