/* ===== SECTION INTRO ===== */
.intro-section {
    width: 100%;
    max-width: 1100px;
    margin: 40px auto;
    text-align: center;
}

/* ===== TITRE + ICONES ===== */
.title-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px; /* espace entre icônes et titre */
    margin-bottom: 20px;
}

.title-icon {
    width: 90px;      /* ajustable selon ton AVIF */
    height: auto;
}

/* ===== TITRE PRINCIPAL ===== */
.main-title {
    font-size: 48px;
    font-weight: bold;
    color: #1a3a78; /* bleu foncé comme dans ton image */
    margin: 0;
}

/* ===== TEXTE BLEU SOUS TITRE ===== */
.subtitle {
    font-size: 38px;
    color: #1a3a78;
    font-weight: bold;
    line-height: 1.5;
    margin: 20px auto 40px auto;
}

/* ===== PHOTOS CÔTE À CÔTE ===== */
.photo-row {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 20px;
}

.photo-duo {
    width: 48%;       /* deux photos côte à côte */
    border-radius: 10px;
    object-fit: cover;
}
/* ==== LETTRE FOND ===== */
.lettre-section {
    background: url("fond-lettre.avif") center/cover no-repeat;
    padding: 40px 20px;
    border-radius: 12px;
}
