body {
    margin: 0px;
    background-color: #ffff;
    font-family: 'Quicksand', sans-serif;
    font-weight: 500;
    letter-spacing: 0.05em;
    line-height: 150%;
    font-size: 17px;
    text-align: center;
    background: url('/images/texture.jpg');
}


/* Charte graphique 
#ffff (blanc) 
#d2b48c (marron clair)
#954C24 (marron moyen)
#603813 (marron foncé)
#333333 (noir)
*/



h1 {
    color: #954C24;
    text-align: center;
    overflow: hidden;
    padding-bottom: 50px;
    padding-top: 50px;
    font-family: 'Anton', sans-serif
}

h1 span {
    display: flex;
    flex-direction: column;
    text-transform: uppercase;
}

h1 span:after {
    content: '';
    display: inline-block;
    justify-content: center;
    margin: auto;
    width: 100px;
    border-bottom: solid 3px;
    color: #954C24;
    vertical-align: -0.4em;
    /* permet de descendre la barre par rapport au texte */
    padding-top: 15px;
}

h2, h3, h4, h5 {
    color: #954C24;
    font-family: 'Anton', sans-serif;
    text-align: justify;
}

h2 {
    font-size: 30px;
    padding-top: 20px;
}

h3 {
    font-weight: lighter;
    font-size: 15px;
}

h4, h5 {
    font-family: 'Raleway', sans-serif;
    font-weight: bold;
}

h4 {
    font-size: 25px;
    padding-top: 20px;
    padding-bottom: 5px;
}

h5 {
    font-size: 20px;
    padding-top: 20px;
    padding-bottom: 10px;
    text-align: center;
}

hr {
    margin-bottom: 40px;
    border-top: 1px solid #603813;
}


/* Le corps de la page */

#corps {
    flex: 1;
    max-width: 1000px;
    z-index: 0;
    padding: 10px;
    color: #333333 ;
    /* background-color: #cbc9a5; */
    margin: auto;
}

#corps p {
    padding: 15px;
    color: #333333 ;
    text-align: justify;
}


#corps ul {
    list-style: none;
    /* enlever les puces devant chaque élément */

}

#corps li {
    text-align: left
}

#corps a {
    color: #d2b48c;
    /* changer la couleur des liens */
    text-decoration: none;
    /* enlever la soulignement des liens */
}

#corps a:hover {
    color: #954C24;
    font-weight: bold;
    text-decoration: none;
    /* enlever la soulignement des liens */
}








figure {
    display: inline-block;
    margin: 20px; /* Ajoutez une marge si nécessaire */
    text-align: center; /* Centre le texte de la légende */
    /* border: 1px solid black; */
}

figcaption {
    margin-top: 8px;
    font-style: italic; /* Style italique pour la légende */
    font-size: 0.9em; /* Ajustez la taille du texte si nécessaire */
}









/* Mettre des colonnes côtes à côtes ------------------------------------------------------------------- */
/* Pour EVENEMENTS et A PROPOS */

.column-container {
    display: flex;
    justify-content: center;
    text-align: center;
    flex-wrap: wrap;
    padding-bottom: 30px;
    /* border: 1px solid blue; */
}

.column {
    flex: 1;
    padding-left: 30px;
    padding-right: 30px;
    max-width: var(--width);
    font-weight: var(--font-weight);
    /* border: 1px solid red; */
}


.column P {

    padding-left: 50px;
}

.column h1 {

    color: inherit;
    text-align: left;
    padding-top: 0px;
}


.column img {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    object-fit: cover;
}

@media(max-width:734px) {


    .column-container {
        display: flex;
        justify-content: center;
        text-align: center;
        flex-wrap: wrap;
        align-items: center;
        max-width: 500px;
        margin: auto;
    }

    .column-container .column {

        padding-left: 0px;
        padding-right: 0px;
        padding-top: 15px;
        max-width: 100%;
        min-width: 300px;
    }

    .column-container .column P {

        padding-left: 0px;
    }

    .column-container .column img {
        max-width: 100%;

    }



}
/* FIN DE : Adaptation au téléphone des différents éléments --------------------------------------------------------------------------*/

/* Mettre des colonnes côtes à côtes ------------------------------------------------------------------- */




/* Mettre l'image en grand -------------------------------------------------------------------------------- */

.ImagePlus {
    cursor: pointer;
}


#largeImagePopup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    text-align: center;
    z-index: 1000;
}

#popupImage {
    max-width: 90%;
    max-height: 90%;
    margin-top: 5%;
}

/*FIN DE : Mettre l'image en grand -------------------------------------------------------------------------------- */

/* mettre un texte clignotant -------------------------------------------------------------------------------- */

#blinkk {
        animation: blinker 0.6s linear infinite;
        color: #1c87c9;
       }
      @keyframes blinker {  
        50% { opacity: 0; }
       }

/*FIN DE : Mettre un texte clignotant -------------------------------------------------------------------------------- */
