html{
    --font-celtic:'Celtic', Arial, sans-serif;
    --font-arial:'Arial Rounded', Arial, sans-serif;

}

@font-face {
    font-family: 'Celtic';
    src: url('../fonts/CELTG___.TTF') format('truetype');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Arial Rounded';
    src: url('../fonts/arlrdbd.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

body{
    background-color: black;
}

.titre_h1{
    font-weight: bold;
    background: linear-gradient(45deg, #bf9535, #996533, #bf9535);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

}

.h3_reseau{
    font-weight: bold;
    color: #996533;
    font-family: var(--font-arial);
    font-size: 1.4rem;
    padding: 1rem;
}

.wrap{
    display: flex;
}

.coordonnee_map{
    width: 50%;
}

.partie_logo_img{
    width: 100%;
}

li{
    color: #996533;
}

a{
    text-decoration: none;
    color: #bf9535;
}

@media screen and (max-width: 990px){

    .wrap {
        display: flex;
        flex-wrap: wrap;
    }

    .coordonnee_map{
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        
    }
    
    .coordonnee{
        display: flex;
        justify-content: center;
        margin-left: 0;
    }
}

/* Media Queries pour les tablettes */
@media screen and (max-width: 1024px) {
    .titre_h1 {
        font-size: 2.2rem;
        margin: 1.5rem 0;
    }
    
    .wrap {
        padding: 0 1.5rem;
    }
    
}

/* Media Queries pour les mobiles */
@media screen and (max-width: 768px) {
    .titre_h1 {
        font-size: 1.8rem;
        margin: 1.2rem 0;
    }
    
    .wrap {
        flex-direction: column;
        padding: 0 1rem;
    }
    
    .partie_logo {
        margin-bottom: 2rem;
        width: 70%;
    }
    

}

/* Media Queries pour les petits mobiles */
@media screen and (max-width: 480px) {
    .titre_h1 {
        font-size: 1.5rem;
        margin: 1rem 0;
    }
    
    .partie_logo {
        width: 90%;
    }
   
}

/* Media Queries pour très petits écrans */
@media screen and (max-width: 360px) {
    .titre_h1 {
        font-size: 1.3rem;
    }
    
    .partie_logo {
        width: 95%;
    }
}
