@font-face {
    font-family: 'Segoe UI';
    src: local('Segoe UI Regular'), local('Segoe-UI-Regular'),
    url('../fonts/SegoeUI.woff2') format('woff2'),
    url('../fonts/SegoeUI.woff') format('woff'),
    url('../fonts/SegoeUI.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

body{
    font-family: 'Segoe UI', sans-serif;
}
/* Centrer la barre de navigation */
nav {
    display: flex;
    justify-content: center;
}

/* Changement de couleur au survol */
.navbar-nav .nav-link:hover {
    background-color: orange;

}

.nav-link {
    display: inline-block;
    padding: 10px 15px; /* Ajustez le rembourrage selon vos besoins */
    border-radius: 10px; /* Ajustez le rayon du coin selon vos besoins */
    text-decoration: none; /* Pour supprimer le soulignement du lien par défaut */
}

.nav-link:hover{
    animation: jello 0.5s ease-in-out;
    transform-origin: center;
}

@keyframes jello {
    0% {
        transform: scale3d(1, 1, 1);
    }
    30% {
        transform: scale3d(1.25, 0.75, 1);
    }
    40% {
        transform: scale3d(0.75, 1.25, 1);
    }
    50% {
        transform: scale3d(1.15, 0.85, 1);
    }
    65% {
        transform: scale3d(0.95, 1.05, 1);
    }
    75% {
        transform: scale3d(1.05, 0.95, 1);
    }
    100% {
        transform: scale3d(1, 1, 1);
    }
}


.navbar-nav .nav-link {
    margin-right: 15px;
    font-weight: bold;
    font-size: 23px;
}

#icone{
font-size:17px;
padding-left:45px;
display:inline;}

h1{
    color: black;
    font-size: 26px;
}


.black-text {
    color: black;
}


.orange-text {
    color: orange;
}

.white-text{
    color: white;
}

.Join h1 {
    text-align:center;
    font-weight:bold;
    text-transform:uppercase;
    font-size:13px;

    display: grid;
    grid-template-columns: 1fr auto 1fr;
    grid-template-rows: 16px 0;
    grid-gap: 22px;
}

.Join h1:after,.Join h1:before {
    content: " ";
    display: block;
    border-bottom: 8px solid black;
    background-color:white;
}

.socials {
    text-decoration: none;
    font-family: 'Segoe UI', sans-serif;
    color: black;
    font-style: italic;
}

.hidded {
    display: none;
}

.gallery{
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2vmin;
    padding: 0 14px;
}

.gallery li {
    list-style-type: none;
    height: 250px;
    flex-grow: 1;
}

.gallery img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.year-section {
    margin-bottom: 30px;
}

ul {
    list-style: none;
    padding: 0;
}

li {
    margin-bottom: 8px;
}

p {
    font-style: italic;
}