/* font style & font size general*/
body {
    margin: 0;
}

h1, h2, h3, h4 {
    font-weight: bold;
}

html, button {
  font-family: 'industry', sans-serif;
}

p {
    font-size: 18px;
    line-height: 1.5;
}

a {
    font-size: 16px;
    line-height: 1.5;
    text-decoration: none;
    color:rgb(0, 0, 0);
}

li {
    text-decoration: none;
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}


/* footer */

.site-footer {
    background-color: #fff;
    padding: 40px 20px;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a img {
    width: 32px; /* Ajuste la taille des icônes */
    height: 32px;
}

/* Style du menu */
.footer-info {
    text-align: start;
}

/* Ajuste les styles du menu WordPress */
.footer-info ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-info ul li {
    margin-bottom: 5px;
}

.footer-info ul li a {
    text-decoration: none;
    color: #000;
    font-size: 16px;
}

.footer-partners {
    text-align: start;
}

.title-footer {
    color: #6d2b56;
    font-size: 16px;
    text-transform: uppercase;
    font-weight: extra-bold;
    margin-bottom: 10px;
}

.partners-logos {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.partners-logos img {
    max-width: 180px;
}

/* Responsive */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        gap: 20px;
        align-items: start;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-info,
    .footer-partners {
        text-align: start;
    }

    .partners-logos {
        flex-direction: column;
    }
}





/*---------------------------------------HEADER------------------------------------------------------------
  /* Styles pour le menu hover */
.menu-item-sports {
    position: relative;
  }
  
  /* Cache le sous-menu par défaut */
  .menu-item-sports .sub-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 200px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    z-index: 1000;
    border-radius: 4px;
    padding: 8px 0;
    text-decoration: none;
  }
  
  /* Affiche le sous-menu au survol */
  .menu-item-sports:hover .sub-menu {
    display: block;
    text-decoration: none;
  }
  
  /* Style des éléments du sous-menu */
  .menu-item-sports .sub-menu li {
    padding: 8px 15px;
    transition: background-color 0.2s ease;
    text-decoration: none;
  }
  
  .menu-item-sports .sub-menu li:hover {
    background-color: #f5f5f5;
    text-decoration: none;
  }
  
  .menu-item-sports .sub-menu li a {
    color: #333;
    text-decoration: none;
    display: block;
    font-size: 14px;
  }
  
  /* Style pour désactiver le clic sur Sports */
  .menu-item-sports > a {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
  
  /* Animation douce pour l'apparition du sous-menu */
  .menu-item-sports .sub-menu {
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    text-decoration: none;
  }
  
  .menu-item-sports:hover .sub-menu {
    opacity: 1;
    transform: translateY(0);
    text-decoration: none;
  }






