body {
    font-family: Rowdies ;
    background-color :black; 
    color: azure;
    background-image: url(img/basketball_large\ \(1\).png);
    background-size: cover;
    
}
main {
    display: flex;
    justify-content: center;
    align-items: center;
}

#moi{
    justify-content: center;
    align-items: center;
    display: flex;
    flex-direction: column;
    vertical-align: top;
    margin:  0  20px 20px 20px;
    padding: 0 10px 10px 10px;

}

img {
    
    height: auto;
}
h3 {
    font-size: 30px;
}

h4 {
    font-size: 30px;
}

h5 {
    font-size: 30px;
}

p {
    font-size: 20px;
}

ul li{
    font-size: 20px;
    list-style-type: none;
}

.propre{
    display: 	flex;
}
.propre img{
    width: 400px;
    height: 425px;
}
.QUALITÉS{
    margin: 15px;
}

.logo {
    height: 20%;
    width: 35%;
    padding-right: 50%;
    margin-bottom: -70px;
    
}
*{
    
    box-sizing: border-box;
}


header {
    background-color:black; /* Vert */
    padding: 10px 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Ombre légère */
}


/* Style pour la navigation */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}


#logo img {
    width: 150px; /* Taille réduite pour mieux s'intégrer */
    height: auto; /* Garde le ratio */
}


nav ul {
    list-style: none;
    display: flex;
    align-items: center;
}


nav ul li {
    margin: 0 10px;
    position: relative;
}


nav ul li a {
    text-decoration: none;
    color: white;
    font-size: 16px;
    padding: 8px 12px;
    display: block;
    transition: background-color 0.3s ease; /* Animation douce */
}


nav ul li a:hover {
    background-color: rgb(59, 137, 147); /* Vert plus foncé au survol */
    border-radius: 5px;
}


/* Style pour les sous-menus */
nav ul li ul.sous {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: rgb(59, 137, 147);
    list-style: none;
    padding: 0;
    margin: 0;
    border-radius: 0 0 5px 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}


nav ul li ul.sous li {
    width: 100%;
}


nav ul li ul.sous li a {
    padding: 10px;
    display: block;
}


nav ul li:hover ul.sous {
    display: block;
}


/* Style pour le bouton de don */
button {
    background-color: rgb(59, 137, 147); /* Orange */
    border: none;
    padding: 10px 20px;
    color: white;
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s ease; /* Animation douce */
}


button:hover {
    background-color: #e64a19; /* Orange plus foncé au survol */
}


/* Style pour les liens dans le bouton */
button a {
    color: white;
    text-decoration: none;
}


#main-banner{
    background-color: rgb(59, 137, 147);
    padding: 66px 0;
    text-align: center;
    color: black;
    font-size: 23px;
    position: relative;
}

/* Style pour la section des réseaux sociaux */
.section_social_links {
    background-color: black; /* Gris clair */
    padding: 20px 0;
    text-align: center;
}


.section_social_links h2 {
    font-size: 24px;
    color: white;
    margin-bottom: 80px;
}


.section_social_links ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 20px; /* Espace entre les icônes */
    padding: 20px;
    margin-top: -80px;
}


.section_social_links ul li a {
    text-decoration: none;
    color: rgb(255, 255, 255); /* Vert */
    font-size: 24px;
    transition: color 0.3s ease; /* Animation douce */
}


.section_social_links ul li a:hover {
    color: #ff5722; /* Orange au survol */
}


/* Style pour le pied de page */
footer {
    background-color: black ;
    color: white;
    padding: 20px;
    text-align: center;
}


footer p {
    font-size: 18px;
    margin-bottom: 15px;
}


footer input[type="search"] {
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 5px;
    width: 80%;
    max-width: 400px;
    margin-bottom: 20px;
}


footer ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}


footer ul li a {
    text-decoration: none;
    color: white;
    font-size: 16px;
    transition: color 0.3s ease; /* Animation douce */
}


footer ul li a:hover {
    color: #ff5722; /* Orange au survol */
}


footer ul.second_level {
    display: none; /* Masquer les sous-menus par défaut */
}


footer ul li:hover ul.second_level {
    display: block; /* Afficher les sous-menus au survol */
}

