:root{
    --gold: #d4af37;
    --gold-light: #f5e6b3;
}
@font-face {
    font-family: "UncialAntiqua";
    src: url("../polices/UncialAntiqua.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
}
body {
	background-image: url("../images/carte/cryo.png");
	background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}
.imgr img {
	width: 50%;
	float : left;
	margin-right: 20px;
	border-radius: 10px;
}
.imgl img {
	width: 50%;
	float : right;
	margin-left: 20px;
	margin-bottom: 20px;
	border-radius: 10px;
	margin-bottom: 15px;
}
.itt {
	font-style: italic;
}
.under {
	text-decoration: underline;
}
 ul {
    list-style-type: none;
    color: var(--gold-light);
}
/* ========== CONTENEUR PRINCIPAL / HERO ========== */
.conteneur {
    width: min(var(--max-width), 95%);
    max-width: var(--max-width);
    margin: 20px auto;
}

/* bloc central semi-transparent (cadre de mise en avant) */
.hero {
    text-align: center;
    padding: 70px 16px;
    position: relative;
}
.hero .feature-box {
    margin: 0 auto;
    display: block;
    width: min(760px, 90%);
    background: rgba(0,0,0,0.65);
    border: 2px solid rgba(212,175,55,0.25);
    padding: 36px 28px;
    box-shadow: 16px 16px 24px rgba(212,175,55,0.12);
    border-radius: 15px;
}
.hero h2 {
    font-family: "UncialAntiqua", serif;
    color: var(--gold);
    margin-bottom: 18px;
    font-size: 2rem;
}
.hero h3 {
	font-family: "UncialAntiqua", serif;
    color: var(--gold);
    margin-bottom: 10px;
    font-size: 1.5rem;
}
.hero p {
    color: var(--gold-light);
    line-height: 1.6;
    max-width: 720px;
    margin: 0 auto;
}