/* Styles généraux */
body {
    font-family: 'Arial', sans-serif;
    background-color:rgb(246, 246, 234);
    color: #333;
    margin: 0;
    padding: 0;
}


/* Conteneur principal */
.container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 5px;
    padding-bottom: 0 ;
    margin-bottom: 0;
}

/* Section principale */
.content {
    width: 70%;
    padding: 20px;
    background: white;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    border-radius: 8px;
}
.content{
    overflow-y: scroll;
    height: 500px;
}
/* Titres */
h2 {
    color: #023d65;
    text-align: center;
    font-size: 24px;
    margin-bottom: 15px;
}
.textar1{
    color: #D35400;
    text-align: center;
    font-size: 24px;
    margin-bottom: 15px;

}

/* Texte en arabe */
.textar {
    color: #D35400;
    text-align:justify;
    direction: rtl;
    width: 120%;
}
.Bienvenue{
    text-align: center;
    color: maroon;
    font-size: 30px;
    font-weight: bold;
}

/* Sections spécifiques */
.Soutientadapté, .Enseignementadapté, .Boosterreussite, .accésillimités {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}
nav{
    width: 100%;
    height: 50px;
    background: rgb(125, 13, 13);
    position: sticky;
    margin-bottom: -5px;
}

.liste-items {
    display: flex;
    justify-content: left;
    color: #f1f1f1;
    list-style-type: none;
    padding: 10px;
    /* line-height: 50px; */
    font-size: 18px;
}
.items {
    cursor: pointer;
    /* margin: 0 20px; */
    flex-shrink: 0;
    padding: 0 20px 0 0px;
    margin: 0 30px; 
}
.sous-liste{
    position: relative;
    top: 10px;
}

.arrow {
    font-size: small;
}

.dropdown {
    position: relative;
    display: inline-block;
  }

.dropdown-content {
    display: none;
    position: absolute;
    z-index: 1;
}

.dropdown-content a {
    background:maroon;
    color: #f1f1f1;
    padding: 0 20px 0 20px;
    text-decoration: none;
    position: relative;
    top: 15px;
    display: block;
    /* text-wrap: wrap; */
}

.dropdown-content a:hover {
    background-color:rgb(246, 117, 117);
}
.items a{
    color: #f1f1f1;
    text-decoration: none;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.items-sous-liste {
    list-style-type: none;
    text-align: center;
    padding: 0 10px;
    background: rgb(246, 117, 117);
    border-bottom: 0.5px solid rgb(167, 167, 167);
}
.items-sous-liste:hover{
    background: rgb(246, 117, 117);
}

.items:hover>ul{
    display: block;
}
/* Images */
img {
    width: 250px;
    height: auto;
    border-radius: 10px;
    transition: transform 0.3s ease-in-out;
}

/* Effet hover sur images */
img:hover {
    transform: scale(1.05);
    opacity: 0.9;
}
.Logo{
    float: left;
    width: 155px;
    height: auto;
    margin-left: 40px;
    margin-top: 0;
   padding-bottom: 20px;
}
p{
    font-size: 20px;
    text-align: justify;
    margin-left: 10px;
    margin-right: 5px;
    line-height: 1.5em;
    margin-bottom: 15px;
    padding:20px;
}
footer p{
    margin-bottom: 0;
}
/* Sidebar */
.sidebar {
    width: 25%;
    background-color: rgb(246, 246, 234);
    border-left: 4px solid maroon;
    font-size: 18px;
    text-align: center;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
}

/* Footer */
footer {
    text-align: center;
    padding: 0;
    margin-bottom:0;
    background:maroon;
    color: white;
    font-size: 16px;
}

/* Responsiveness */
@media (max-width: 768px) {
    .content {
        width: 90%;
    }
    .sidebar {
        width: 100%;
        margin-top: 20px;
    }
    .Soutientadapté, .Enseignementadapté, .Boosterreussite, .accésillimités {
        flex-direction: column;
        text-align: center;
    }
}
