@import url('https://fonts.googleapis.com/css2?family=Crimson+Text:wght@400;700&display=swap');

:root{
  --or: gold;
  --parchemin: #f5e6c5;
  --noir: #0a0a0a;
}

body {
  margin: 0;
  background: var(--noir);
  color: var(--parchemin);
  font-family: 'Crimson Text', serif;
}

.hero {
  background: linear-gradient(180deg, #000, #1a0000);
  text-align: center;
  padding: 70px 20px;
  border-bottom: 3px solid var(--or);
}

.titre-image {
  max-width: 600px;
  width: 90%;
  height: auto;
  display: inline-block;
}

.presentation {
  max-width: 1100px;
  margin: 50px auto;
  padding: 0 20px;
}

.personnage {
  display: flex;
  align-items: center;
  margin-bottom: 70px;
  gap: 40px;
}

.personnage.inverse {
  flex-direction: row-reverse;
}

.portrait {
  position: relative;
  width: 360px;
  border: 3px solid var(--or);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 0 22px #5c0000;
}

.portrait img {
  width: 100%;
  height: auto;
  transition: transform .45s ease, filter .45s ease;
}

.cadre-bas {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 10px 14px;
  background: linear-gradient(180deg, rgba(0,0,0,0), rgba(0,0,0,.65));
  border-top: 2px solid var(--or);
  text-align: center;
  transition: transform .45s ease;
}

.cadre-bas .role {
  font-weight: 700;
  color: var(--parchemin);
}

.portrait:hover img {
  transform: translateY(-8px) scale(1.03);
  filter: contrast(1.05) saturate(1.05);
}

.portrait:hover .cadre-bas {
  transform: translateY(-8px);
}

.texte h2 {
  color: #f7d774;
  font-size: 1.6rem;
  margin: 0 0 6px;
}

.texte h3 {
  color: #fff;
  font-size: 1.25rem;
  margin: 0 0 10px;
}

.texte p {
  color: #f0e5c4;
  line-height: 1.65;
  margin: 0;
}

.blason {
  text-align: center;
  margin: 80px 0;
}

.blason img {
  width: 320px;
}

footer {
  text-align: center;
  padding: 22px;
  background: #200;
  border-top: 2px solid var(--or);
  font-size: 0.9rem;
  color: var(--parchemin);
}