body {
    font-family: Arial, Helvetica, sans-serif;
    background-color: #f8f9fa;
    line-height: 1.6;
    margin: 0;
}

/* en-tete */

.en_tete {
    position: fixed;
    display: flex;
    align-items: center;
    top: 0;
    left: 0;
    width: 100%;
    align-items: center;
    background-color: #222;
    padding: 10px;
    box-sizing: border-box;
    z-index: 2000;
}

.logo {
    height: 60px;
}

.menu {
    display: flex;
    align-items: center;
    list-style: none;
    margin: auto;
    padding: 0;
    gap: 15px;
}

.menu li {
    position: relative;
}

.menu a {
    text-decoration: none;
    background-color: #444;
    color: white;
    padding: 10px 15px;
    border-radius: 5px;
    display: inline-block;
    transition: background-color 0.3s;
}

.menu a:hover {
    background-color: #666;
}

.submenu {
    display: none;
    position: absolute;
    top: 40px;
    left: 0;
    background-color: #555;
    list-style: none;
    padding: 5px 0;
    margin: 0;
    border-radius: 5px;
    min-width: 160px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    z-index: 1000;
}

.submenu li a {
    padding: 8px 12px;
    display: block;
    color: white;
}

.submenu li a:hover {
    background-color: #777;
}

.dropdown:hover .submenu {
    display: block;
}

.bouton_contact a {
    background-color: #d9534f;
    color: white;
    padding: 10px 15px;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.bouton_contact a:hover {
    background-color: #c9302c;
}

/* accueil */

.image_club {
    position: relative;
    width: 100%;
    height: 100%; 
    margin-top: 80px;
    overflow: hidden;
}

.image_club img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center bottom;
    filter: blur(1px);
}

.image_club::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(66, 64, 64, 0.5); 
}
.image_club .texte_image {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.7);
    width: 80%;
    z-index: 1000;
}

.image_club .texte_image h1 {
    font-size: 5rem;
    margin-bottom: 10px;
}

.image_club .texte_image h3 {
    font-size: 1.5rem;
    font-weight: 400;
}

.image_club .bandeau {
    position: absolute;
    bottom: 0px; 
    left: 0px; 
    width: 100%;
    height: 100%;
    max-width: 800px;

}

.image_club .loc {
    position: absolute;
    bottom: 10px;
    right: 5px;
    display: flex;
    align-items: center;
    background: rgba(255,255,255,0.8);
    padding: 10px;
    border-radius: 8px;
}

.image_club .loc .logo_map {
    position: absolute;
    bottom: 7px; 
    right: 100px; 
    width:auto;
    height: 70px;

}

.image_club .loc .lieux {
    color: #000;
    font-size: 0.7rem;
    margin: 0;
    width: 80px;
}

/* entrainements*/

.entrainement_texte{
    text-align: center;
    font-size: 3rem;
    margin-bottom: 50px;
}
.entrainement{
    display : flex;
    justify-content : space-around;
    width: 100%;
    margin: 0;
}

.mardi, .jeudi{
    display : flex ;
    flex-direction : column;
    align-items: center;
    width: 30%;
}

.mardi h2, .jeudi h2{
    color: #555;
}

.mardi .img_entrainement, .jeudi .img_entrainement{
    width: 120%;
    border-radius : 10px;
}

.icones li {
    display: flex;
    align-items: center;   
    gap: 8px;
    margin-bottom: 10px;
}

.icones img {
    width: 15px;
    height: 15px;
    display: block;
    margin-right: 10px;
}

.icones a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: black;
}

.ultimate-section {
    background-color: #005803;
    color: white;
    padding: 40px;
    margin: 0px;
    text-align: center;
}

.ultimate_texte {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 25px;
}

.ultimate {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.ultimate::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background-color: white;
    transform: translateX(-50%);
}

.sport, .club {
    width: 45%;
    padding: 10px 20px;
    text-align: left;
}

.sport h3, .club h3 {
    font-size: 1.4rem;
    margin-top: 0;      
    margin-bottom: 15px;
    text-align: center; 
}

.ultimate ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ultimate li {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    font-size: 1.1rem;
    text-align: left;
}

.ultimate li img {
    width: 25px;
    height: auto;
    margin-right: 10px;
}

/* tournoi*/

.tournoi {
    position: relative;
    width: 100%;
    height: 100%; 
    overflow: hidden;
    margin-top: 10px;
}

.tournoi img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center bottom;
    filter: blur(1px);
}

.tournoi .texte_tournoi {
    position: absolute;
    top: 10%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.7);
    width: 80%;
    z-index: 1000;
}

.tournoi .texte_tournoi h1 {
    font-size: 5rem;
    margin-bottom: 10px;
}

.tournoi .texte_tournoi h3 {
    font-size: 1.5rem;
    font-weight: 400;
}

.lien_tournoi {
    font-size: 1rem;
    margin-top: 50px;
    color: #f8f8f8;
}

.lien_tournoi a {
    color: #ffd700;
    font-weight: bold;
    text-decoration: underline;
}
