/* Partie principale de la page arabe */
.main_langueA {
    flex: 2;
    padding: 25px;
    background-color: #fcfcfc;
    font-family: 'Verdana', sans-serif;
    color: #222;
    background-image: url(../../images/desert.jpg);
}

/* Titres */
#titreH2 {
    text-align: center;
    color: #06c556;
    font-size: 2rem;
    margin-bottom: 30px;
    border-bottom: 2px solid #ccc;
    padding-bottom: 10px;
}

.main_langueA h3 {
    color: #007799;
    font-size: 1.4rem;
    margin-top: 30px;
    margin-bottom: 10px;
}

/* Paragraphes */
p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 12px;
    text-align: justify;
}

/* Encadré des articles */
.div {
    background-color: #ffffff;
    padding: 20px;
    margin-bottom: 40px;
    border-left: 4px solid #007799;
    border-radius: 8px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.05);
}

/* Image du Coran */
.imageQuranAncien {
    display: block;
    margin: 20px auto;
    width: 90%;
    max-width: 500px;
    border-radius: 8px;
    border: 1px solid #ccc;
}

.legendeQuranAncien {
    font-size: 0.85rem;
    text-align: center;
    color: #666;
    margin-top: 5px;
}

/* Section img + texte */
.img-text {
    display: flex;
    gap: 15px;
    margin: 15px 0;
    background-color: #f7f9fa;
    border-radius: 10px;
    padding: 10px;
    flex-wrap: wrap;
}

.imgShort {
    flex: 0 0 auto;
    max-width: 200px;
}

.imgInImg-text {
    width: 100%;
    height: auto;
    border-radius: 6px;
    border: 1px solid #ddd;
}

.textShort {
    flex: 1;
    display: flex;
    align-items: center;
    font-size: 0.95rem;
    color: #333;
}

/* === BURGER MENU === */
#burger {
    display: none;
    background: none;
    border: none;
    font-size: 2.5rem;
    color: white;
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 1000;
    cursor: pointer;
}

  
 /* === RESPONSIVE DESIGN === */
@media screen and (max-width: 900px) {
    .flexLine {
        flex-direction: column;
    }

    .leftSide {
        position: fixed;
        top: 0;
        left: -100%;
        width: 75%;
        height: 100%;
        background-color: rgb(3, 1, 32);
        flex-direction: column;
        align-items: center;
        padding-top: 80px;
        transition: left 0.3s ease-in-out;
        z-index: 999;
    }

    .leftSide.active {
        left: 0;
    }

    #burger {
        display: block;
    }

    .rightSide {
        display: none;
    }

    .main_accueil {
        padding: 15px;
    }

    #titreH2 {
        font-size: 2.5rem;
    }
}