/* =========================================
   STYLE BONUS (IMAGES OFFICIELLES)
========================================= */

.bonus-hero {
    background: #f4f4f4;
    padding: 60px 20px;
    text-align: center;
    border-bottom: 1px solid #ddd;
}
.bonus-hero h1 { font-size: 2.5rem; margin-bottom: 10px; }
.text-red { color: #E62020; }

/* --- SECTION VIDÉO --- */
.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* Ratio 16:9 */
    height: 0;
    overflow: hidden;
    max-width: 800px;
    margin: 30px auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    background: #000;
}

.video-wrapper iframe {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
}

.bonus-info-box {
    max-width: 800px;
    margin: 0 auto;
    background: #eef;
    border-left: 5px solid #E62020;
    padding: 20px;
    border-radius: 5px;
    color: #333;
}

/* --- SECTION IMAGES (DOCS) --- */
.bg-light { background-color: #fafafa; }
.mb-4 { margin-bottom: 2rem; }
.mt-4 { margin-top: 2rem; }

.doc-container {
    max-width: 900px;
    margin: 0 auto 50px auto; /* Espace entre chaque image */
    text-align: center;
}

.doc-container h3 {
    margin-bottom: 15px;
    color: #333;
    border-left: 5px solid #E62020;
    padding-left: 15px;
    text-align: left;
    background: white;
    padding: 10px 15px;
    border-radius: 0 5px 5px 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.official-img {
    width: 100%; /* Prend toute la largeur disponible */
    height: auto; /* Garde les proportions */
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1); /* Petite ombre portée */
    border: 1px solid #ddd;
    display: block;
}

/* Petit effet au survol */
.official-img:hover {
    transform: scale(1.01);
    transition: transform 0.3s ease;
}

.legal-notes {
    text-align: center;
    font-style: italic;
    color: #777;
    margin-top: 40px;
    border-top: 1px solid #ddd;
    padding-top: 20px;
}