@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@300&display=swap');




*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Oswald', sans-serif;
    font-size: 20px;
}
body{
    min-height: 100vh;
    background: black;
}
header{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 100px;
    background: transparent;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    

}
li a{
    text-decoration: none;
    color: white;
}
li{
    display: inline;
    padding-right: 15px;
    
}
nav a{
    position: relative;
}
nav a::before{
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width : 0%;
    height: 2px;
    background: #fff;
    transition: .3s;
}
nav a:hover::before{
    width: 100%;
}
.banner{
    position: relative;
    width: 100%; 
    
}
.div-banner{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    align-content: center;
}
.img-oussaid{
    width: 70%;
    position: absolute;

}
.menu{
    color: white;
    display: none;
}
@media screen and (max-width: 742px){
    .navbar{
        position: absolute;
        backdrop-filter: blur(20px);
        width: 100%;
        height: 100vh;
        top: 0;
        left: 0;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-left: -100%;
        transition: all 0.5s ease;

    }
    nav{
        padding: 0;
    }
    .navbar ul{
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    header{
        padding-left: 20px;
        padding-right: 20px;
    }
    .menu{
        display: block;
        position: absolute;
        top: 25px;
        right: 10px;
    }
    .navbar ul li{
        margin: 25px 0px;
    }
    .navbar.mobile-menu{
        margin-left: 0;
    }
    
    
    
}
.footer {
    background-color: #000; /* Fond noir */
    color: #FFF; /* Texte blanc */
    padding: 40px 0;
    text-align: center;
    width: 100%;
    box-shadow: 0 -4px 6px rgba(0, 0, 0, 0.2);
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px; /* Espace plus grand entre les sections */
}

.footer-section {
    width: 80%;
    max-width: 350px;
    margin: 0 auto;
}

.footer-section h2 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #FFF; /* Texte blanc pour les titres */

    text-align: center; /* Centrer les titres */
}

.footer-section p,
.footer-section a {
    color: #FFF; /* Texte blanc */
    font-size: 1rem;
    text-decoration: none;
    margin-bottom: 10px; /* Espacement entre les paragraphes */
    display: block;
}

.footer-section ul {
    list-style-type: none; /* Supprime les puces */
    padding: 0;
    margin: 0;
}

.footer-section ul li {
    margin: 10px 0; /* Espacement entre les items de la liste */
    text-align: center; /* Centrer les éléments de la liste */
}

.footer-section ul li a {
    display: inline-block; /* Permet de traiter les liens comme des éléments en ligne */
    color: #FFF; /* Couleur blanche */
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #FFD700; /* Change la couleur au survol (doré) */
}

.footer-section.social ul {
    display: flex;
    justify-content: center;
    gap: 20px; /* Espace entre les icônes */
    padding-top: 20px;
}

.footer-section.social ul li {
    list-style: none; /* Supprime les puces des icônes */
}

.footer-section.social ul li a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 30px; /* Taille des icônes Font Awesome */
    color: #FFF; /* Icônes blanches par défaut */
    transition: transform 0.3s ease, color 0.3s ease;
}

.footer-section.social ul li a:hover {
    color: #FFD700; /* Change la couleur des icônes au survol */
    transform: scale(1.2); /* Grossit l’icône au survol */
}

/* Footer bottom */
.footer-bottom {
    margin-top: 40px;
    font-size: 0.9rem;
    color: #FFF; /* Texte en blanc */
    opacity: 0.8;
}

/* Responsivité */
@media (min-width: 768px) {
    .footer-content {
        flex-direction: row;
        justify-content: space-around;
    }

    .footer-section {
        max-width: 350px; /* Largeur des sections du footer */
    }
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        align-items: center;
    }

    .footer-section {
        max-width: 100%; /* Largeur des sections en mode mobile */
    }
}
.gallery{
    margin-top: 5rem;
    color: white;
}
.gallery-title{
    text-align: center;
    font-size: 40px;
    margin-bottom: 30px;
}
.contact-page {
    margin-top: 5rem;
    padding: 20px 50px;
    color: white;
    text-align: center;
}

.contact-title {
    font-size: 40px;
    margin-bottom: 30px;
}

.contact-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.contact-form {
    flex: 1 1 300px;
    max-width: 500px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    background-color: #111; /* Fond sombre */
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.contact-form label {
    text-align: left;
    font-size: 18px;
    font-weight: bold;
    color: #FFD700; /* Doré */
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    background-color: #222; /* Fond sombre */
    color: white;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border: 1px solid #FFD700; /* Doré */
}

.contact-form .btn-submit {
    padding: 10px 15px;
    background-color: #FFD700;
    color: black;
    font-weight: bold;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.contact-form .btn-submit:hover {
    background-color: #FFC107;
}

.contact-info {
    flex: 1 1 300px;
    max-width: 400px;
    text-align: left;
}

.contact-info h2, .contact-info h3 {
    font-size: 24px;
    color: grey; /* Doré */
    margin-bottom: 15px;
}

.contact-info p {
    margin-bottom: 10px;
}

.social-links {
    display: flex;
    gap: 15px;
    padding-top: 15px;
}

.social-links li {
    list-style: none;
}

.social-links li a {
    font-size: 24px;
    color: white;
    transition: transform 0.3s ease, color 0.3s ease;
}

.social-links li a:hover {
    color: #FFD700;
    transform: scale(1.2);
}
.partners-page {
    margin-top: 5rem;
    padding: 20px 50px;
    color: white;
    text-align: center;
}

.partners-title {
    font-size: 40px;
    margin-bottom: 30px;
}

.partners-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 20px;
}

.partner-logo {
    width: 150px; /* Taille des logos */
    height: 150px;
    display: flex;
    justify-content: center;
    align-items: center;
    
    border-radius: 10px;
    overflow: hidden;
    filter: grayscale(100%); /* Applique un filtre gris */
    transition: filter 0.3s ease, transform 0.3s ease;
}

.partner-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.partner-logo:hover {
    filter: grayscale(0%); /* Supprime le filtre au survol */
    transform: scale(1.1); /* Agrandit légèrement au survol */
}

