/* ══════════════════════════════════════════════
   roadbook-blocs.css
   Styles pour les blocs refondus :
   - Ressources du voyage (2 colonnes + QR visible)
   - Immersion du voyage (carte séparée)
   - Journal de bord du voyageur (3 vignettes + CTA)
   ══════════════════════════════════════════════ */

/* ─── KICKER COMMUN ─────────────────────────── */
.bloc-kicker {
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #e07422;
    margin-bottom: .5rem;
}

/* ─── BOUTONS COMPLÉMENTAIRES ────────────────── */
.btn.btn-orange {
    background: #e07422;
    color: #fff;
    border: none;
}
.btn.btn-orange:hover {
    background: #c86218;
}
.btn.btn-outline {
    background: transparent;
    border: 1.5px solid #888;
    color: #333;
}
.btn.btn-outline:hover {
    border-color: #555;
    color: #111;
}
.btn.btn-white {
    background: #fff;
    color: #e07422;
    border: none;
    font-weight: 700;
}
.btn.btn-white:hover {
    background: #f5f5f5;
}

/* ══ BLOC 1 : RESSOURCES DU VOYAGE ═════════════ */
.res-card {
    border: 1.5px dashed #e08a3a;
    border-radius: 12px;
    padding: 1.6rem 1.6rem 1.4rem;
    background: #fff;
}
.res-grid {
    display: grid;
    grid-template-columns: 1fr 220px;
    gap: 1.5rem;
    align-items: start;
}
.res-left h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: .35rem;
    color: #1a1a1a;
}
.res-left > p {
    font-size: .88rem;
    color: #555;
    line-height: 1.55;
    margin-bottom: .9rem;
}
.res-btns {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
    margin-bottom: .9rem;
}
.res-btns .btn {
    font-size: .82rem;
    padding: .55rem 1.1rem;
    border-radius: 6px;
    font-weight: 600;
}
.res-note {
    font-size: .78rem;
    color: #888;
    font-style: italic;
    line-height: 1.45;
}

/* QR box */
.qr-box {
    border: 1.5px dashed #e08a3a;
    border-radius: 10px;
    padding: 1rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.qr-box h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: .88rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: .6rem;
}
.qr-img {
    width: 140px;
    height: 140px;
    border-radius: 6px;
    margin-bottom: .5rem;
}
.qr-caption {
    font-size: .72rem;
    color: #888;
}

/* Responsive */
@media (max-width: 700px) {
    .res-grid {
        grid-template-columns: 1fr;
    }
    .qr-box {
        max-width: 240px;
        margin: 0 auto;
    }
}

/* ══ BLOC 2 : IMMERSION DU VOYAGE ══════════════ */
.imm-card {
    border: 1.5px solid #e5e5e0;
    border-radius: 12px;
    padding: 1.8rem 1.8rem 1.5rem;
    background: #fff;
    position: relative;
    overflow: hidden;
}
.imm-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 5px;
    background: #e07422;
    border-radius: 12px 0 0 12px;
}
.imm-card h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: .25rem;
}
.imm-subtitle {
    font-size: .88rem;
    color: #e07422;
    font-weight: 600;
    font-style: italic;
    margin-bottom: .9rem;
}
.imm-text {
    font-size: .92rem;
    color: #444;
    line-height: 1.75;
}
.imm-text p {
    margin-bottom: .7rem;
}
.imm-text p:last-child {
    margin-bottom: 0;
}

/* ══ BLOC 3 : JOURNAL DE BORD DU VOYAGEUR ══════ */
.jnl-card {
    border: 1.5px solid #e5e5e0;
    border-radius: 12px;
    padding: 1.8rem;
    background: #fff;
}
.jnl-card > h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: .4rem;
}
.jnl-intro {
    font-size: .88rem;
    color: #555;
    line-height: 1.55;
    margin-bottom: 1.3rem;
}

/* Grille des 3 vignettes shorts */
.jnl-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin-bottom: 1.4rem;
}
.jnl-item {
    display: flex;
    flex-direction: column;
}
.jnl-thumb {
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: .5rem;
    position: relative;
    background: #f0efe8;
}
.jnl-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.jnl-thumb::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,.22), transparent 45%);
    border-radius: 8px;
    pointer-events: none;
}
.jnl-entry-label {
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: #e07422;
    margin-bottom: .15rem;
}
.jnl-item h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: .9rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: .5rem;
}
.jnl-item .btn {
    align-self: flex-start;
    font-size: .78rem;
    padding: .45rem 1rem;
    border-radius: 5px;
}

/* Bandeau CTA orange */
.jnl-cta {
    background: #e07422;
    border-radius: 10px;
    padding: 1.2rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}
.jnl-cta-text h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: .2rem;
}
.jnl-cta-text p {
    font-size: .82rem;
    color: rgba(255,255,255,.88);
    line-height: 1.45;
    max-width: 500px;
}
.jnl-cta .btn.btn-white {
    white-space: nowrap;
    flex-shrink: 0;
}

@media (max-width: 700px) {
    .jnl-grid {
        grid-template-columns: 1fr;
        gap: .8rem;
    }
    .jnl-cta {
        flex-direction: column;
        text-align: center;
    }
    .jnl-cta-text p {
        max-width: none;
    }
}
